[Previous]
[Contents]
[Next]

_endthread()

end a thread of execution

Synopsis:

#include <process.h>
void _endthread(void);

Description:

The _endthread() function is used to terminate a thread created by _beginthread(). It uses the appropriate system call to end the current thread of execution.

Examples:

See _beginthread().

Classification:

WATCOM

Safety:
Interrupt handler No
Signal handler No
Thread Yes

See also:

_beginthread(), _threadid


[Previous]
[Contents]
[Next]