HomeSort by: relevance | last modified time | path
    Searched refs:thread (Results 1 - 25 of 1518) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.linespec/
thread.c 21 thread () function
29 thread (); /* set breakpoint 1 here */
keywords.c 25 thread (int thread) function
27 return task (thread) + 1;
34 x += thread (0);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.linespec/
thread.c 21 thread () function
29 thread (); /* set breakpoint 1 here */
keywords.c 25 thread (int thread) function
27 return task (thread) + 1;
34 x += thread (0);
  /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/gcc.old/dist/libphobos/libdruntime/core/thread/
package.d 2 * The thread module provides support for thread creation and management.
9 * Source: $(DRUNTIMESRC core/thread/package.d)
12 module core.thread;
15 public import core.thread.fiber;
16 public import core.thread.osthread;
17 public import core.thread.threadbase;
18 public import core.thread.threadgroup;
19 public import core.thread.types;
20 public import core.thread.context
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/unittests/
main-thread-selftests.c 23 #include "run-on-main-thread.h"
26 #include <thread>
48 std::thread thread; local
57 if (thread.joinable ())
58 thread.join ();
60 thread = std::thread (set_done);
  /src/external/gpl3/gdb/dist/gdb/unittests/
main-thread-selftests.c 23 #include "run-on-main-thread.h"
26 #include <thread>
48 std::thread thread; local
57 if (thread.joinable ())
58 thread.join ();
60 thread = std::thread (set_done);
  /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.threads/
thread-specific-bp.c 34 pthread_t thread; local
36 pthread_create (&thread, NULL, start, NULL);
37 pthread_join (thread, NULL);
  /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.threads/
thread-specific-bp.c 34 pthread_t thread; local
36 pthread_create (&thread, NULL, start, NULL);
37 pthread_join (thread, NULL);
  /src/external/gpl3/gcc.old/dist/libphobos/testsuite/libphobos.imports/
bug18193.d 4 import core.thread;
  /src/lib/librumpuser/
rumpfiber.h 36 struct thread { struct
41 TAILQ_ENTRY(thread) thread_list;
57 void wake(struct thread *thread);
58 void block(struct thread *thread);
59 struct thread *init_mainthread(void *);
63 struct thread* create_thread(const char *name, void *cookie,
66 int is_runnable(struct thread *);
67 void set_runnable(struct thread *);
    [all...]
  /src/external/cddl/dtracetoolkit/dist/Bin/
j_thread.d 3 * j_thread.d - snoop Java thread execution using DTrace.
16 * TID Thread ID
17 * THREAD Thread name
20 * => thread start
21 * <= thread end
47 printf("%-20s %6s/%-5s -- %s\n", "TIME", "PID", "TID", "THREAD");
50 hotspot*:::thread-start
52 this->thread = (char *)copyin(arg0, arg1 + 1);
53 this->thread[arg1] = '\0'
    [all...]
  /src/external/cddl/dtracetoolkit/dist/Java/
j_thread.d 3 * j_thread.d - snoop Java thread execution using DTrace.
16 * TID Thread ID
17 * THREAD Thread name
20 * => thread start
21 * <= thread end
47 printf("%-20s %6s/%-5s -- %s\n", "TIME", "PID", "TID", "THREAD");
50 hotspot*:::thread-start
52 this->thread = (char *)copyin(arg0, arg1 + 1);
53 this->thread[arg1] = '\0'
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
gdb_proc_service.h 30 thread_info *thread; member in struct:ps_prochandle
inline-frame.h 40 void skip_inline_frames (thread_info *thread, struct bpstat *stop_chain);
48 /* Forget about any hidden inlined functions in THREAD, which is new
51 void clear_inline_frame_state (thread_info *thread);
55 void step_into_inline_frame (thread_info *thread);
60 int inline_skipped_frames (thread_info *thread);
65 const symbol *inline_skipped_symbol (thread_info *thread);
  /src/external/gpl3/gdb/dist/gdb/
gdb_proc_service.h 30 thread_info *thread; member in struct:ps_prochandle
inline-frame.h 40 void skip_inline_frames (thread_info *thread, struct bpstat *stop_chain);
48 /* Forget about any hidden inlined functions in THREAD, which is new
51 void clear_inline_frame_state (thread_info *thread);
55 void step_into_inline_frame (thread_info *thread);
60 int inline_skipped_frames (thread_info *thread);
65 const symbol *inline_skipped_symbol (thread_info *thread);
  /src/crypto/external/apache2/openssl/dist/crypto/thread/
arch.c 47 int ossl_crypto_thread_native_join(CRYPTO_THREAD *thread, CRYPTO_THREAD_RETVAL *retval)
51 if (thread == NULL)
54 ossl_crypto_mutex_lock(thread->statelock);
56 while (!CRYPTO_THREAD_GET_STATE(thread, req_state_mask))
57 ossl_crypto_condvar_wait(thread->condvar, thread->statelock);
59 if (CRYPTO_THREAD_GET_STATE(thread, CRYPTO_THREAD_JOINED))
63 while (CRYPTO_THREAD_GET_STATE(thread, CRYPTO_THREAD_JOIN_AWAIT)) {
64 if (!CRYPTO_THREAD_GET_STATE(thread, CRYPTO_THREAD_JOINED))
65 ossl_crypto_condvar_wait(thread->condvar, thread->statelock)
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/testsuite/libphobos.thread/
external_threads.d 3 import core.thread;
11 // try collecting - GC must ignore this call because this thread
20 // This thread gets registered in druntime, does some work and gets
38 pthread_t thread;
39 auto status = pthread_create(&thread, null, &entry_point1, null);
41 pthread_join(thread, null);
45 pthread_t thread;
46 auto status = pthread_create(&thread, null, &entry_point2, null);
48 pthread_join(thread, null);
  /src/lib/libpthread/
pthread_misc.c 64 pthread_getschedparam(pthread_t thread, int *policy, struct sched_param *param)
67 pthread__error(EINVAL, "Invalid thread",
68 thread->pt_magic == PT_MAGIC);
70 if (pthread__find(thread) != 0)
73 if (_sched_getparam(getpid(), thread->pt_lid, policy, param) < 0)
80 pthread_setschedparam(pthread_t thread, int policy,
85 pthread__error(EINVAL, "Invalid thread",
86 thread->pt_magic == PT_MAGIC);
88 if (pthread__find(thread) != 0)
92 if (_sched_setparam(getpid(), thread->pt_lid, policy, &sp) < 0
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_thread_arg_retval.h 11 // Tracks thread arguments and return value for leak checking.
27 // class keeps data up to the detach or join, as exited thread still can be
41 // prevent child thread from proceeding without thread handle.
42 template <typename CreateFn /* returns thread id on success, or 0 */>
47 if (uptr thread = fn())
48 CreateLocked(thread, detached, args);
51 // Returns thread arg and routine.
52 Args GetArgs(uptr thread) const;
54 // Mark thread as done and stores retval or remove if detached. Should b
    [all...]
  /src/lib/libpthread/compat/
compat_pthread_setname_np.c 43 __compat_pthread_setname_np(pthread_t thread, const char *name, void *arg)
45 return __pthread_setname_np120(thread, name, arg);

Completed in 23 milliseconds

1 2 3 4 5 6 7 8 91011>>