Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to know the difference between a thread entry function:

void* thread_function (void* parameter)
{
   struct parameter * thread_data = (struct parameter *)parameter;
   char buffer[20];
   int temp;
   printf_buffer(buffer);
}

and a normal function:

void printf_buffer(char *buffer)
{
    printf("buffer is %s",buffer);
    return;
}

I know a thread entry is called when a thread is created, and how normal functions are used.

Are there any other differences between thread entry functions and a normal functions in terms of execution , behavior, or creating instances?

share|improve this question
3  
Define "thread function" and "normal function" please. – David Heffernan Sep 13 '11 at 8:53
question is unclear. What function/library are you thinking about? – Thilo Sep 13 '11 at 8:53

3 Answers

up vote 2 down vote accepted

There is no difference in the language between what you call a "thread function" (although Justin has edited to call it a "thread entry function") and what you call a "normal function".

With pthreads, the so-called "start routine" of a thread is a function that takes a single void* parameter and returns void*, but there's nothing to stop you calling the same function "normally".

When the start routine of a thread returns, the thread finishes execution, but that's just because the threading implementation calls it, and then finishes the thread. It's not because of anything special to do with the start routine itself.

share|improve this answer

A thread function is just the entry/exit point of a thread. The execution of that function is no different from what you refer to as a normal function.

share|improve this answer
see in ma upper example if i have created 5 thread so each thread function will have different value in buffer & now when printf_buffer of all thread function wil work correctly.? i mean does there will be 5 instances of printf_buffer ..? – Mr.32 Sep 13 '11 at 9:06
2  
@Mr. 32: there's no such thing as an "instance" of a function. There is only one printf_buffer function. There is only one thread_function function. Automatic variables are created separately for each invocation of a function, regardless of whether those invocations are in the same thread or different threads. – Steve Jessop Sep 13 '11 at 9:14
oh thanks steave jessop..this is what i was confuses – Mr.32 Sep 13 '11 at 9:20
@Steve: I think "instance" was being used as a synonym for "invocation" as it's use in 5.2.3... – R.. Sep 13 '11 at 12:06
@R..: true, although I suspect not entirely deliberately. – Steve Jessop Sep 13 '11 at 12:14

man pthread_create defines it quite well:

http://linux.die.net/man/3/pthread_create

one major difference that has not been mentioned yet is that the thread entry should expect to operate on a stack other than the caller's. for this reason, you will often want to pass heap copies of resources as your argument when your thread is detached, then free it in the entry:

// the caller must pass a heap copy of struct parameter* arg
void* detached_entry(void* arg) {

  struct parameter* parameter = (struct parameter*)arg;
  ...
  free(parameter);
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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