Searched defs:Thread (Results 1 - 10 of 10) sorted by relevance

/illumos-gate/usr/src/cmd/lms/SyncLib/Include/
H A DThread.h32 // Thread.h
35 // A Thread class is defined for easy usage.
39 // Option 1: Construct an instance of the "Thread" class with an external
43 // Option 2: Subclass the "Thread" class and reimplement the virtual "run"
67 class Thread class
72 Thread(CallbackFunction func = NULL, void *param = NULL);
73 Thread(const Thread &rhs);
74 virtual ~Thread();
91 Thread
[all...]
/illumos-gate/usr/src/uts/intel/io/acpica/dispatcher/
H A Ddsdebug.c138 ACPI_THREAD_STATE *Thread; local
163 * If there is no Thread, we are not actually executing a method.
167 Thread = WalkState->Thread;
168 if (!Thread)
185 NextWalkState = Thread->WalkStateList;
H A Ddsmethod.c403 (WalkState->Thread->CurrentSyncLevel >
410 WalkState->Thread->CurrentSyncLevel));
421 (WalkState->Thread->ThreadId !=
440 WalkState->Thread->CurrentSyncLevel;
443 WalkState->Thread->ThreadId;
455 WalkState->Thread->CurrentSyncLevel =
512 * PARAMETERS: Thread - Info for this thread
524 ACPI_THREAD_STATE *Thread,
569 ObjDesc->Method.OwnerId, NULL, ObjDesc, Thread);
791 WalkState->Thread
523 AcpiDsCallControlMethod( ACPI_THREAD_STATE *Thread, ACPI_WALK_STATE *ThisWalkState, ACPI_PARSE_OBJECT *Op) argument
[all...]
H A Ddswstate.c484 * PARAMETERS: Thread - Get current active state for this Thread
495 ACPI_THREAD_STATE *Thread)
500 if (!Thread)
506 Thread->WalkStateList));
508 return (Thread->WalkStateList);
517 * Thread - Thread state object
521 * DESCRIPTION: Place the Thread state at the head of the state list
528 ACPI_THREAD_STATE *Thread)
494 AcpiDsGetCurrentWalkState( ACPI_THREAD_STATE *Thread) argument
526 AcpiDsPushWalkState( ACPI_WALK_STATE *WalkState, ACPI_THREAD_STATE *Thread) argument
555 AcpiDsPopWalkState( ACPI_THREAD_STATE *Thread) argument
600 AcpiDsCreateWalkState( ACPI_OWNER_ID OwnerId, ACPI_PARSE_OBJECT *Origin, ACPI_OPERAND_OBJECT *MethodDesc, ACPI_THREAD_STATE *Thread) argument
[all...]
/illumos-gate/usr/src/cmd/lms/SyncLib/src/
H A DThreadUnix.cpp34 // 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) function in class:Thread
84 Thread::~Thread()
91 unsigned long Thread::currentThread()
96 bool Thread
[all...]
/illumos-gate/usr/src/uts/intel/io/acpica/executer/
H A Dexmutex.c57 ACPI_THREAD_STATE *Thread);
76 ACPI_THREAD_STATE *Thread = ObjDesc->Mutex.OwnerThread; local
79 if (!Thread)
106 Thread->AcquiredMutexList = ObjDesc->Mutex.Next;
116 * Thread - Current executing thread object
127 ACPI_THREAD_STATE *Thread)
132 ListHead = Thread->AcquiredMutexList;
148 Thread->AcquiredMutexList = ObjDesc;
266 if (!WalkState->Thread)
278 if (WalkState->Thread
125 AcpiExLinkMutex( ACPI_OPERAND_OBJECT *ObjDesc, ACPI_THREAD_STATE *Thread) argument
536 AcpiExReleaseAllMutexes( ACPI_THREAD_STATE *Thread) argument
[all...]
/illumos-gate/usr/src/uts/intel/io/acpica/parser/
H A Dpsparse.c456 ACPI_THREAD_STATE *Thread; local
475 Thread = AcpiUtCreateThreadState ();
476 if (!Thread)
489 WalkState->Thread = Thread;
497 WalkState->Thread->CurrentSyncLevel =
501 AcpiDsPushWalkState (WalkState, Thread);
507 AcpiGbl_CurrentWalkList = Thread;
537 Status = AcpiDsCallControlMethod (Thread, WalkState, NULL);
547 WalkState = AcpiDsGetCurrentWalkState (Thread);
[all...]
/illumos-gate/usr/src/lib/libsqlite/src/
H A Dtest4.c32 typedef struct Thread Thread; typedef in typeref:struct:Thread
33 struct Thread { struct
37 void (*xOp)(Thread*); /* next operation to do */
60 static Thread threadset[N_THREAD];
67 Thread *p = (Thread*)pArg;
159 static void thread_wait(Thread *p){
194 static void stop_thread(Thread *p){
440 static void do_compile(Thread *
[all...]
/illumos-gate/usr/src/uts/intel/sys/acpi/
H A Dacstruct.h124 ACPI_THREAD_STATE *Thread; member in struct:acpi_walk_state
H A Daclocal.h117 /* This Thread ID means that the mutex is not in use (unlocked) */
121 /* This Thread ID means an invalid thread ID */
755 * Thread state - one per thread across multiple walk states. Multiple walk
825 ACPI_THREAD_STATE Thread; member in union:acpi_generic_state

Completed in 76 milliseconds