Searched defs:worker (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Main/src-server/
H A DClientWatcher.cpp98 worker,
151 * Thread worker function that watches the termination of all client processes
155 DECLCALLBACK(int) VirtualBox::ClientWatcher::worker(RTTHREAD /* thread */, void *pvUser) function in class:VirtualBox::ClientWatcher
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Dcltsrv.c146 PRThread *thread; /* this worker objects thread */
159 PRCList list; /* head of worker list */
169 CSPool_t pool; /* statistics on worker threads */
171 struct /* controlling worker counts */
645 CSWorker_t *worker = PR_NEWZAP(CSWorker_t); local
646 worker->server = server;
647 PR_INIT_CLIST(&worker->element);
648 worker->thread = PR_CreateThread(
649 PR_USER_THREAD, Worker, worker,
652 if (NULL == worker
671 CSWorker_t *worker = (CSWorker_t*)arg; local
856 CSWorker_t *worker = (CSWorker_t*)head; local
[all...]
H A Dprovider.c148 PRThread *thread; /* this worker objects thread */
161 PRCList list; /* head of worker list */
171 CSPool_t pool; /* statistics on worker threads */
173 struct /* controlling worker counts */
860 CSWorker_t *worker = PR_NEWZAP(CSWorker_t); local
861 worker->server = server;
862 PR_INIT_CLIST(&worker->element);
864 Worker, worker, DEFAULT_SERVER_PRIORITY, PR_UNJOINABLE_THREAD);
865 if (PR_FAILURE == rv) PR_DELETE(worker);
868 ("\tCreateWorker(0x%p): create new worker (
879 CSWorker_t *worker = (CSWorker_t*)arg; local
1063 CSWorker_t *worker = (CSWorker_t*)head; local
[all...]
/vbox/src/libs/xpcom18a4/ipc/ipcd/extensions/dconnect/src/
H A DipcDConnectService.cpp136 // Within this time all the worker threads must be terminated.
2996 DConnectWorker *worker = new DConnectWorker(this); local
2997 if (!worker)
2999 nsresult rv = worker->Init();
3005 if (!mWorkers.AppendElement(worker))
3009 delete worker;
3133 * So mDisconnect must be set here to avoid an immediate exit of the worker thread.
3137 // create a single worker thread
3163 // unavailale from other (non worker) threads.
3174 " => number of worker thread
3221 DConnectWorker *worker = NS_STATIC_CAST(DConnectWorker *, mWorkers[i]); local
[all...]

Completed in 84 milliseconds