Home | History | Annotate | Download | only in rtl

Lines Matching defs:uid

202 int ThreadCreate(ThreadState *thr, uptr pc, uptr uid, bool detached) {
207 int tid = ctx->thread_registry->CreateThread(uid, detached, thr->tid, &args);
208 DPrintf("#%d: ThreadCreate tid=%d uid=%zu\n", thr->tid, tid, uid);
258 uptr uid = (uptr)arg;
259 if (tctx->user_id == uid && tctx->status != ThreadStatusInvalid) {
266 int ThreadTid(ThreadState *thr, uptr pc, uptr uid) {
269 int res = ctx->thread_registry->FindThread(FindThreadByUid, (void*)uid);
270 DPrintf("#%d: ThreadTid uid=%zu tid=%d\n", thr->tid, uid, res);