Home
last modified time | relevance | path

Searched refs:pthread_descr (Results 1 – 25 of 85) sorted by relevance

1234

/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/linuxthreads.old/
A Dinternals.h91 typedef struct _pthread_descr_struct * pthread_descr; typedef
104 int (*pu_extricate_func)(void *, pthread_descr);
131 pthread_descr p_nextlive, p_prevlive;
164 pthread_descr p_self; /* Pointer to this structure */
200 pthread_descr req_thread; /* Thread doing the request */
248 extern pthread_descr __pthread_main_thread;
310 extern volatile pthread_descr __pthread_last_event;
387 static __inline__ pthread_descr thread_self (void) in thread_self()
490 extern void __pthread_restart_old(pthread_descr th) attribute_hidden;
502 extern void (*__pthread_restart)(pthread_descr) attribute_hidden;
[all …]
A Dqueue.h21 static __inline__ void enqueue(pthread_descr * q, pthread_descr th) in enqueue()
34 static __inline__ pthread_descr dequeue(pthread_descr * q) in dequeue()
36 pthread_descr th; in dequeue()
45 static __inline__ int remove_from_queue(pthread_descr * q, pthread_descr th) in remove_from_queue()
57 static __inline__ int queue_is_empty(pthread_descr * q) in queue_is_empty()
A Dpthread.c646 pthread_descr self = thread_self(); in pthread_create()
672 pthread_descr self = thread_self(); in pthread_self()
687 pthread_descr __pthread_find_self(void) in libpthread_hidden_def()
708 static pthread_descr thread_self_stack(void)
735 pthread_descr th; in pthread_setschedparam()
781 pthread_descr self = thread_self(); in libpthread_hidden_def()
807 pthread_descr self = thread_self(); in pthread_handle_sigrestart()
820 pthread_descr self = thread_self(); in pthread_handle_sigcancel()
894 pthread_descr self = thread_self(); in __pthread_reset_main_thread()
982 void __pthread_restart_old(pthread_descr th) in __pthread_restart_old()
[all …]
A Dspecific.c63 pthread_descr self = thread_self(); in pthread_key_delete()
79 pthread_descr th; in pthread_key_delete()
101 pthread_descr self = thread_self(); in pthread_setspecific()
122 pthread_descr self = thread_self(); in pthread_getspecific()
139 pthread_descr self = thread_self(); in __pthread_destroy_specifics()
177 pthread_descr self = thread_self(); in __pthread_internal_tsd_set()
186 pthread_descr self = thread_self(); in __pthread_internal_tsd_get()
194 pthread_descr self = thread_self(); in __pthread_internal_tsd_address()
A Dcancel.c43 pthread_descr self = thread_self(); in libpthread_hidden_proto()
58 pthread_descr self = thread_self(); in libpthread_hidden_def()
76 pthread_descr th; in libpthread_hidden_def()
131 pthread_descr self = thread_self(); in pthread_testcancel()
140 pthread_descr self = thread_self(); in _pthread_cleanup_push()
152 pthread_descr self = thread_self(); in _pthread_cleanup_pop()
160 pthread_descr self = thread_self(); in _pthread_cleanup_push_defer()
175 pthread_descr self = thread_self(); in strong_alias()
189 pthread_descr self = thread_self(); in strong_alias()
A Drwlock.c36 rwlock_is_in_list(pthread_descr self, pthread_rwlock_t *rwlock) in rwlock_is_in_list()
58 rwlock_add_to_list(pthread_descr self, pthread_rwlock_t *rwlock) in rwlock_add_to_list()
88 rwlock_remove_from_list(pthread_descr self, pthread_rwlock_t *rwlock) in rwlock_remove_from_list()
153 rwlock_have_already(pthread_descr *pself, pthread_rwlock_t *rwlock, in rwlock_have_already()
158 pthread_descr self = *pself; in rwlock_have_already()
229 pthread_descr self = NULL; in pthread_rwlock_rdlock()
268 pthread_descr self = thread_self(); in pthread_rwlock_tryrdlock()
310 pthread_descr self = thread_self (); in pthread_rwlock_wrlock()
350 pthread_descr torestart; in pthread_rwlock_unlock()
351 pthread_descr th; in pthread_rwlock_unlock()
[all …]
A Dmanager.c76 volatile pthread_descr __pthread_last_event;
82 static __inline__ pthread_descr thread_segment(int seg) in thread_segment()
274 pthread_descr self = (pthread_descr) arg; in pthread_start_thread()
322 pthread_descr self = (pthread_descr) arg; in pthread_start_thread_event()
347 pthread_descr new_thread; in pthread_allocate_stack()
480 pthread_descr new_thread; in pthread_handle_create()
703 static void pthread_free(pthread_descr th) in pthread_free()
762 pthread_descr th; in pthread_exited()
833 pthread_descr th; in pthread_handle_free()
859 pthread_descr th; in pthread_kill_all_threads()
[all …]
A Djoin.c37 pthread_descr self = thread_self(); in libpthread_hidden_def()
38 pthread_descr joining; in libpthread_hidden_def()
106 static int join_extricate_func(void *obj, pthread_descr th attribute_unused) in join_extricate_func()
108 volatile pthread_descr self = thread_self(); in join_extricate_func()
110 pthread_descr jo; in join_extricate_func()
124 volatile pthread_descr self = thread_self(); in pthread_join()
127 pthread_descr th; in pthread_join()
200 pthread_descr th; in pthread_detach()
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/linuxthreads/
A Ddescr.h42 typedef struct _pthread_descr_struct *pthread_descr; typedef
70 int (*pu_extricate_func)(void *, pthread_descr);
124 pthread_descr self; /* Pointer to this structure */
135 pthread_descr p_nextlive, p_prevlive;
138 pthread_descr p_nextlock; /* can be on a queue and waiting on a lock */
151 pthread_descr p_joining; /* thread joining on that thread or NULL */
221 extern pthread_descr __pthread_manager_threadp attribute_hidden;
243 extern pthread_descr __pthread_find_self (void) __attribute__ ((pure));
246 static __inline__ pthread_descr thread_self (void) in thread_self()
261 return (pthread_descr)(((unsigned long)sp | (STACK_SIZE-1))+1) - 1; in thread_self()
[all …]
A Dqueue.h21 static __inline__ void enqueue(pthread_descr * q, pthread_descr th) in enqueue()
35 static __inline__ pthread_descr dequeue(pthread_descr * q) in dequeue()
37 pthread_descr th; in dequeue()
46 static __inline__ int remove_from_queue(pthread_descr * q, pthread_descr th) in remove_from_queue()
58 static __inline__ int queue_is_empty(pthread_descr * q) in queue_is_empty()
A Dmanager.c62 static pthread_descr manager_thread;
237 pthread_descr self = arg; in __pthread_manager_event()
257 pthread_descr self = (pthread_descr) arg; in pthread_start_thread()
319 pthread_descr self = (pthread_descr) arg; in pthread_start_thread_event()
349 pthread_descr new_thread; in pthread_allocate_stack()
591 pthread_descr new_thread; in pthread_handle_create()
931 pthread_descr th; in pthread_exited()
1001 pthread_descr th; in pthread_handle_free()
1027 pthread_descr th; in pthread_kill_all_threads()
1041 pthread_descr th; in pthread_for_each_thread()
[all …]
A Dinternals.h108 void (*fn)(void *, pthread_descr);
142 extern pthread_descr __pthread_main_thread;
170 extern __volatile__ pthread_descr __pthread_last_event;
366 extern pthread_descr __pthread_thread_self (void);
381 extern void __pthread_restart_old(pthread_descr th);
385 extern void __pthread_restart_new(pthread_descr th);
413 extern void (*__pthread_restart)(pthread_descr);
414 extern void (*__pthread_suspend)(pthread_descr);
527 static __always_inline pthread_descr
529 static __always_inline pthread_descr
[all …]
A Dcancel.c34 pthread_descr self = thread_self(); in __pthread_setcancelstate()
49 pthread_descr self = thread_self(); in strong_alias()
70 pthread_descr self = thread_self(); in strong_alias()
83 pthread_descr self = thread_self(); in __pthread_disable_asynccancel()
93 pthread_descr th; in pthread_cancel()
148 pthread_descr self = thread_self(); in pthread_testcancel()
157 pthread_descr self = thread_self(); in _pthread_cleanup_push()
169 pthread_descr self = thread_self(); in _pthread_cleanup_pop()
177 pthread_descr self = thread_self(); in _pthread_cleanup_push_defer()
191 pthread_descr self = thread_self(); in _pthread_cleanup_pop_restore()
[all …]
A Dspecific.c68 pthread_descr self;
71 static void pthread_key_delete_helper(void *arg, pthread_descr th) in pthread_key_delete_helper()
76 pthread_descr self = args->self; in pthread_key_delete_helper()
93 pthread_descr self = thread_self(); in pthread_key_delete()
143 pthread_descr self = thread_self(); in __pthread_setspecific()
165 pthread_descr self = thread_self(); in strong_alias()
183 pthread_descr self = thread_self(); in strong_alias()
222 pthread_descr self = thread_self(); in __pthread_internal_tsd_set()
231 pthread_descr self = thread_self(); in __pthread_internal_tsd_get()
239 pthread_descr self = thread_self(); in __pthread_internal_tsd_address()
A Dpthread.c102 pthread_descr __pthread_main_thread;
296 pthread_descr self; in __pthread_initialize_minimal()
443 pthread_descr self = THREAD_SELF; in __pthread_init_max_stacksize()
630 pthread_descr mgr; in __pthread_initialize_manager()
674 mgr = (pthread_descr) tcbp; in __pthread_initialize_manager()
824 pthread_descr self = thread_self(); in __pthread_create()
855 pthread_descr self = thread_self(); in __pthread_self()
870 pthread_descr __pthread_find_self(void) in strong_alias()
926 pthread_descr th; in __pthread_setschedparam()
974 pthread_descr self = thread_self(); in strong_alias()
[all …]
A Drwlock.c33 static int rwlock_rd_extricate_func(void *obj, pthread_descr th) in rwlock_rd_extricate_func()
64 rwlock_is_in_list(pthread_descr self, pthread_rwlock_t *rwlock) in rwlock_is_in_list()
187 pthread_descr self = *pself; in rwlock_have_already()
260 pthread_descr self = NULL; in strong_alias()
301 pthread_descr self = NULL; in strong_alias()
371 pthread_descr self = thread_self(); in strong_alias()
414 pthread_descr self = thread_self (); in strong_alias()
439 pthread_descr self; in strong_alias()
513 pthread_descr torestart; in strong_alias()
514 pthread_descr th; in strong_alias()
[all …]
A Djoin.c35 pthread_descr self = thread_self(); in strong_alias()
36 pthread_descr joining; in strong_alias()
98 static int join_extricate_func(void *obj, pthread_descr th) in join_extricate_func()
100 __volatile__ pthread_descr self = thread_self(); in join_extricate_func()
102 pthread_descr jo; in join_extricate_func()
116 __volatile__ pthread_descr self = thread_self(); in pthread_join()
119 pthread_descr th; in pthread_join()
189 pthread_descr th; in pthread_detach()
/l4re-core-master/uclibc/lib/libpthread/src/
A Ddescr.h28 typedef struct pthread *pthread_descr; typedef
49 int (*pu_extricate_func)(void *, pthread_descr);
123 pthread_descr p_nextlive, p_prevlive;
125 pthread_descr p_nextwaiting; /* Next element in the queue holding the thr */
126 pthread_descr p_nextlock; /* can be on a queue and waiting on a lock */
143 pthread_descr p_joining; /* thread joining on that thread or NULL */
201 extern pthread_descr __pthread_manager_threadp L4_HIDDEN;
223 extern pthread_descr __pthread_find_self (void) __attribute__ ((pure));
225 static __inline__ pthread_descr thread_self (void) __attribute__ ((pure));
226 static __inline__ pthread_descr thread_self (void) in thread_self()
[all …]
A Dqueue.h21 static __inline__ void enqueue(pthread_descr * q, pthread_descr th) in enqueue()
35 static __inline__ pthread_descr dequeue(pthread_descr * q) in dequeue()
37 pthread_descr th; in dequeue()
46 static __inline__ int remove_from_queue(pthread_descr * q, pthread_descr th) in remove_from_queue()
58 static __inline__ int queue_is_empty(pthread_descr * q) in queue_is_empty()
A Dmanager.cc78 static pthread_descr manager_thread;
123 pthread_descr self = manager_thread = (pthread_descr)arg; in __pthread_manager()
251 pthread_descr self = (pthread_descr)arg; in __pthread_manager_event()
271 pthread_descr self = (pthread_descr) arg; in pthread_start_thread()
343 pthread_descr self = (pthread_descr) arg; in pthread_start_thread_event()
388 pthread_descr new_thread; in pthread_allocate_stack()
670 pthread_descr new_thread; in pthread_handle_create()
983 pthread_descr th; in pthread_handle_free()
1005 pthread_descr th;
1021 pthread_descr th; in pthread_for_each_thread()
[all …]
A Dcancel.c39 pthread_descr self = thread_self(); in __pthread_setcancelstate()
56 pthread_descr self = thread_self(); in strong_alias()
77 pthread_descr self = thread_self(); in strong_alias()
90 pthread_descr self = thread_self(); in __pthread_disable_asynccancel()
145 pthread_descr th; in pthread_cancel()
202 pthread_descr self = thread_self(); in pthread_testcancel()
213 pthread_descr self = thread_self(); in __pthread_cleanup_push()
229 pthread_descr self = thread_self(); in strong_alias()
241 pthread_descr self = thread_self(); in strong_alias()
259 pthread_descr self = thread_self(); in strong_alias()
[all …]
A Dspecific.c71 pthread_descr self;
74 static void pthread_key_delete_helper(void *arg, pthread_descr th) in pthread_key_delete_helper()
79 pthread_descr self = args->self; in pthread_key_delete_helper()
96 pthread_descr self = thread_self(); in pthread_key_delete()
151 pthread_descr self = thread_self(); in __pthread_setspecific()
175 pthread_descr self = thread_self(); in strong_alias()
195 pthread_descr self = thread_self(); in strong_alias()
235 pthread_descr self = thread_self(); in __pthread_internal_tsd_set()
245 pthread_descr self = thread_self(); in __pthread_internal_tsd_get()
254 pthread_descr self = thread_self(); in __pthread_internal_tsd_address()
A Dpthread.c119 pthread_descr __pthread_main_thread;
369 pthread_descr self; in __pthread_initialize_minimal()
587 pthread_descr th; in __pthread_init_static_tls()
684 pthread_descr mgr; in __pthread_initialize_manager()
734 mgr = (pthread_descr) tcbp; in __pthread_initialize_manager()
902 pthread_descr self = thread_self(); in __pthread_create()
931 pthread_descr in strong_alias()
942 pthread_descr self = thread_self(); in __pthread_self()
960 pthread_descr in strong_alias()
980 pthread_descr
[all …]
A Djoin.c39 pthread_descr self = thread_self(); in strong_alias()
40 pthread_descr joining; in strong_alias()
92 static int join_extricate_func(void *obj, pthread_descr th) in join_extricate_func()
94 __volatile__ pthread_descr self = thread_self(); in join_extricate_func()
96 pthread_descr jo; in join_extricate_func()
110 __volatile__ pthread_descr self = thread_self(); in pthread_join()
113 pthread_descr th; in pthread_join()
182 pthread_descr th; in pthread_detach()
A Drwlock.c34 static int rwlock_rd_extricate_func(void *obj, pthread_descr th) in rwlock_rd_extricate_func()
65 rwlock_is_in_list(pthread_descr self, pthread_rwlock_t *rwlock) in rwlock_is_in_list()
188 pthread_descr self = *pself; in rwlock_have_already()
261 pthread_descr self = NULL; in strong_alias()
302 pthread_descr self = NULL; in strong_alias()
372 pthread_descr self = thread_self(); in strong_alias()
415 pthread_descr self = thread_self (); in strong_alias()
440 pthread_descr self; in strong_alias()
514 pthread_descr torestart; in strong_alias()
515 pthread_descr th; in strong_alias()
[all …]

Completed in 33 milliseconds

1234