mailing list of musl libc
 help / color / mirror / code / Atom feed
75c4b9191428c12b8d39d30c513b4d6d8c5bfc2f blob 564 bytes (raw)

 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
 
#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 = __syscall(SYS_openat, AT_FDCWD, filename, flags|O_LARGEFILE, mode);
	if (fd==-ENOSYS) {
		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);
}

weak_alias(open, open64);
debug log:

solving 75c4b919 ...
found 75c4b919 in https://inbox.vuxu.org/musl/20201229225518.3677-1-ericonr@disroot.org/
found 1d817a2d in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 1d817a2d6c485b24571ffb422fba520705932517	src/fcntl/open.c

applying [1/1] https://inbox.vuxu.org/musl/20201229225518.3677-1-ericonr@disroot.org/
diff --git a/src/fcntl/open.c b/src/fcntl/open.c
index 1d817a2d..75c4b919 100644

Checking patch src/fcntl/open.c...
Applied patch src/fcntl/open.c cleanly.

index at:
100644 75c4b9191428c12b8d39d30c513b4d6d8c5bfc2f	src/fcntl/open.c

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).