Home | History | Annotate | Download | only in runtime

Lines Matching refs:tt

49 		tt := &futexsleepTests[i]
50 tt.mtx = 0
51 tt.ch = make(chan *futexsleepTest, 1)
53 go func(tt *futexsleepTest) {
55 runtime.Futexsleep(&tt.mtx, 0, tt.ns)
57 tt.ch <- tt
59 }(tt)
64 case tt := <-futexsleepTests[beforeY2038].ch:
65 t.Errorf("futexsleep test %q finished early after %s", tt.msg, time.Since(start))
67 case tt := <-futexsleepTests[afterY2038].ch:
75 t.Errorf("futexsleep test %q finished early after %s", tt.msg, time.Since(start))
83 tt := &futexsleepTests[i]
84 atomic.StoreUint32(&tt.mtx, 1)
85 runtime.Futexwakeup(&tt.mtx, 1)