open.c\fcntl\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/fcntl/open.c
blob: 4c3c82759c1b20bb6366c31657edbfbe418d3644 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <fcntl.h>
#include <stdarg.h>
#include "syscall.h"
int open(const char *filename, int flags, ...)
{
	mode_t mode = 0;
	if ((flags & O_CREAT) || (flags & O_TMPFILE) == O_TMPFILE) {
		va_list ap;
		va_start(ap, flags);
		mode = va_arg(ap, mode_t);
		va_end(ap);
	}
	int fd = __sys_open_cp(filename, flags, mode);
	if (fd>=0 && (flags & O_CLOEXEC))
		__syscall(SYS_fcntl, fd, F_SETFD, FD_CLOEXEC);
	return __syscall_ret(fd);
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月07日 08:50:35 +0000

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