1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- #include "pthread.h"
- #include "implement.h"
- int pte_processInitialized = PTE_FALSE;
- pte_thread_t * pte_threadReuseTop = PTE_THREAD_REUSE_EMPTY;
- pte_thread_t * pte_threadReuseBottom = PTE_THREAD_REUSE_EMPTY;
- pthread_key_t pte_selfThreadKey = NULL;
- pthread_key_t pte_cleanupKey = NULL;
- pthread_cond_t pte_cond_list_head = NULL;
- pthread_cond_t pte_cond_list_tail = NULL;
- int pte_concurrency = 0;
- int pte_features = 0;
- unsigned char pte_smp_system = PTE_TRUE;
- pte_osMutexHandle pte_thread_reuse_lock;
- pte_osMutexHandle pte_mutex_test_init_lock;
- pte_osMutexHandle pte_cond_test_init_lock;
- pte_osMutexHandle pte_rwlock_test_init_lock;
- pte_osMutexHandle pte_spinlock_test_init_lock;
- pte_osMutexHandle pte_cond_list_lock;
|