This is the mail archive of the cygwin-patches mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] Fix cancellation points list


pthread_rwlock_timedrdlock and pthread_rwlock_timedwrlock aren't
implemented yet.  Patch attached.


Yaakov

2011-12-30  Yaakov Selkowitz  <yselkowitz@...>

	* thread.cc: Mark pthread_rwlock_timedrdlock and
	pthread_rwlock_timedwrlock as not yet implemented in the list of
	cancellation points.

Index: thread.cc
===================================================================
RCS file: /cvs/src/src/winsup/cygwin/thread.cc,v
retrieving revision 1.250
diff -u -p -r1.250 thread.cc
--- thread.cc	22 Dec 2011 11:02:36 -0000	1.250
+++ thread.cc	30 Dec 2011 06:22:45 -0000
@@ -810,8 +810,8 @@ pthread::cancel ()
       psiginfo ()
       psignal ()
       pthread_rwlock_rdlock ()
-      pthread_rwlock_timedrdlock ()
-      pthread_rwlock_timedwrlock ()
+    o pthread_rwlock_timedrdlock ()
+    o pthread_rwlock_timedwrlock ()
       pthread_rwlock_wrlock ()
       putc ()
       putc_unlocked ()

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]