th 224 plugin/timer/timer_create.cpp pthread_t th;
th 225 plugin/timer/timer_create.cpp (void) pthread_create (&th, &tk->attr, timer_sigev_thread, td);
th 260 plugin/timer/timer_create.cpp pthread_t th;
th 261 plugin/timer/timer_create.cpp int res = pthread_create (&th, &attr, timer_helper_thread, NULL);
th 72 threadlist.cpp static int Thread_UpdateState(Thread *th,
th 75 threadlist.cpp static void Thread_SaveSigState(Thread *th);
th 76 threadlist.cpp static void Thread_RestoreSigState(Thread *th);
th 180 threadlist.cpp void ThreadList::initThread(Thread* th, int (*fn)(void*), void *arg, int flags,
th 184 threadlist.cpp th->fn = fn;
th 185 threadlist.cpp th->arg = arg;
th 186 threadlist.cpp th->flags = flags;
th 187 threadlist.cpp th->ptid = ptid;
th 188 threadlist.cpp th->ctid = ctid;
th 189 threadlist.cpp th->next = NULL;
th 190 threadlist.cpp th->state = ST_RUNNING;
th 222 threadlist.cpp void ThreadList::updateTid(Thread *th)
th 225 threadlist.cpp curThread = th;
th 226 threadlist.cpp th->tid = THREAD_REAL_TID();
th 227 threadlist.cpp th->virtual_tid = dmtcp_gettid();
th 228 threadlist.cpp JTRACE("starting thread") (th->tid) (th->virtual_tid);
th 743 threadlist.cpp int Thread_UpdateState(Thread *th, ThreadState newval, ThreadState oldval)
th 747 threadlist.cpp if (oldval == th->state) {;
th 748 threadlist.cpp th->state = newval;
th 760 threadlist.cpp void Thread_SaveSigState(Thread *th)
th 763 threadlist.cpp JASSERT(pthread_sigmask (SIG_SETMASK, NULL, &th->sigblockmask) == 0);
th 766 threadlist.cpp sigpending(&th->sigpending);
th 774 threadlist.cpp void Thread_RestoreSigState (Thread *th)
th 777 threadlist.cpp JTRACE("restoring signal mask for thread") (th->virtual_tid);
th 778 threadlist.cpp JASSERT(pthread_sigmask (SIG_SETMASK, &th->sigblockmask, NULL) == 0);
th 783 threadlist.cpp if (sigismember(&th->sigpending, i) == 1 &&
th 784 threadlist.cpp sigismember(&th->sigblockmask, i) == 1 &&
th 38 threadlist.h void initThread(Thread* th, int (*fn)(void*), void *arg, int flags,