Answers for "pthread _create()"

C
1

pthread_create

#include <pthread.h>

       int pthread_create(pthread_t *thread, const pthread_attr_t *attr,
                          void *(*start_routine) (void *), void *arg);

       Compile and link with -pthread.
Posted by: Guest on November-09-2020

Code answers related to "C"

Browse Popular Code Answers by Language