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

1 2 3 4 5 6 7 8 9

  /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,
  /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);
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);
async.c 34 /* Sleep a bit to give the other threads a chance to run. */
49 pthread_t threads[NUM]; local
58 res = pthread_create (&threads[i - 1],
attach-slow-waitpid.c 24 /* Crude spin lock. Threads all spin until this is set to 0. */
48 /* Main program, create some threads which all spin waiting for GO to be
53 pthread_t threads[NUM_THREADS]; local
57 /* Create some threads. */
61 result_code = pthread_create (&threads[index], NULL, perform_work, &go);
71 result_code = pthread_join (threads[index], NULL);
75 printf ("In main: All threads completed successfully\n");
kill.c 49 pthread_t threads[NUM]; local
54 pthread_create (&threads[i], NULL, thread_function, NULL);
manythreads.c 44 pthread_t threads[256]; local
54 /* Create a ton of quick-executing threads, then wait for them to
61 pthread_create (&threads[j], &attr, thread_function, &args[j]);
66 pthread_join (threads[j], NULL);
pending-step.c 30 pthread_t threads[NUM]; local
37 res = pthread_create(&threads[i - 1],
  /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);
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);
  /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);
  /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);
  /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,
  /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);
  /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);
mi-cmd-user-context.c 54 pthread_t threads[NUM_THREADS]; local
60 pthread_create (&threads[i], NULL, child_function, (void *) (uintptr_t) i);
62 /* Wait for child threads to reach child_sub_function. */
mi-pending.c 46 pthread_t threads[NUM]; local
54 res = pthread_create (&threads[i],
61 res = pthread_join (threads[i], NULL);
nsintrall.c 31 pthread_t threads[NUM]; local
38 res = pthread_create(&threads[i - 1],
user-selected-context-sync.c 50 pthread_t threads[NUM_THREADS]; local
59 pthread_create (&threads[i], NULL, child_function, 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);
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/rtl/
tsan_thread.cc 50 pthread_t threads[kAlive] = {}; local
52 if (threads[i % kAlive])
53 pthread_join(threads[i % kAlive], 0);
54 pthread_create(&threads[i % kAlive], 0, thread_alot_func, 0);
57 pthread_join(threads[i], 0);

Completed in 60 milliseconds

1 2 3 4 5 6 7 8 9