HomeSort by: relevance | last modified time | path
    Searched defs:threads (Results 1 - 25 of 408) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl3/gdb.old/dist/gdb/python/lib/gdb/dap/
threads.py 29 @request("threads")
30 def threads(**args): function
32 for thr in gdb.selected_inferior().threads():
41 "threads": result,
threads.py 29 @request("threads")
30 def threads(**args): function
32 for thr in gdb.selected_inferior().threads():
41 "threads": result,
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.threads/
tls-so_extern_main.c 35 pthread_t threads[2]; local
39 pthread_create (&threads[0], NULL, tls_ptr, NULL);
40 pthread_create (&threads[1], NULL, tls_ptr, NULL);
42 pthread_join (threads[0], NULL);
43 pthread_join (threads[1], NULL);
tls-so_extern_main.c 35 pthread_t threads[2]; local
39 pthread_create (&threads[0], NULL, tls_ptr, NULL);
40 pthread_create (&threads[1], NULL, tls_ptr, NULL);
42 pthread_join (threads[0], NULL);
43 pthread_join (threads[1], NULL);
schedlock-thread-exit.c 31 pthread_t threads[nthreads]; local
35 int ret = pthread_create (&threads[i], NULL, thread_func, NULL);
41 int ret = pthread_join (threads[i], NULL);
schedlock-thread-exit.c 31 pthread_t threads[nthreads]; local
35 int ret = pthread_create (&threads[i], NULL, thread_func, NULL);
41 int ret = pthread_join (threads[i], NULL);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.threads/
tls-so_extern_main.c 35 pthread_t threads[2]; local
39 pthread_create (&threads[0], NULL, tls_ptr, NULL);
40 pthread_create (&threads[1], NULL, tls_ptr, NULL);
42 pthread_join (threads[0], NULL);
43 pthread_join (threads[1], NULL);
tls-so_extern_main.c 35 pthread_t threads[2]; local
39 pthread_create (&threads[0], NULL, tls_ptr, NULL);
40 pthread_create (&threads[1], NULL, tls_ptr, NULL);
42 pthread_join (threads[0], NULL);
43 pthread_join (threads[1], NULL);
schedlock-thread-exit.c 31 pthread_t threads[nthreads]; local
35 int ret = pthread_create (&threads[i], NULL, thread_func, NULL);
41 int ret = pthread_join (threads[i], NULL);
schedlock-thread-exit.c 31 pthread_t threads[nthreads]; local
35 int ret = pthread_create (&threads[i], NULL, thread_func, NULL);
41 int ret = pthread_join (threads[i], NULL);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.server/
attach-flag.c 19 pthread_t threads[NTHREADS]; local
23 pthread_create (&threads[i], NULL, thread_func, NULL);
28 pthread_join (threads[i], NULL);
attach-flag.c 19 pthread_t threads[NTHREADS]; local
23 pthread_create (&threads[i], NULL, thread_func, NULL);
28 pthread_join (threads[i], NULL);
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.server/
attach-flag.c 19 pthread_t threads[NTHREADS]; local
23 pthread_create (&threads[i], NULL, thread_func, NULL);
28 pthread_join (threads[i], NULL);
attach-flag.c 19 pthread_t threads[NTHREADS]; local
23 pthread_create (&threads[i], NULL, thread_func, NULL);
28 pthread_join (threads[i], NULL);
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.trace/
trace-mt.c 34 pthread_t threads[2]; local
38 pthread_create (&threads[i], NULL, thread_function, NULL);
41 pthread_join (threads[i], NULL);
trace-mt.c 34 pthread_t threads[2]; local
38 pthread_create (&threads[i], NULL, thread_function, NULL);
41 pthread_join (threads[i], NULL);
  /src/external/gpl3/gdb/dist/gdb/python/lib/gdb/dap/
threads.py 29 # threads. Use the local thread number here... it doesn't matter
35 @request("threads", expect_stopped=False)
36 def threads(**args): function
38 for thr in gdb.selected_inferior().threads():
46 "threads": result,
threads.py 29 # threads. Use the local thread number here... it doesn't matter
35 @request("threads", expect_stopped=False)
36 def threads(**args): function
38 for thr in gdb.selected_inferior().threads():
46 "threads": result,
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.trace/
trace-mt.c 34 pthread_t threads[2]; local
38 pthread_create (&threads[i], NULL, thread_function, NULL);
41 pthread_join (threads[i], NULL);
trace-mt.c 34 pthread_t threads[2]; local
38 pthread_create (&threads[i], NULL, thread_function, NULL);
41 pthread_join (threads[i], NULL);
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.mi/
interrupt-thread-group.c 44 pthread_t threads[NUM_THREADS]; local
50 int res = pthread_create (&threads[i], NULL, thread_function, NULL);
59 int res = pthread_join (threads[i], NULL);
mi-threads-interrupt.c 45 pthread_t threads[NUM_THREADS]; local
51 pthread_create (&threads[i], NULL, thread_func, NULL);
  /src/external/mit/libuv/dist/test/
test-thread-equal.c 39 uv_thread_t threads[2]; local
45 ASSERT_OK(uv_thread_create(threads + 0, check_thread, subthreads + 0));
46 ASSERT_OK(uv_thread_create(threads + 1, check_thread, subthreads + 1));
47 ASSERT_OK(uv_thread_join(threads + 0));
48 ASSERT_OK(uv_thread_join(threads + 1));
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.mi/
interrupt-thread-group.c 44 pthread_t threads[NUM_THREADS]; local
50 int res = pthread_create (&threads[i], NULL, thread_function, NULL);
59 int res = pthread_join (threads[i], NULL);
mi-threads-interrupt.c 45 pthread_t threads[NUM_THREADS]; local
51 pthread_create (&threads[i], NULL, thread_func, NULL);

Completed in 93 milliseconds

1 2 3 4 5 6 7 8 91011>>