diff options
Diffstat (limited to 'lib/libthr/thread/thr_create.c')
-rw-r--r-- | lib/libthr/thread/thr_create.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/libthr/thread/thr_create.c b/lib/libthr/thread/thr_create.c index 276e550..abab212 100644 --- a/lib/libthr/thread/thr_create.c +++ b/lib/libthr/thread/thr_create.c @@ -86,11 +86,6 @@ _pthread_create(pthread_t * thread, const pthread_attr_t * attr, new_thread->attr.sched_policy = curthread->attr.sched_policy; } - if (_thr_scope_system > 0) - new_thread->attr.flags |= PTHREAD_SCOPE_SYSTEM; - else if (_thr_scope_system < 0) - new_thread->attr.flags &= ~PTHREAD_SCOPE_SYSTEM; - new_thread->tid = TID_TERMINATED; if (create_stack(&new_thread->attr) != 0) { |