vote up 8 vote down star

I have used fork() in C to start another process. How do I start a new thread?

flag

7 Answers

vote up 12 vote down check

Since you mentioned fork() I assume you're on a Unix-like system, in which case POSIX threads (usually referred to as pthreads) are what you want to use.

Specifically, pthread_create() is the function you need to create a new thread. Its arguments are:

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

The first argument is the returned pointer to the thread id. The second argument is the thread arguments, which can be NULL unless you want to start the thread with a specific priority. The third argument is the function executed by the thread. The fourth argument is the single argument passed to the thread function when it is executed.

link|flag
vote up 2 vote down

Threads are not part of the C standard, so the only way to use threads is to use some library (eg: POSIX threads in Unix/Linux, _beginthread/_beginthreadex if you want to use the C-runtime from that thread or just CreateThread Win32 API)

link|flag
vote up 7 vote down

AFAIK, ANSI C doesn't define threading, but there are various libraries available.

If you are running on Windows, link to msvcrt and use _beginthread or _beginthreadex.

If you are running on other platforms, check out the pthreads library (I'm sure there are others as well).

link|flag
vote up 4 vote down

It depends on the platform. Here's how to do it on Windows:

http://msdn.microsoft.com/en-us/library/ms682453.aspx

link|flag
As explained in the CreateThread documentation you linked to, if the program uses the C runtime library, _beginthreadex should be used, not CreateThread. – ChrisN Sep 11 '08 at 15:24
Thanks, I hadn't noticed that. How do you know if you're using the CRT? I thought everything used it. – Eric Z Beard Sep 11 '08 at 16:19
vote up 0 vote down

Check out the pthread (POSIX thread) library.

link|flag
vote up 0 vote down

It's not pretty, but check out this site that explains how to use the pthread library.

link|flag
vote up 1 vote down

pthreads is a good start, look here

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.