1 /* Threading for AtheOS.
2 Based on thread_beos.h. */
4 #include <atheos/threads.h>
5 #include <atheos/semaphore.h>
6 #include <atheos/atomic.h>
10 /* Missing decl from threads.h */
11 extern int exit_thread(int);
14 /* Undefine FASTLOCK to play with simple semaphores. */
20 /* Use an atomic counter and a semaphore for maximum speed. */
21 typedef struct fastmutex
{
27 static int fastmutex_create(const char *name
, fastmutex_t
* mutex
);
28 static int fastmutex_destroy(fastmutex_t
* mutex
);
29 static int fastmutex_lock(fastmutex_t
* mutex
);
30 static int fastmutex_timedlock(fastmutex_t
* mutex
, bigtime_t timeout
);
31 static int fastmutex_unlock(fastmutex_t
* mutex
);
34 static int fastmutex_create(const char *name
, fastmutex_t
* mutex
)
37 mutex
->sem
= create_semaphore(name
, 0, 0);
38 return (mutex
->sem
< 0) ? -1 : 0;
42 static int fastmutex_destroy(fastmutex_t
* mutex
)
44 if (fastmutex_timedlock(mutex
, 0) == 0 || errno
== EWOULDBLOCK
) {
45 return delete_semaphore(mutex
->sem
);
51 static int fastmutex_lock(fastmutex_t
* mutex
)
53 atomic_t prev
= atomic_add(&mutex
->count
, 1);
55 return lock_semaphore(mutex
->sem
);
60 static int fastmutex_timedlock(fastmutex_t
* mutex
, bigtime_t timeout
)
62 atomic_t prev
= atomic_add(&mutex
->count
, 1);
64 return lock_semaphore_x(mutex
->sem
, 1, 0, timeout
);
69 static int fastmutex_unlock(fastmutex_t
* mutex
)
71 atomic_t prev
= atomic_add(&mutex
->count
, -1);
73 return unlock_semaphore(mutex
->sem
);
85 static void PyThread__init_thread(void)
97 static atomic_t thread_count
= 0;
99 long PyThread_start_new_thread(void (*func
) (void *), void *arg
)
101 status_t success
= -1;
103 char name
[OS_NAME_LENGTH
];
104 atomic_t this_thread
;
106 dprintf(("PyThread_start_new_thread called\n"));
108 this_thread
= atomic_add(&thread_count
, 1);
109 PyOS_snprintf(name
, sizeof(name
), "python thread (%d)", this_thread
);
111 tid
= spawn_thread(name
, func
, NORMAL_PRIORITY
, 0, arg
);
113 dprintf(("PyThread_start_new_thread spawn_thread failed: %s\n", strerror(errno
)));
115 success
= resume_thread(tid
);
117 dprintf(("PyThread_start_new_thread resume_thread failed: %s\n", strerror(errno
)));
121 return (success
< 0 ? -1 : tid
);
125 long PyThread_get_thread_ident(void)
127 return get_thread_id(NULL
);
131 static void do_PyThread_exit_thread(int no_cleanup
)
133 dprintf(("PyThread_exit_thread called\n"));
135 /* Thread-safe way to read a variable without a mutex: */
136 if (atomic_add(&thread_count
, 0) == 0) {
137 /* No threads around, so exit main(). */
149 void PyThread_exit_thread(void)
151 do_PyThread_exit_thread(0);
155 void PyThread__exit_thread(void)
157 do_PyThread_exit_thread(1);
162 static void do_PyThread_exit_prog(int status
, int no_cleanup
)
164 dprintf(("PyThread_exit_prog(%d) called\n", status
));
166 /* No need to do anything, the threads get torn down if main()exits. */
174 void PyThread_exit_prog(int status
)
176 do_PyThread_exit_prog(status
, 0);
180 void PyThread__exit_prog(int status
)
182 do_PyThread_exit_prog(status
, 1);
184 #endif /* NO_EXIT_PROG */
192 static atomic_t lock_count
= 0;
194 PyThread_type_lock
PyThread_allocate_lock(void)
201 char name
[OS_NAME_LENGTH
];
204 dprintf(("PyThread_allocate_lock called\n"));
207 lock
= (fastmutex_t
*) malloc(sizeof(fastmutex_t
));
209 dprintf(("PyThread_allocate_lock failed: out of memory\n"));
210 return (PyThread_type_lock
) NULL
;
213 this_lock
= atomic_add(&lock_count
, 1);
214 PyOS_snprintf(name
, sizeof(name
), "python lock (%d)", this_lock
);
217 if (fastmutex_create(name
, lock
) < 0) {
218 dprintf(("PyThread_allocate_lock failed: %s\n",
223 dprintf(("PyThread_allocate_lock()-> %p\n", lock
));
224 return (PyThread_type_lock
) lock
;
226 sema
= create_semaphore(name
, 1, 0);
228 dprintf(("PyThread_allocate_lock failed: %s\n",
232 dprintf(("PyThread_allocate_lock()-> %p\n", sema
));
233 return (PyThread_type_lock
) sema
;
238 void PyThread_free_lock(PyThread_type_lock lock
)
240 dprintf(("PyThread_free_lock(%p) called\n", lock
));
243 if (fastmutex_destroy((fastmutex_t
*) lock
) < 0) {
244 dprintf(("PyThread_free_lock(%p) failed: %s\n", lock
,
249 if (delete_semaphore((sem_id
) lock
) < 0) {
250 dprintf(("PyThread_free_lock(%p) failed: %s\n", lock
,
257 int PyThread_acquire_lock(PyThread_type_lock lock
, int waitflag
)
261 dprintf(("PyThread_acquire_lock(%p, %d) called\n", lock
,
266 retval
= fastmutex_lock((fastmutex_t
*) lock
);
268 retval
= fastmutex_timedlock((fastmutex_t
*) lock
, 0);
271 retval
= lock_semaphore((sem_id
) lock
);
273 retval
= lock_semaphore_x((sem_id
) lock
, 1, 0, 0);
276 dprintf(("PyThread_acquire_lock(%p, %d) failed: %s\n",
277 lock
, waitflag
, strerror(errno
)));
279 dprintf(("PyThread_acquire_lock(%p, %d)-> %d\n", lock
, waitflag
,
281 return retval
< 0 ? 0 : 1;
285 void PyThread_release_lock(PyThread_type_lock lock
)
287 dprintf(("PyThread_release_lock(%p) called\n", lock
));
290 if (fastmutex_unlock((fastmutex_t
*) lock
) < 0) {
291 dprintf(("PyThread_release_lock(%p) failed: %s\n", lock
,
295 if (unlock_semaphore((sem_id
) lock
) < 0) {
296 dprintf(("PyThread_release_lock(%p) failed: %s\n", lock
,