HomeSort by: relevance | last modified time | path
    Searched defs:worker (Results 1 - 25 of 64) sorted by relevancy

1 2 3

  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
premature-dummy-frame-removal.c 24 worker (void) function
35 worker ();
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
premature-dummy-frame-removal.c 24 worker (void) function
35 worker ();
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.mi/
non-stop.c 31 worker (void *arg) function
61 if (pthread_create (&tid, NULL, worker, (void *) id2))
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.server/
stop-reply-no-thread-multi.c 44 worker (void *data) function
65 if (pthread_create (&thr, NULL, worker, NULL) != 0)
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.mi/
non-stop.c 31 worker (void *arg) function
61 if (pthread_create (&tid, NULL, worker, (void *) id2))
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.server/
stop-reply-no-thread-multi.c 44 worker (void *data) function
65 if (pthread_create (&thr, NULL, worker, NULL) != 0)
  /src/external/mit/libuv/dist/test/
test-semaphore.c 36 static void worker(void* arg) { function
58 ASSERT_OK(uv_thread_create(&thread, worker, &wc));
83 ASSERT_OK(uv_thread_create(&thread, worker, &wc));
test-barrier.c 37 static void worker(void* arg) { function
57 ASSERT_OK(uv_thread_create(&thread, worker, &wc));
80 ASSERT_OK(uv_thread_create(&thread, worker, &wc));
102 ASSERT_OK(uv_thread_create(&thread, worker, &wc));
benchmark-async.c 34 uv_async_t worker_async; /* wake up worker */
67 static void worker(void* arg) { function
92 ASSERT(0 == uv_thread_create(&ctx->thread, worker, ctx));
test-condvar.c 74 static void worker(void* arg) { function
133 ASSERT_OK(uv_thread_create(&thread, worker, &wc));
152 ASSERT_OK(uv_thread_create(&thread, worker, &wc));
197 ASSERT_OK(uv_thread_create(&thread, worker, &wc));
216 ASSERT_OK(uv_thread_create(&thread, worker, &wc));
test-thread-name.c 30 uv_sem_t worker; member in struct:semaphores
48 r = uv_thread_setname("worker-thread");
51 uv_sem_post(&sem->worker);
56 ASSERT_STR_EQ(thread_name, "worker-thread");
77 ASSERT_OK(uv_sem_init(&sem.worker, 0));
126 uv_sem_wait(&sem.worker);
131 ASSERT_STR_EQ(tn, "worker-thread");
138 uv_sem_destroy(&sem.worker);
164 ASSERT_STR_EQ(tn, "libuv-worker");
  /src/sys/external/bsd/drm2/dist/drm/i915/gt/uc/
intel_guc_ct.h 60 struct work_struct worker; /* handler for incoming requests */ member in struct:intel_guc_ct::__anon5003
  /src/sys/external/bsd/drm2/dist/include/drm/
drm_flip_work.h 72 * @worker: worker which calls @func
80 struct work_struct worker; member in struct:drm_flip_work
  /src/usr.sbin/npf/npftest/libnpftest/
npf_perf_test.c 28 worker(void *arg) function
71 KTHREAD_MPSAFE, NULL, worker, (void *)(uintptr_t)i,
  /src/tests/rump/rumpkern/h_client/
h_reconcli.c 52 worker(void *arg) function
106 pthread_create(&w1, NULL, worker, NULL);
107 pthread_create(&w2, NULL, worker, NULL);
108 pthread_create(&w3, NULL, worker, NULL);
109 pthread_create(&w4, NULL, worker, NULL);
  /src/external/bsd/zstd/dist/lib/common/
threading.c 45 static unsigned __stdcall worker(void *arg) function
95 *thread = (HANDLE)_beginthreadex(NULL, 0, worker, &thread_param, 0, NULL);
  /src/external/mpl/bind/dist/lib/isc/netmgr/
timer.c 33 isc__networker_t *worker = NULL; local
42 worker = sock->worker;
45 timer = isc_mem_get(worker->mctx, sizeof(*timer));
50 r = uv_timer_init(&worker->loop->loop, &timer->timer);
70 isc_mem_t *mctx = timer->handle->sock->worker->mctx;
  /src/external/mit/libuv/dist/docs/code/multi-echo-server/
main.c 42 struct child_worker *worker = &workers[round_robin_counter]; local
43 uv_write2(write_req, (uv_stream_t*) &worker->pipe, &dummy_buf, 1, (uv_stream_t*) client, NULL);
54 strcpy(worker_path + (strlen(worker_path) - strlen("multi-echo-server")), "worker");
55 fprintf(stderr, "Worker path: %s\n", worker_path);
75 struct child_worker *worker = &workers[cpu_count]; local
76 uv_pipe_init(loop, &worker->pipe, 1);
80 child_stdio[0].data.stream = (uv_stream_t*) &worker->pipe;
85 worker->options.stdio = child_stdio;
86 worker->options.stdio_count = 3;
88 worker->options.exit_cb = close_process_handle
    [all...]
  /src/sys/net/npf/
npf_worker.c 53 lwp_t * worker[]; member in struct:npf_worker
63 #define WFLAG_INITED 0x02 // worker setup the instance
72 const size_t len = offsetof(npf_workerinfo_t, worker[nworkers]);
91 NULL, npf_worker, winfo, &winfo->worker[i], "npfgc%u", i)) {
118 lwp_t *worker; local
120 if ((worker = winfo->worker[i]) != NULL) {
121 kthread_join(worker);
127 kmem_free(winfo, offsetof(npf_workerinfo_t, worker[nworkers]));
162 * npf_worker_enlist: add the NPF instance for worker(s) to process
    [all...]
  /src/external/bsd/iscsi/dist/include/
target.h 81 iscsi_worker_t worker; member in struct:target_session_t
  /src/external/bsd/unbound/dist/daemon/
worker.h 2 * daemon/worker.h - worker that handles a pending list of requests.
39 * This file describes the worker structure that holds a list of
46 #include "libunbound/worker.h"
66 /** worker commands */
68 /** make the worker quit */
80 /** for fast-reload, poll to make sure worker has released data */
88 struct worker { struct
99 /** pipe, for commands for this worker */
101 /** the event base this worker works with *
    [all...]
daemon.c 70 #include "daemon/worker.h"
187 * @param wrk: worker that handles signals.
190 signal_handling_playback(struct worker* wrk)
451 daemon->env->worker = NULL;
467 daemon->env->worker = NULL;
512 * Clear and delete per-worker alloc caches, and free memory maintained in
536 * Allocate empty worker structures. With backptr and thread-number,
573 daemon->workers = (struct worker**)calloc((size_t)daemon->num,
574 sizeof(struct worker*));
591 fatal_exit("could not create worker");
642 struct worker* worker = (struct worker*)arg; local
    [all...]
  /src/external/gpl3/gdb/dist/gdb/python/
py-xmethods.c 40 python_xmethod_worker (PyObject *worker, PyObject *this_type);
56 result type, if the get_result_type operation is not provided by WORKER
257 struct xmethod_worker *worker; local
270 worker = new python_xmethod_worker (py_worker.get (),
273 dm_vec->emplace_back (worker);
278 struct xmethod_worker *worker; local
280 worker = new python_xmethod_worker (match_result.get (),
282 dm_vec->emplace_back (worker);
362 "method of a debug method worker object is "
381 "of an xmethod worker object is not a gdb.Type
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/python/
py-xmethods.c 40 python_xmethod_worker (PyObject *worker, PyObject *this_type);
56 result type, if the get_result_type operation is not provided by WORKER
257 struct xmethod_worker *worker; local
270 worker = new python_xmethod_worker (py_worker.get (),
273 dm_vec->emplace_back (worker);
278 struct xmethod_worker *worker; local
280 worker = new python_xmethod_worker (match_result.get (),
282 dm_vec->emplace_back (worker);
362 "method of a debug method worker object is "
381 "of an xmethod worker object is not a gdb.Type
    [all...]
  /src/usr.sbin/nfsd/
nfsd.c 123 worker(void *dummy) function
530 error = pthread_create(&workers[i], NULL, worker, NULL);

Completed in 43 milliseconds

1 2 3