mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-13 23:00:22 +00:00
(__pthread_manager) [REQ_POST]: Use __new_sem_post directly instead of
calling sem_post which should not be necessary but is faster and might help in some case to work around problems.
This commit is contained in:
parent
19bbf04adf
commit
3842bcd362
@ -156,7 +156,7 @@ int __pthread_manager(void *arg)
|
||||
}
|
||||
break;
|
||||
case REQ_POST:
|
||||
sem_post(request.req_args.post);
|
||||
__new_sem_post(request.req_args.post);
|
||||
break;
|
||||
case REQ_DEBUG:
|
||||
/* Make gdb aware of new thread and gdb will restart the
|
||||
|
Loading…
Reference in New Issue
Block a user