POSIX Threads Extensions option group.
More...
|
| int | pthread_getname_np (pthread_t thread, char *name, size_t len) |
| | Get the name of a thread (GNU extension).
|
| |
| int | pthread_setname_np (pthread_t thread, const char *name) |
| | Set the name of a thread (GNU extension).
|
| |
| int | pthread_timedjoin_np (pthread_t thread, void **status, const struct timespec *abstime) |
| | Wait for a thread to terminate with an absolute timeout (GNU extension).
|
| |
| int | pthread_tryjoin_np (pthread_t thread, void **status) |
| | Try to join a thread without blocking (GNU extension).
|
| |
POSIX Threads Extensions option group.
◆ pthread_getname_np()
| int pthread_getname_np |
( |
pthread_t |
thread, |
|
|
char * |
name, |
|
|
size_t |
len |
|
) |
| |
◆ pthread_setname_np()
| int pthread_setname_np |
( |
pthread_t |
thread, |
|
|
const char * |
name |
|
) |
| |
◆ pthread_timedjoin_np()
| int pthread_timedjoin_np |
( |
pthread_t |
thread, |
|
|
void ** |
status, |
|
|
const struct timespec * |
abstime |
|
) |
| |
◆ pthread_tryjoin_np()
| int pthread_tryjoin_np |
( |
pthread_t |
thread, |
|
|
void ** |
status |
|
) |
| |