| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| thread.h | 1 //===-- llvm/Support/thread.h - Wrapper for <thread> ------------*- C++ -*-===// 9 // This header is a wrapper for <thread> that works around problems with the 10 // MSVC headers when exceptions are disabled. It also provides llvm::thread, 11 // which is either a typedef of std::thread or a replacement that calls the 23 #include <thread> 26 typedef std::thread thread; typedef in namespace:llvm 35 struct thread { 36 thread() {} [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/ |
| jit-attach-pie.c | 34 pthread_t thread; local 36 pthread_create (&thread, NULL, thread_proc, 0); 37 pthread_join (thread, NULL);
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.linespec/ |
| keywords.c | 25 thread (int thread) function 27 return task (thread) + 1; 34 x += thread (0);
|
| thread.c | 21 thread () function 29 thread (); /* set breakpoint 1 here */
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.mi/ |
| nsthrexec.c | 41 pthread_t thread; local 45 pthread_create (&thread, NULL, thread_execler, NULL); 46 pthread_join (thread, NULL);
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.multi/ |
| multi-attach.c | 38 pthread_t thread; local 40 pthread_create (&thread, NULL, thread_func, NULL); 45 pthread_join (thread, NULL);
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.threads/ |
| fork-child-threads.c | 31 pthread_t thread; local 41 i = pthread_create (&thread, NULL, start, NULL); 43 i = pthread_join (thread, NULL);
|
| info-threads-cur-sal.c | 25 pthread_t thread; local 28 i = pthread_create (&thread, NULL, start, NULL); 30 pthread_join (thread, NULL);
|
| non-ldr-exit.c | 1 /* Clean exit of the thread group leader should not break GDB. 33 pthread_t thread; local 36 i = pthread_create (&thread, NULL, start, NULL); 38 i = pthread_join (thread, NULL);
|
| schedlock-new-thread.c | 36 pthread_t thread; local 39 ret = pthread_create (&thread, NULL, thread_func, NULL); /* set break 1 here */ 43 /* When testing with schedlock enabled, the new thread won't run, so 45 a bit, enough that if the spawned thread is scheduled, it hits 46 the thread_func breakpoint before the main thread reaches the 50 pthread_join (thread, NULL);
|
| thread-execl.c | 41 pthread_t thread; local 45 pthread_create (&thread, NULL, thread_execler, NULL); 46 pthread_join (thread, NULL);
|
| thread-specific-bp.c | 34 pthread_t thread; local 36 pthread_create (&thread, NULL, start, NULL); 37 pthread_join (thread, NULL);
|
| thread_events.c | 18 /* Simple test to trigger thread events (thread start, thread exit). */ 39 pthread_t thread; local 41 if (pthread_create (&thread, NULL, threadfunc, NULL) != 0) 47 if (pthread_join (thread, NULL) != 0)
|
| threads-after-exec.c | 42 pthread_t thread; local 52 pthread_create (&thread, NULL, thread_execler, NULL); 53 pthread_join (thread, NULL);
|
| threxit-hop-specific.c | 37 pthread_t thread; local 39 pthread_create (&thread, NULL, thread_function, NULL); 40 pthread_join (thread, NULL); /* wait for exit */ 42 /* The main thread should be able to hop over the breakpoint set 44 hop_me (); /* set thread specific breakpoint here */
|
| tls-core.c | 33 pthread_t thread; local 35 pthread_create (&thread, NULL, thread_proc, NULL); 36 pthread_join (thread, NULL);
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| gdb_proc_service.h | 30 thread_info *thread; member in struct:ps_prochandle
|
| /src/external/gpl3/gdb/dist/gdb/ |
| gdb_proc_service.h | 30 thread_info *thread; member in struct:ps_prochandle
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/ |
| jit-attach-pie.c | 34 pthread_t thread; local 36 pthread_create (&thread, NULL, thread_proc, 0); 37 pthread_join (thread, NULL);
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.linespec/ |
| keywords.c | 25 thread (int thread) function 27 return task (thread) + 1; 34 x += thread (0);
|
| thread.c | 21 thread () function 29 thread (); /* set breakpoint 1 here */
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.mi/ |
| nsthrexec.c | 41 pthread_t thread; local 45 pthread_create (&thread, NULL, thread_execler, NULL); 46 pthread_join (thread, NULL);
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.multi/ |
| multi-attach.c | 38 pthread_t thread; local 40 pthread_create (&thread, NULL, thread_func, NULL); 45 pthread_join (thread, NULL);
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.threads/ |
| fork-child-threads.c | 31 pthread_t thread; local 41 i = pthread_create (&thread, NULL, start, NULL); 43 i = pthread_join (thread, NULL);
|
| info-threads-cur-sal.c | 25 pthread_t thread; local 28 i = pthread_create (&thread, NULL, start, NULL); 30 pthread_join (thread, NULL);
|