mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 13:00:06 +00:00
htl: Make sem_open return ENOSYS
instead of EOPNOTSUPP, which is for sockets.
This commit is contained in:
parent
5e77ec7c6e
commit
1cec114b17
@ -24,7 +24,7 @@
|
||||
sem_t *
|
||||
__sem_open (const char *name, int open_flags, ...)
|
||||
{
|
||||
errno = EOPNOTSUPP;
|
||||
errno = ENOSYS;
|
||||
return SEM_FAILED;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user