thread parameters c

Solutions on MaxInterview for thread parameters c by the best coders in the world

showing results for - "thread parameters c"
Jonas
24 Jan 2019
1We use "pthread_create" to create a thread, thread id is the first 
2argument, NULL is the second argument(which should be some attribute,
3but we may not use it), the third argument is the function, then the 
4last argument is what we want to pass to the new thread.