diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | create.c | 3 |
2 files changed, 6 insertions, 0 deletions
@@ -1,5 +1,8 @@ Fri Jul 24 03:00:25 1998 Ross Johnson <rpj@ixobrychus.canberra.edu.au> + * create.c (pthread_create): Ensure values of new attribute members + are copied to the thread attribute object. + * attr.c (pthread_attr_destroy): Fix merge conflicts. (pthread_attr_getdetachstate): Fix merge conflicts. (pthread_attr_setdetachstate): Fix merge conflicts. @@ -64,6 +64,9 @@ pthread_create(pthread_t *thread, } attr_copy->cancelability = attr->cancelability; + attr_copy->canceltype = attr->canceltype; + attr_copy->detached = attr->detached; + attr_copy->priority = attr->priority; } /* Start running, not suspended. */ |