Home
last modified time | relevance | path

Searched refs:thread1 (Results 1 – 10 of 10) sorted by relevance

/openbsd-src/regress/sys/kern/fork-exit/
H A DMakefile42 REGRESS_TARGETS += run-fork1-thread1
43 run-fork1-thread1: ${PROG}
67 REGRESS_TARGETS += run-fork1-thread1-heap
68 run-fork1-thread1-heap: ${PROG}
87 REGRESS_TARGETS += run-fork1-thread1-stack
88 run-fork1-thread1-stack: ${PROG}
/openbsd-src/gnu/usr.bin/perl/dist/threads-shared/t/
H A Dhv_simple.t43 threads->create(sub { $hash{"bar"} = "thread1"})->join();
44 threads->create(sub { ok(3,$hash{"bar"} eq "thread1", "Check thread get and write")})->join();
47 ok(4, $foo eq "thread1", "Check delete, want 'thread1' got '$foo'");
H A Dav_simple.t52 threads->create(sub { $foo[0] = "thread1" })->join;
53 ok(10, $foo[0] eq "thread1", "Check that a value can be changed in another thread");
/openbsd-src/regress/lib/libpthread/pthread_kill/
H A Dpthread_kill.c57 pthread_t thread1; in main() local
65 CHECKr(pthread_create(&thread1, NULL, thread, "T1")); in main()
75 CHECKr(pthread_kill(thread1, SIGUSR1)); in main()
/openbsd-src/gnu/usr.bin/binutils/gdb/testsuite/gdb.threads/
H A Dstep.c11 void thread1 ();
88 if (pthread_create (&tid1, attr1, thread1, &count1) == -1) in main()
115 thread1 (count) in thread1() function
H A Dpthreads.c73 thread1 (void *arg) in thread1() function
146 if (pthread_create (&tid1, PTHREAD_CREATE_ARG2(attr), thread1, (void *) 0xfeedface))
/openbsd-src/gnu/usr.bin/perl/dist/threads/t/
H A Dbasic.t65 my $thread1 = threads->create('test4');
66 $thread1->detach();
67 while ($thread1->is_running()) {
H A Djoin.t105 $foo = "thread1";
/openbsd-src/gnu/usr.bin/cvs/diff/
H A Ddiff3.c265 struct diff_block *thread0, *thread1, *last_block; local
461 thread1 = process_diff (file[rev_mapping[FILE1]], commonname, &last_block,
477 diff3 = make_3way_diff (thread0, thread1);
644 make_3way_diff (thread0, thread1) in make_3way_diff() argument
645 struct diff_block *thread0, *thread1; in make_3way_diff()
706 current[0] = thread0; current[1] = thread1;
/openbsd-src/gnu/usr.bin/binutils/gdb/testsuite/
H A DChangeLog4316 * gdb.threads/pthreads.c (thread1): Add a return statement.