HomeSort by relevance Sort by last modified time
    Searched defs:Thread (Results 1 - 11 of 11) sorted by null

  /onnv/onnv-gate/usr/src/cmd/lms/SyncLib/Include/
Thread.h 32 // Thread.h
34 // This file contains an OS independent interface for thread manipulation
35 // A Thread class is defined for easy usage.
39 // Option 1: Construct an instance of the "Thread" class with an external
40 // callback function. When calling the "start" method, the thread will be
43 // Option 2: Subclass the "Thread" class and reimplement the virtual "run"
44 // method. When calling the "start" method, the thread will be started
48 // Calling the "start" method will start the new thread, which will call the
67 class Thread
72 Thread(CallbackFunction func = NULL, void *param = NULL)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/lms/SyncLib/src/
ThreadUnix.cpp 34 // This file contains the linux implementation of the Thread class
39 #include "Thread.h"
60 Thread *t = (Thread*)thread_p;
73 Thread::Thread(CallbackFunction func_p, void* param_p)
84 Thread::~Thread()
91 unsigned long Thread::currentThread()
96 bool Thread::wait(unsigned long msecs_p) cons
    [all...]
  /onnv/onnv-gate/usr/src/uts/intel/io/acpica/disassembler/
dmobject.c 158 ACPI_THREAD_STATE *Thread;
179 * If there is no Thread, we are not actually executing a method.
183 Thread = WalkState->Thread;
184 if (!Thread)
198 NextWalkState = Thread->WalkStateList;
  /onnv/onnv-gate/usr/src/uts/intel/io/acpica/executer/
exmutex.c 132 ACPI_THREAD_STATE *Thread);
151 ACPI_THREAD_STATE *Thread = ObjDesc->Mutex.OwnerThread;
154 if (!Thread)
181 Thread->AcquiredMutexList = ObjDesc->Mutex.Next;
191 * Thread - Current executing thread object
202 ACPI_THREAD_STATE *Thread)
207 ListHead = Thread->AcquiredMutexList;
223 Thread->AcquiredMutexList = ObjDesc;
233 * Thread - Current thread stat
    [all...]
  /onnv/onnv-gate/usr/src/uts/intel/io/acpica/parser/
psparse.c 531 ACPI_THREAD_STATE *Thread;
548 /* Create and initialize a new thread state */
550 Thread = AcpiUtCreateThreadState ();
551 if (!Thread)
564 WalkState->Thread = Thread;
572 WalkState->Thread->CurrentSyncLevel = WalkState->MethodDesc->Method.SyncLevel;
575 AcpiDsPushWalkState (WalkState, Thread);
581 AcpiGbl_CurrentWalkList = Thread;
611 Status = AcpiDsCallControlMethod (Thread, WalkState, NULL)
    [all...]
  /onnv/onnv-gate/usr/src/lib/libsqlite/src/
test4.c 29 ** Each thread is controlled by an instance of the following
32 typedef struct Thread Thread;
33 struct Thread {
35 ** to the thread. */
37 void (*xOp)(Thread*); /* next operation to do */
40 int busy; /* True if this thread is in use */
42 /* The next group of fields are writable by the thread but read-only to the
60 static Thread threadset[N_THREAD];
64 ** The main loop for a thread. Threads use busy waiting.
    [all...]
  /onnv/onnv-gate/usr/src/cmd/krb5/kadmin/gui/visualrt/sunsoft/jws/visual/rt/base/
Util.java 644 Thread.yield();
  /onnv/onnv-gate/usr/src/cmd/wbem/provider/com/sun/wbem/solarisprovider/srm/
SRMDataReader.java 184 * This method is called by the worker thread.
202 * This method is called by the worker thread.
228 * This method is called by the worker thread.
252 * This method is called by the worker thread.
268 Thread.sleep(RDS_RETRY_SLEEPTIME, 0);
284 * This method is called by the worker thread.
606 * This thread carries out the public methods start, update,
607 * alive, close and shutdown in its own execution thread. The caller
610 class SRMWorker extends Thread {
628 // thread is executing its run() method
    [all...]
  /onnv/onnv-gate/usr/src/uts/intel/sys/acpi/
acstruct.h 200 ACPI_THREAD_STATE *Thread;
aclocal.h 210 /* This Thread ID means that the mutex is not in use (unlocked) */
736 * Thread state - one per thread across multiple walk states. Multiple walk
743 struct acpi_walk_state *WalkStateList; /* Head of list of WalkStates for this thread */
745 ACPI_THREAD_ID ThreadId; /* Running thread ID */
795 ACPI_THREAD_STATE Thread;
    [all...]
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/
perl.h     [all...]

Completed in 2820 milliseconds