Home
last modified time | relevance | path

Searched refs:threaded (Results 1 – 25 of 291) sorted by relevance

12345678910>>...12

/third_party/skia/third_party/externals/expat/expat/win32/
DREADME.txt34 single threaded or multithreaded run-time library,
35 or using the multi-threaded run-time Dll. That is,
42 with the multi-threaded run-time library.
48 Versions that are statically linking with the multi-threaded run-time library
54 Multi-threaded: libexpat(w)MT.lib
55 Multi-threaded Dll: libexpat(w)MD.lib
/third_party/libdrm/tests/nouveau/
Dmeson.build21 threaded = executable( variable
22 'threaded',
23 files('threaded.c'),
30 test('threaded', threaded) test
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_sigmask/
Dcoverage.txt3 multi-threaded process. The tests in this section are similar in n nature to the tests for the
4 sigprocmask() function, but calls will be made from threads that belong to multi-threaded processes
5 instead of single-threaded processes.
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/sem_getvalue/
Dstress.c84 static void *threaded(void *arg) in threaded() function
163 ret = pthread_create(&child1, NULL, threaded, named); in main()
169 ret = pthread_create(&child2, NULL, threaded, &unnamed); in main()
/third_party/curl/docs/libcurl/
Dlibcurl-thread.md39 be safely used in multi-threaded applications provided that support for the
46 without using either the c-ares or threaded resolver backends. On systems that
52 libcurl with c-ares or threaded-resolver support. c-ares is a library that
54 function properly multi-threaded unless the CURLOPT_NOSIGNAL(3) option
60 threaded situation as there is a race condition where libcurl risks restoring
/third_party/skia/third_party/externals/swiftshader/third_party/marl/docs/
Dscheduler.md16 - [Single-Threaded-Workers](#single-threaded-workers)
17 - [Multi-Threaded-Workers](#multi-threaded-workers)
35threaded-workers) for the calling thread. This worker is used for scheduling tasks when there are …
85 …0`), then the task is queued on to the [Single-Threaded-Worker](#single-threaded-workers) for the …
86threaded-workers) is picked. If any workers have entered a [spin-for-work](#marlschedulerworkerspi…
90 …. `run()` is called by the start of each [Multi-Threaded-Worker](#multi-threaded-workers) thread, …
92 … is shared by both the [Single-Threaded](#single-threaded-workers) and [Multi-Threaded](#multi-thr…
130 If the worker is a [Multi-Threaded-Worker](#multi-threaded-workers), `waitForWork()` begins by ente…
189 A single-threaded-worker (STW) is created for each thread that is bound with a call to `marl::Sched…
/third_party/curl/tests/data/
Dtest302618 # require the threaded resolver only because it means pthreads might
22 threaded-resolver
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_exit/
D1-2.c94 static void *threaded(void *arg PTS_ATTRIBUTE_UNUSED) in threaded() function
123 pthread_create(&child, &scenarii[i].ta, threaded, in main()
D4-1.c101 static void *threaded(void *arg PTS_ATTRIBUTE_UNUSED) in threaded() function
140 pthread_create(&child, &scenarii[i].ta, threaded, in main()
D2-2.c105 static void *threaded(void *arg PTS_ATTRIBUTE_UNUSED) in threaded() function
146 pthread_create(&child, &scenarii[i].ta, threaded, in main()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_getvalue/
D2-2.c80 static void *threaded(void *arg) in threaded() function
113 ret = pthread_create(&th, NULL, threaded, &sem); in main()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_kill/
D1-2.c96 static void *threaded(void *arg PTS_ATTRIBUTE_UNUSED) in threaded() function
135 ret = pthread_create(&ch, NULL, threaded, NULL); in main()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_unlink/
D7-1.c82 static void *threaded(void *arg) in threaded() function
121 ret = pthread_create(&thread, NULL, threaded, sem); in main()
D9-1.c87 static void *threaded(void *arg) in threaded() function
128 ret = pthread_create(&child, NULL, threaded, sem); in main()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_once/
D1-3.c102 static void *threaded(void *arg) in threaded() function
132 ret = pthread_create(&th[i], NULL, threaded, &myctl); in main()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_unlock/
D5-1.c82 static void *threaded(void *arg PTS_ATTRIBUTE_UNUSED) in threaded() function
143 ret = pthread_create(&th, NULL, threaded, NULL); in main()
/third_party/ltp/testcases/kernel/syscalls/futex/
Dfutex_wait03.c26 static void *threaded(void *arg) in threaded() function
46 SAFE_PTHREAD_CREATE(&t, NULL, threaded, (void*)pid); in run()
Dfutex_waitv02.c53 static void *threaded(LTP_ATTRIBUTE_UNUSED void *arg) in threaded() function
69 SAFE_PTHREAD_CREATE(&t, NULL, threaded, NULL); in run()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/fork/
D21-1.c51 static void *threaded(void *arg) in threaded() function
87 ret = pthread_create(&th, NULL, threaded, &ctl); in main()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigwait/
D6-1.c88 static void *threaded(void *arg PTS_ATTRIBUTE_UNUSED) in threaded() function
139 ret = pthread_create(&ch[i], NULL, threaded, NULL); in main()
D6-2.c88 static void *threaded(void *arg PTS_ATTRIBUTE_UNUSED) in threaded() function
141 ret = pthread_create(&ch[i], NULL, threaded, NULL); in main()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_setschedparam/
D4-1.c110 static void *threaded(void *arg PTS_ATTRIBUTE_UNUSED) in threaded() function
164 ret = pthread_create(&child, NULL, threaded, NULL); in main()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_atfork/
D3-2.c99 static void *threaded(void *arg PTS_ATTRIBUTE_UNUSED) in threaded() function
176 ret = pthread_create(&ch, NULL, threaded, NULL); in main()
D1-2.c110 static void *threaded(void *arg PTS_ATTRIBUTE_UNUSED) in threaded() function
189 ret = pthread_create(&ch, NULL, threaded, NULL); in main()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_detach/
D1-2.c96 static void *threaded(void *arg) in threaded() function
149 pthread_create(&child, &scenarii[sc].ta, threaded, in main()

12345678910>>...12