diff options
Diffstat (limited to 'htl')
-rw-r--r-- | htl/pt-create.c | 2 | ||||
-rw-r--r-- | htl/pt-yield.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/htl/pt-create.c b/htl/pt-create.c index 59ba04d..0b3237f 100644 --- a/htl/pt-create.c +++ b/htl/pt-create.c @@ -178,7 +178,7 @@ __pthread_create_internal (struct __pthread **thread, shall be empty." If the currnet thread is not a pthread then we just inherit the process' sigmask. */ if (__pthread_num_threads == 1) - err = sigprocmask (0, 0, &sigset); + err = __sigprocmask (0, 0, &sigset); else err = __pthread_sigstate (_pthread_self (), 0, 0, &sigset, 0); assert_perror (err); diff --git a/htl/pt-yield.c b/htl/pt-yield.c index 29fda25..11aa852 100644 --- a/htl/pt-yield.c +++ b/htl/pt-yield.c @@ -22,5 +22,5 @@ int pthread_yield (void) { - return sched_yield (); + return __sched_yield (); } |