musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/misc/pty.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2019年10月22日 10:22:22 -0400
committerRich Felker <dalias@aerifal.cx>2019年10月24日 10:25:09 -0400
commit4fd0f2056082441a4503f6bfcb787a7c15754518 (patch)
treeddfa487e29dcda5dbbc0bb5f47c2cf1616831cea /src/misc/pty.c
parent9b2921bea1d5017832e1b45d1fd64220047a9802 (diff)
downloadmusl-4fd0f2056082441a4503f6bfcb787a7c15754518.tar.gz
fix errno for posix_openpt with no free ptys available
linux fails the open with ENOSPC, but POSIX mandates EAGAIN.
Diffstat (limited to 'src/misc/pty.c')
-rw-r--r--src/misc/pty.c 4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/misc/pty.c b/src/misc/pty.c
index b9cb5eaa..a0577147 100644
--- a/src/misc/pty.c
+++ b/src/misc/pty.c
@@ -7,7 +7,9 @@
int posix_openpt(int flags)
{
- return open("/dev/ptmx", flags);
+ int r = open("/dev/ptmx", flags);
+ if (r < 0 && errno == ENOSPC) errno = EAGAIN;
+ return r;
}
int grantpt(int fd)
generated by cgit v1.2.1 (git 2.18.0) at 2025年10月06日 06:56:58 +0000

AltStyle によって変換されたページ (->オリジナル) /