Temporarily suspends processing of another thread within the current process until DosResumeThread is issued.

#define INCL_DOSPROCESS
#include <os2.h>

TID       tid;   /*  Thread identifier of the thread to be suspended. */
APIRET    ulrc;  /*  Return Code. */

ulrc = DosSuspendThread(tid);


[Back] [Next]