instead of EOPNOTSUPP, which is for sockets. --- sysdeps/htl/sem-open.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sysdeps/htl/sem-open.c b/sysdeps/htl/sem-open.c index 28483ef6a5..682f0e1a88 100644 --- a/sysdeps/htl/sem-open.c +++ b/sysdeps/htl/sem-open.c @@ -24,7 +24,7 @@ sem_t * __sem_open (const char *name, int open_flags, ...) { - errno = EOPNOTSUPP; + errno = ENOSYS; return SEM_FAILED; } -- 2.24.1