5 * This translation unit implements miscellaneous thread functions.
7 * --------------------------------------------------------------------------
9 * Pthreads-win32 - POSIX Threads Library for Win32
10 * Copyright(C) 1998 John E. Bossom
11 * Copyright(C) 1999,2005 Pthreads-win32 contributors
13 * Contact Email: rpj@callisto.canberra.edu.au
15 * The current list of contributors is contained
16 * in the file CONTRIBUTORS included with the source
17 * code distribution. The list can also be seen at the
18 * following World Wide Web location:
19 * http://sources.redhat.com/pthreads-win32/contributors.html
21 * This library is free software; you can redistribute it and/or
22 * modify it under the terms of the GNU Lesser General Public
23 * License as published by the Free Software Foundation; either
24 * version 2 of the License, or (at your option) any later version.
26 * This library is distributed in the hope that it will be useful,
27 * but WITHOUT ANY WARRANTY; without even the implied warranty of
28 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
29 * Lesser General Public License for more details.
31 * You should have received a copy of the GNU Lesser General Public
32 * License along with this library in the file COPYING.LIB;
33 * if not, write to the Free Software Foundation, Inc.,
34 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
38 #include "implement.h"
42 ptw32_cancelable_wait (HANDLE waitHandle
, DWORD timeout
)
44 * -------------------------------------------------------------------
45 * This provides an extra hook into the pthread_cancel
46 * mechanism that will allow you to wait on a Windows handle and make it a
47 * cancellation point. This function blocks until the given WIN32 handle is
48 * signaled or pthread_cancel has been called. It is implemented using
49 * WaitForMultipleObjects on 'waitHandle' and a manually reset WIN32
50 * event used to implement pthread_cancel.
52 * Given this hook it would be possible to implement more of the cancellation
54 * -------------------------------------------------------------------
64 handles
[0] = waitHandle
;
66 self
= pthread_self();
67 sp
= (ptw32_thread_t
*) self
.p
;
72 * Get cancelEvent handle
74 if (sp
->cancelState
== PTHREAD_CANCEL_ENABLE
)
77 if ((handles
[1] = sp
->cancelEvent
) != NULL
)
88 status
= WaitForMultipleObjects (nHandles
, handles
, PTW32_FALSE
, timeout
);
90 switch (status
- WAIT_OBJECT_0
)
95 * In the event that both handles are signalled, the smallest index
96 * value (us) is returned. As it has been arranged, this ensures that
97 * we don't drop a signal that we should act on (i.e. semaphore,
98 * mutex, or condition variable etc).
105 * Got cancel request.
106 * In the event that both handles are signaled, the cancel will
107 * be ignored (see case 0 comment).
109 ResetEvent (handles
[1]);
113 ptw32_mcs_local_node_t stateLock
;
115 * Should handle POSIX and implicit POSIX threads..
116 * Make sure we haven't been async-canceled in the meantime.
118 ptw32_mcs_lock_acquire (&sp
->stateLock
, &stateLock
);
119 if (sp
->state
< PThreadStateCanceling
)
121 sp
->state
= PThreadStateCanceling
;
122 sp
->cancelState
= PTHREAD_CANCEL_DISABLE
;
123 ptw32_mcs_lock_release (&stateLock
);
124 ptw32_throw (PTW32_EPS_CANCEL
);
128 ptw32_mcs_lock_release (&stateLock
);
131 /* Should never get to here. */
136 if (status
== WAIT_TIMEOUT
)
149 } /* CancelableWait */
152 pthreadCancelableWait (HANDLE waitHandle
)
154 return (ptw32_cancelable_wait (waitHandle
, INFINITE
));
158 pthreadCancelableTimedWait (HANDLE waitHandle
, DWORD timeout
)
160 return (ptw32_cancelable_wait (waitHandle
, timeout
));