This is the mail archive of the libc-help@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Help for graduate research - how are NLTP routines implemented atthe OS level


On Wed, Mar 23, 2011 at 10:32 AM, Edmon Begoli wrote:
> How does compiler translate a following line of code into something
> that operating system
> will recognize as an instruction that will map to an OS thread:
>
> ret_value = pthread_create( &thread1, NULL, print_message_function,
> (void*) message1);

it uses clone() with special flags

> and I am having problems finding such documentation

the source is the documentation for much of this
-mike


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]