Changeset 25396

Show
Ignore:
Timestamp:
05/09/08 10:05:17 (1 week ago)
Author:
bonefish
Message:
I broke pthreads in r25390. The thread pointer was passed in the wrong
argument.
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • haiku/trunk/src/system/libroot/posix/pthread/pthread.c

    r25390 r25396  
    119119        attributes.name = "pthread func"; 
    120120        attributes.priority = attr->sched_priority; 
    121         attributes.args1 = thread
    122         attributes.args2 = NULL
     121        attributes.args1 = NULL
     122        attributes.args2 = thread
    123123        attributes.stack_address = NULL; 
    124124        attributes.stack_size = attr->stack_size;