Definition:
#include "multithread.h"
Usage example:
static int
map_rv(int rv)
{
switch(rv)
{
case WAIT_OBJECT_0:
case WAIT_ABANDONED:
return(MULTI_OK);
case WAIT_TIMEOUT:
return(MULTI_TIMEOUT);
case WAIT_FAILED:
return(MULTI_ERR);
default:
assert(0);
}
assert(0);
return(0);
}
Constant used for thread timeout return value.
Previous: MULTI_OK
Next: M_CONNECT
Table of Contents
(Routines,
Structures,
Data Cells,
Constants)