Searched refs:tid (Results 1 - 25 of 319) sorted by relevance

1234567891011>>

/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/builtinvar/
H A Dtst.tid1.d32 * To print tid and make sure it succeeds.
41 printf("Thread id = %d \n", tid);
H A Dtst.tid.d31 * To print tid from profile
44 printf("Thread id = %d \n", tid);
/freebsd-9.3-release/crypto/openssh/regress/
H A Dlocalcommand.sh4 tid="localcommand"
10 verbose "test $tid: proto $p localcommand"
13 fail "$tid proto $p"
H A Dportnum.sh4 tid="port number parsing"
8 verbose "$tid: invalid port $port"
10 fail "$tid accepted invalid port $port"
15 verbose "$tid: valid port $port"
19 fail "$tid rejected valid port $port"
H A Dhost-expand.sh4 tid="expand %h and %n"
15 verbose "test $tid: proto $p"
17 diff $OBJ/expect $OBJ/actual || fail "$tid proto $p"
H A Dconnect.sh4 tid="simple connect"
H A Dsftp-cmds.sh8 tid="sftp commands"
30 verbose "$tid: lls"
34 verbose "$tid: lls w/path"
38 verbose "$tid: ls"
43 verbose "$tid: shell"
48 verbose "$tid: pwd"
53 verbose "$tid: lpwd"
58 verbose "$tid: quit"
63 verbose "$tid: help"
69 verbose "$tid
[all...]
H A Dyes-head.sh4 tid="yes pipe head"
H A Dtry-ciphers.sh4 tid="try ciphers"
10 verbose "test $tid: proto 2 cipher $c mac $m"
27 verbose "test $tid: proto 1 cipher $c"
H A Denvpass.sh4 tid="environment passing"
16 verbose "test $tid: pass env, don't accept"
27 verbose "test $tid: don't pass env, accept"
38 verbose "test $tid: pass single env, accept single env"
49 verbose "test $tid: pass multiple env, accept multiple env"
H A Dsftp-batch.sh4 tid="sftp batchfile"
37 verbose "$tid: good commands"
41 verbose "$tid: bad commands"
45 verbose "$tid: comments and blanks"
49 verbose "$tid: junk command"
H A Dbroken-pipe.sh4 tid="broken pipe test"
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/misc/
H A Dtst.roch.d50 (long long)curthread, pid, tid,
60 (long long) curthread, pid, tid,
68 (long long)curthread, pid, tid);
74 (long long)curthread, pid, tid, (int)arg1, (int)arg0);
80 (long long)curthread, pid, tid, arg0);
86 (long long) curthread, pid, tid, arg0);
H A Dtst.haslam.d50 @sys[tid] = sum(tid);
/freebsd-9.3-release/contrib/gcclibs/libgomp/config/linux/
H A Dlock.c102 int tid = tid_cache; local
103 if (__builtin_expect (tid == 0, 0))
104 tid_cache = tid = syscall (SYS_gettid);
105 return tid;
124 int otid, tid = gomp_tid (); local
128 otid = __sync_val_compare_and_swap (&lock->owner, 0, tid);
134 if (otid == tid)
159 int otid, tid = gomp_tid (); local
161 otid = __sync_val_compare_and_swap (&lock->owner, 0, tid);
167 if (otid == tid)
[all...]
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/docsExamples/
H A Drtime.d49 tid, timestamp - self->t);
/freebsd-9.3-release/lib/libthr/thread/
H A Dthr_affinity.c45 lwpid_t tid; local
54 tid = TID(td);
55 error = cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_TID, tid,
68 lwpid_t tid; local
77 tid = TID(td);
78 error = cpuset_getaffinity(CPU_LEVEL_WHICH, CPU_WHICH_TID, tid,
/freebsd-9.3-release/contrib/gdb/gdb/
H A Ds390-nat.c120 int tid = TIDGET (inferior_ptid); local
121 if (tid == 0)
122 tid = PIDGET (inferior_ptid); /* Not a threaded program. */
124 return tid;
130 fetch_regs (int tid) argument
138 if (ptrace (PTRACE_PEEKUSR_AREA, tid, (long) &parea) < 0)
147 store_regs (int tid, int regnum) argument
155 if (ptrace (PTRACE_PEEKUSR_AREA, tid, (long) &parea) < 0)
160 if (ptrace (PTRACE_POKEUSR_AREA, tid, (long) &parea) < 0)
167 fetch_fpregs (int tid) argument
184 store_fpregs(int tid, int regnum) argument
206 int tid = s390_inferior_tid (); local
222 int tid = s390_inferior_tid (); local
274 int tid = s390_inferior_tid (); local
[all...]
H A Dgnu-nat.h32 struct proc *inf_tid_to_thread (struct inf *inf, int tid);
42 int tid; /* The GDB pid (actually a thread id). */ member in struct:proc
76 #define proc_is_task(proc) ((proc)->tid == PROC_TID_TASK)
77 #define proc_is_thread(proc) ((proc)->tid != PROC_TID_TASK)
93 __proc_pid (__proc), __proc->tid, __proc , ##args); } while (0)
/freebsd-9.3-release/sys/dev/cxgbe/
H A Doffload.h34 #define INIT_ULPTX_WRH(w, wrlen, atomic, tid) do { \
37 V_FW_WR_FLOWID(tid)); \
41 #define INIT_ULPTX_WR(w, wrlen, atomic, tid) \
42 INIT_ULPTX_WRH(&((w)->wr), wrlen, atomic, tid)
44 #define INIT_TP_WR(w, tid) do { \
48 V_FW_WR_FLOWID(tid)); \
52 #define INIT_TP_WR_MIT_CPL(w, cpl, tid) do { \
53 INIT_TP_WR(w, tid); \
54 OPCODE_TID(w) = htonl(MK_OPCODE_TID(cpl, tid)); \
/freebsd-9.3-release/lib/libkse/test/
H A Dsigwait_d.c93 send_thread_signal (pthread_t tid, int signo) argument
95 if (pthread_kill (tid, signo) != 0) {
117 pthread_t tid; local
176 if (pthread_create (&tid, &pattr, sigwaiter, NULL) != 0) {
181 pthread_set_name_np (tid, "sigwaiter");
188 send_thread_signal (tid, SIGIO);
200 send_thread_signal (tid, SIGURG);
211 send_thread_signal (tid, SIGUSR1);
235 send_thread_signal (tid, SIGHUP);
277 send_thread_signal (tid, SIGUSR
[all...]
/freebsd-9.3-release/cddl/contrib/dtracetoolkit/Bin/
H A Dthreaded.d54 @sample[pid, execname] = lquantize(tid, 0, 128, 1);
/freebsd-9.3-release/cddl/contrib/dtracetoolkit/Proc/
H A Dthreaded.d54 @sample[pid, execname] = lquantize(tid, 0, 128, 1);
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/
H A Dtst.goodkey.d47 @counts[execname, pid, id, tid, arg0, vtimestamp ] = count();
/freebsd-9.3-release/contrib/ofed/management/opensm/complib/
H A Dcl_threadpool.c99 p_thread_pool->tid = calloc(count, sizeof(*p_thread_pool->tid));
100 if (!p_thread_pool->tid) {
108 if (pthread_create(&p_thread_pool->tid[i], NULL,
125 if (p_thread_pool->tid[i])
126 pthread_cancel(p_thread_pool->tid[i]);
129 if (p_thread_pool->tid[i])
130 pthread_join(p_thread_pool->tid[i], NULL);

Completed in 240 milliseconds

1234567891011>>