next up previous contents index
Next: 18.3.39 pthread_self: Return the Up: 18.3 POSIX Threads Reference Previous: 18.3.37 pthread_mutex_unlock: Unlock a

18.3.38 pthread_resume: Resume a suspended thread

 

SYNOPSIS

#include <oskit/threads/pthread.h>

int pthread_resume(pthread_t tid);

DESCRIPTION

Resume a thread that has been suspended with pthread_suspend.

PARAMETERS

tid
The thread identifier of the thread to be resumed.

RETURNS

Returns zero on success. EINVAL if tid specifies an invalid thread.

RELATED INFORMATION

pthread_create, pthread_suspend



University of Utah Flux Research Group