OSResumeThread

Syntax

#include <revolution/os.h>

s32 OSResumeThread(OSThread* thread);

Arguments

thread Pointer to thread to resume.

Return Values

The previous suspend counter of the thread. The thread is suspended if the counter is greater than zero.

Description

Places the specified thread in executable status (decrement).

The operating system maintains a counter of the number of times the OSSuspendThread function has been called. Calling the OSResumeThread function will decrement that counter. While the counter is greater than zero, the thread will not be scheduled to execute.

See Also

Thread Functions, Thread Synchronization Functions”, OSIsThreadSuspended, OSSuspendThread

Revision History

2006/03/01 Initial version.


CONFIDENTIAL