| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  | /* Threading for AtheOS.
 | 
					
						
							|  |  |  |    Based on thread_beos.h. */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <atheos/threads.h>
 | 
					
						
							|  |  |  | #include <atheos/semaphore.h>
 | 
					
						
							|  |  |  | #include <atheos/atomic.h>
 | 
					
						
							|  |  |  | #include <errno.h>
 | 
					
						
							|  |  |  | #include <string.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Missing decl from threads.h */ | 
					
						
							|  |  |  | extern int exit_thread(int); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Undefine FASTLOCK to play with simple semaphores. */ | 
					
						
							|  |  |  | #define FASTLOCK
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef FASTLOCK
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Use an atomic counter and a semaphore for maximum speed. */ | 
					
						
							|  |  |  | typedef struct fastmutex { | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |     sem_id sem; | 
					
						
							|  |  |  |     atomic_t count; | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  | } fastmutex_t; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int fastmutex_create(const char *name, fastmutex_t * mutex); | 
					
						
							|  |  |  | static int fastmutex_destroy(fastmutex_t * mutex); | 
					
						
							|  |  |  | static int fastmutex_lock(fastmutex_t * mutex); | 
					
						
							|  |  |  | static int fastmutex_timedlock(fastmutex_t * mutex, bigtime_t timeout); | 
					
						
							|  |  |  | static int fastmutex_unlock(fastmutex_t * mutex); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int fastmutex_create(const char *name, fastmutex_t * mutex) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |     mutex->count = 0; | 
					
						
							|  |  |  |     mutex->sem = create_semaphore(name, 0, 0); | 
					
						
							|  |  |  |     return (mutex->sem < 0) ? -1 : 0; | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int fastmutex_destroy(fastmutex_t * mutex) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |     if (fastmutex_timedlock(mutex, 0) == 0 || errno == EWOULDBLOCK) { | 
					
						
							|  |  |  |         return delete_semaphore(mutex->sem); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int fastmutex_lock(fastmutex_t * mutex) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |     atomic_t prev = atomic_add(&mutex->count, 1); | 
					
						
							|  |  |  |     if (prev > 0) | 
					
						
							|  |  |  |         return lock_semaphore(mutex->sem); | 
					
						
							|  |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int fastmutex_timedlock(fastmutex_t * mutex, bigtime_t timeout) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |     atomic_t prev = atomic_add(&mutex->count, 1); | 
					
						
							|  |  |  |     if (prev > 0) | 
					
						
							|  |  |  |         return lock_semaphore_x(mutex->sem, 1, 0, timeout); | 
					
						
							|  |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int fastmutex_unlock(fastmutex_t * mutex) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |     atomic_t prev = atomic_add(&mutex->count, -1); | 
					
						
							|  |  |  |     if (prev > 1) | 
					
						
							|  |  |  |         return unlock_semaphore(mutex->sem); | 
					
						
							|  |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  | #endif                          /* FASTLOCK */
 | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Initialization. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static void PyThread__init_thread(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |     /* Do nothing. */ | 
					
						
							|  |  |  |     return; | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Thread support. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static atomic_t thread_count = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | long PyThread_start_new_thread(void (*func) (void *), void *arg) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |     status_t success = -1; | 
					
						
							|  |  |  |     thread_id tid; | 
					
						
							|  |  |  |     char name[OS_NAME_LENGTH]; | 
					
						
							|  |  |  |     atomic_t this_thread; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     dprintf(("PyThread_start_new_thread called\n")); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     this_thread = atomic_add(&thread_count, 1); | 
					
						
							|  |  |  |     PyOS_snprintf(name, sizeof(name), "python thread (%d)", this_thread); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     tid = spawn_thread(name, func, NORMAL_PRIORITY, 0, arg); | 
					
						
							|  |  |  |     if (tid < 0) { | 
					
						
							|  |  |  |         dprintf(("PyThread_start_new_thread spawn_thread failed: %s\n", strerror(errno))); | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         success = resume_thread(tid); | 
					
						
							|  |  |  |         if (success < 0) { | 
					
						
							|  |  |  |             dprintf(("PyThread_start_new_thread resume_thread failed: %s\n", strerror(errno))); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return (success < 0 ? -1 : tid); | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | long PyThread_get_thread_ident(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |     return get_thread_id(NULL); | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void do_PyThread_exit_thread(int no_cleanup) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |     dprintf(("PyThread_exit_thread called\n")); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Thread-safe way to read a variable without a mutex: */ | 
					
						
							|  |  |  |     if (atomic_add(&thread_count, 0) == 0) { | 
					
						
							|  |  |  |         /* No threads around, so exit main(). */ | 
					
						
							|  |  |  |         if (no_cleanup) | 
					
						
							|  |  |  |             _exit(0); | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             exit(0); | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         /* We're a thread */ | 
					
						
							|  |  |  |         exit_thread(0); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void PyThread_exit_thread(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |     do_PyThread_exit_thread(0); | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void PyThread__exit_thread(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |     do_PyThread_exit_thread(1); | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef NO_EXIT_PROG
 | 
					
						
							|  |  |  | static void do_PyThread_exit_prog(int status, int no_cleanup) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |     dprintf(("PyThread_exit_prog(%d) called\n", status)); | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |     /* No need to do anything, the threads get torn down if main()exits. */ | 
					
						
							|  |  |  |     if (no_cleanup) | 
					
						
							|  |  |  |         _exit(status); | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         exit(status); | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void PyThread_exit_prog(int status) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |     do_PyThread_exit_prog(status, 0); | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void PyThread__exit_prog(int status) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |     do_PyThread_exit_prog(status, 1); | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  | #endif                          /* NO_EXIT_PROG */
 | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Lock support. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static atomic_t lock_count = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyThread_type_lock PyThread_allocate_lock(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | #ifdef FASTLOCK
 | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |     fastmutex_t *lock; | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |     sem_id sema; | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |     char name[OS_NAME_LENGTH]; | 
					
						
							|  |  |  |     atomic_t this_lock; | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |     dprintf(("PyThread_allocate_lock called\n")); | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef FASTLOCK
 | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |     lock = (fastmutex_t *) malloc(sizeof(fastmutex_t)); | 
					
						
							|  |  |  |     if (lock == NULL) { | 
					
						
							|  |  |  |         dprintf(("PyThread_allocate_lock failed: out of memory\n")); | 
					
						
							|  |  |  |         return (PyThread_type_lock) NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |     this_lock = atomic_add(&lock_count, 1); | 
					
						
							|  |  |  |     PyOS_snprintf(name, sizeof(name), "python lock (%d)", this_lock); | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef FASTLOCK
 | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |     if (fastmutex_create(name, lock) < 0) { | 
					
						
							|  |  |  |         dprintf(("PyThread_allocate_lock failed: %s\n", | 
					
						
							|  |  |  |                  strerror(errno))); | 
					
						
							|  |  |  |         free(lock); | 
					
						
							|  |  |  |         lock = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     dprintf(("PyThread_allocate_lock()-> %p\n", lock)); | 
					
						
							|  |  |  |     return (PyThread_type_lock) lock; | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |     sema = create_semaphore(name, 1, 0); | 
					
						
							|  |  |  |     if (sema < 0) { | 
					
						
							|  |  |  |         dprintf(("PyThread_allocate_lock failed: %s\n", | 
					
						
							|  |  |  |                  strerror(errno))); | 
					
						
							|  |  |  |         sema = 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     dprintf(("PyThread_allocate_lock()-> %p\n", sema)); | 
					
						
							|  |  |  |     return (PyThread_type_lock) sema; | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void PyThread_free_lock(PyThread_type_lock lock) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |     dprintf(("PyThread_free_lock(%p) called\n", lock)); | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef FASTLOCK
 | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |     if (fastmutex_destroy((fastmutex_t *) lock) < 0) { | 
					
						
							|  |  |  |         dprintf(("PyThread_free_lock(%p) failed: %s\n", lock, | 
					
						
							|  |  |  |                  strerror(errno))); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     free(lock); | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |     if (delete_semaphore((sem_id) lock) < 0) { | 
					
						
							|  |  |  |         dprintf(("PyThread_free_lock(%p) failed: %s\n", lock, | 
					
						
							|  |  |  |                  strerror(errno))); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int PyThread_acquire_lock(PyThread_type_lock lock, int waitflag) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |     int retval; | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |     dprintf(("PyThread_acquire_lock(%p, %d) called\n", lock, | 
					
						
							|  |  |  |              waitflag)); | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef FASTLOCK
 | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |     if (waitflag) | 
					
						
							|  |  |  |         retval = fastmutex_lock((fastmutex_t *) lock); | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         retval = fastmutex_timedlock((fastmutex_t *) lock, 0); | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |     if (waitflag) | 
					
						
							|  |  |  |         retval = lock_semaphore((sem_id) lock); | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         retval = lock_semaphore_x((sem_id) lock, 1, 0, 0); | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |     if (retval < 0) { | 
					
						
							|  |  |  |         dprintf(("PyThread_acquire_lock(%p, %d) failed: %s\n", | 
					
						
							|  |  |  |                  lock, waitflag, strerror(errno))); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     dprintf(("PyThread_acquire_lock(%p, %d)-> %d\n", lock, waitflag, | 
					
						
							|  |  |  |              retval)); | 
					
						
							|  |  |  |     return retval < 0 ? 0 : 1; | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void PyThread_release_lock(PyThread_type_lock lock) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |     dprintf(("PyThread_release_lock(%p) called\n", lock)); | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef FASTLOCK
 | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |     if (fastmutex_unlock((fastmutex_t *) lock) < 0) { | 
					
						
							|  |  |  |         dprintf(("PyThread_release_lock(%p) failed: %s\n", lock, | 
					
						
							|  |  |  |                  strerror(errno))); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |     if (unlock_semaphore((sem_id) lock) < 0) { | 
					
						
							|  |  |  |         dprintf(("PyThread_release_lock(%p) failed: %s\n", lock, | 
					
						
							|  |  |  |                  strerror(errno))); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | } |