mirror of
https://sourceware.org/git/glibc.git
synced 2025-09-02 16:01:20 +03:00
Update.
1998-10-29 Ulrich Drepper <drepper@cygnus.com> * sysdeps/unix/sysv/linux/ttyname_r.c (ttyname_r): Try reading /prof/self/fd/FD first. * sysdeps/unix/sysv/linux/ttyname.c (ttyname): Likewise. * stdio-common/_itoa.h (_fitoa_word): New inline function. Write formatted number starting at given position and return pointer to following byte. (_fitoa): Likewise, for long long.
This commit is contained in:
@@ -394,7 +394,7 @@ int pthread_setschedparam(pthread_t thread, int policy,
|
||||
pthread_handle handle = thread_handle(thread);
|
||||
pthread_descr th;
|
||||
|
||||
__pthread_lock(&handle->h_lock);
|
||||
__pthread_lock(&handle->h_lock, NULL);
|
||||
if (invalid_handle(handle, thread)) {
|
||||
__pthread_unlock(&handle->h_lock);
|
||||
return ESRCH;
|
||||
@@ -417,7 +417,7 @@ int pthread_getschedparam(pthread_t thread, int *policy,
|
||||
pthread_handle handle = thread_handle(thread);
|
||||
int pid, pol;
|
||||
|
||||
__pthread_lock(&handle->h_lock);
|
||||
__pthread_lock(&handle->h_lock, NULL);
|
||||
if (invalid_handle(handle, thread)) {
|
||||
__pthread_unlock(&handle->h_lock);
|
||||
return ESRCH;
|
||||
|
Reference in New Issue
Block a user