- 论坛徽章:
- 0
|
NAME
pthread_create - thread creation
SYNOPSIS
#include <pthread.h>
int pthread_create(pthread_t *restrict thread,
const pthread_attr_t *restrict attr,
void *(*start_routine)(void*), void *restrict arg);
DESCRIPTION
The pthread_create() function shall create a new thread, with attributes specified by attr,
within a process. If attr is NULL, the default attributes shall be used. If the attributes
specified by attr are modified later, the thread's attributes shall not be affected. Upon suc-
cessful completion, pthread_create() shall store the ID of the created thread in the location
referenced by thread.
The thread is created executing start_routine with arg as its sole argument. If the start_rou-
tine returns, the effect shall be as if there was an implicit call to pthread_exit() using the
return value of start_routine as the exit status. Note that the thread in which main() was
originally invoked differs from this. When it returns from main(), the effect shall be as if
there was an implicit call to exit() using the return value of main() as the exit status. |
|