Lines Matching +full:deep +full:- +full:sleep

3  * Module Name: exsystem - Interface to OS services
11 * Some or all of this work - Copyright (c) 1999 - 2025, Intel Corp.
28 * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
104 * re-exports any such software from a foreign destination, Licensee shall
105 * ensure that the distribution and export/re-export of the software is in
108 * any of its subsidiaries will export/re-export any technical data, process,
130 * 3. Neither the names of the above-listed copyright holders nor the names
164 * PARAMETERS: Semaphore - Semaphore to wait on
165 * Timeout - Max time to wait
216 * PARAMETERS: Mutex - Mutex to wait on
217 * Timeout - Max time to wait
268 * PARAMETERS: HowLongUs - The amount of time to stall,
276 * should use Sleep() instead. We allow stalls up to 255 usec
321 * PARAMETERS: HowLongMs - The amount of time to sleep,
326 * DESCRIPTION: Sleep the running thread for specified amount of time.
337 /* Since this thread will sleep, we must release the interpreter */ in AcpiExSystemDoSleep()
343 * accidental deep sleeps, limit the sleep time to something reasonable. in AcpiExSystemDoSleep()
363 * PARAMETERS: ObjDesc - The object descriptor for this op
384 Status = AcpiOsSignalSemaphore (ObjDesc->Event.OsSemaphore, 1); in AcpiExSystemSignalEvent()
395 * PARAMETERS: TimeDesc - The 'time to delay' object descriptor
396 * ObjDesc - The object descriptor for this op
419 Status = AcpiExSystemWaitSemaphore (ObjDesc->Event.OsSemaphore, in AcpiExSystemWaitEvent()
420 (UINT16) TimeDesc->Integer.Value); in AcpiExSystemWaitEvent()
431 * PARAMETERS: ObjDesc - The object descriptor for this op
457 (void) AcpiOsDeleteSemaphore (ObjDesc->Event.OsSemaphore); in AcpiExSystemResetEvent()
458 ObjDesc->Event.OsSemaphore = TempSemaphore; in AcpiExSystemResetEvent()