blob: 51ddc02f9af704e4a8340b44eb8037b914dc90a1 [file] [log] [blame]
Guido van Rossumb738d261999-04-08 13:57:06 +00001
2/* This code implemented by Mark Hammond (MHammond@skippinet.com.au) */
3
4#include <windows.h>
5#include <limits.h>
6#include <pydebug.h>
7
8long PyThread_get_thread_ident(void);
9
10/*
11 * Change all headers to pure ANSI as no one will use K&R style on an
12 * NT
13 */
14
15/*
16 * Initialization of the C package, should not be needed.
17 */
18static void PyThread__init_thread(void)
19{
20}
21
22/*
23 * Thread support.
24 */
Guido van Rossum3c288632001-10-16 21:13:49 +000025long PyThread_start_new_thread(void (*func)(void *), void *arg)
Guido van Rossumb738d261999-04-08 13:57:06 +000026{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000027 long rv;
28 int success = -1;
Guido van Rossumb738d261999-04-08 13:57:06 +000029
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000030 dprintf(("%ld: PyThread_start_new_thread called\n", PyThread_get_thread_ident()));
31 if (!initialized)
32 PyThread_init_thread();
Guido van Rossumb738d261999-04-08 13:57:06 +000033
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000034 rv = _beginthread(func, 0, arg); /* use default stack size */
Guido van Rossumb738d261999-04-08 13:57:06 +000035
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000036 if (rv != -1) {
37 success = 0;
38 dprintf(("%ld: PyThread_start_new_thread succeeded:\n", PyThread_get_thread_ident()));
39 }
40
41 return success;
Guido van Rossumb738d261999-04-08 13:57:06 +000042}
43
44/*
45 * Return the thread Id instead of an handle. The Id is said to uniquely identify the
46 * thread in the system
47 */
48long PyThread_get_thread_ident(void)
49{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000050 if (!initialized)
51 PyThread_init_thread();
52
53 return GetCurrentThreadId();
Guido van Rossumb738d261999-04-08 13:57:06 +000054}
55
Guido van Rossumb738d261999-04-08 13:57:06 +000056void PyThread_exit_thread(void)
57{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000058 dprintf(("%ld: PyThread_exit_thread called\n", PyThread_get_thread_ident()));
59 if (!initialized)
60 exit(0);
61 _endthread();
Guido van Rossumb738d261999-04-08 13:57:06 +000062}
63
Guido van Rossumb738d261999-04-08 13:57:06 +000064/*
65 * Lock support. It has to be implemented using Mutexes, as
66 * CE doesnt support semaphores. Therefore we use some hacks to
67 * simulate the non reentrant requirements of Python locks
68 */
69PyThread_type_lock PyThread_allocate_lock(void)
70{
71 HANDLE aLock;
72
73 dprintf(("PyThread_allocate_lock called\n"));
74 if (!initialized)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000075 PyThread_init_thread();
Guido van Rossumb738d261999-04-08 13:57:06 +000076
77 aLock = CreateEvent(NULL, /* Security attributes */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000078 0, /* Manual-Reset */
79 1, /* Is initially signalled */
80 NULL); /* Name of event */
Guido van Rossumb738d261999-04-08 13:57:06 +000081
Fred Drakea44d3532000-06-30 15:01:00 +000082 dprintf(("%ld: PyThread_allocate_lock() -> %p\n", PyThread_get_thread_ident(), aLock));
Guido van Rossumb738d261999-04-08 13:57:06 +000083
84 return (PyThread_type_lock) aLock;
85}
86
87void PyThread_free_lock(PyThread_type_lock aLock)
88{
Fred Drakea44d3532000-06-30 15:01:00 +000089 dprintf(("%ld: PyThread_free_lock(%p) called\n", PyThread_get_thread_ident(),aLock));
Guido van Rossumb738d261999-04-08 13:57:06 +000090
91 CloseHandle(aLock);
92}
93
94/*
95 * Return 1 on success if the lock was acquired
96 *
97 * and 0 if the lock was not acquired. This means a 0 is returned
98 * if the lock has already been acquired by this thread!
99 */
100int PyThread_acquire_lock(PyThread_type_lock aLock, int waitflag)
101{
102 int success = 1;
103 DWORD waitResult;
104
Fred Drakea44d3532000-06-30 15:01:00 +0000105 dprintf(("%ld: PyThread_acquire_lock(%p, %d) called\n", PyThread_get_thread_ident(),aLock, waitflag));
Guido van Rossumb738d261999-04-08 13:57:06 +0000106
107#ifndef DEBUG
Georg Brandl9a3240e2005-07-09 15:26:33 +0000108 waitResult = WaitForSingleObject(aLock, (waitflag ? INFINITE : 0));
Guido van Rossumb738d261999-04-08 13:57:06 +0000109#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000110 /* To aid in debugging, we regularly wake up. This allows us to
111 break into the debugger */
112 while (TRUE) {
113 waitResult = WaitForSingleObject(aLock, waitflag ? 3000 : 0);
114 if (waitflag==0 || (waitflag && waitResult == WAIT_OBJECT_0))
115 break;
116 }
Guido van Rossumb738d261999-04-08 13:57:06 +0000117#endif
118
119 if (waitResult != WAIT_OBJECT_0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000120 success = 0; /* We failed */
Guido van Rossumb738d261999-04-08 13:57:06 +0000121 }
122
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000123 dprintf(("%ld: PyThread_acquire_lock(%p, %d) -> %d\n", PyThread_get_thread_ident(),aLock, waitflag, success));
Guido van Rossumb738d261999-04-08 13:57:06 +0000124
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000125 return success;
Guido van Rossumb738d261999-04-08 13:57:06 +0000126}
127
128void PyThread_release_lock(PyThread_type_lock aLock)
129{
Fred Drakea44d3532000-06-30 15:01:00 +0000130 dprintf(("%ld: PyThread_release_lock(%p) called\n", PyThread_get_thread_ident(),aLock));
Guido van Rossumb738d261999-04-08 13:57:06 +0000131
132 if (!SetEvent(aLock))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000133 dprintf(("%ld: Could not PyThread_release_lock(%p) error: %l\n", PyThread_get_thread_ident(), aLock, GetLastError()));
Guido van Rossumb738d261999-04-08 13:57:06 +0000134}
135
136