ttyname_r.c\unistd\src - 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/unistd/ttyname_r.c
blob: 82acb75e19d60a6a075e7398dc23d9b4f8729e5d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include <unistd.h>
#include <errno.h>
#include <sys/stat.h>
#include "syscall.h"
int ttyname_r(int fd, char *name, size_t size)
{
	struct stat st1, st2;
	char procname[sizeof "/proc/self/fd/" + 3*sizeof(int) + 2];
	ssize_t l;
	if (!isatty(fd)) return errno;
	__procfdname(procname, fd);
	l = readlink(procname, name, size);
	if (l < 0) return errno;
	else if (l == size) return ERANGE;
	name[l] = 0;
	if (stat(name, &st1) || fstat(fd, &st2))
		return errno;
	if (st1.st_dev != st2.st_dev || st1.st_ino != st2.st_ino)
		return ENODEV;
	return 0;
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月08日 03:47:41 +0000

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