From: Rich Felker Date: Sun, 3 Apr 2011 20:15:15 +0000 (-0400) Subject: pthread_create need not set errno X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=7fd3995282db788e33f1bfd7eea95b480d45c804 pthread_create need not set errno --- diff --git a/src/thread/pthread_create.c b/src/thread/pthread_create.c index cdf36ff2..284b45a0 100644 --- a/src/thread/pthread_create.c +++ b/src/thread/pthread_create.c @@ -195,7 +195,7 @@ int pthread_create(pthread_t *res, const pthread_attr_t *attr, void *(*entry)(vo unsigned char *map, *stack, *tsd; static const pthread_attr_t default_attr; - if (!self) return errno = ENOSYS; + if (!self) return ENOSYS; if (!init && ++init) init_threads(); if (!attr) attr = &default_attr;