This repository was archived by the owner on Sep 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathfcntl.c
More file actions
46 lines (36 loc) · 1.26 KB
/
fcntl.c
File metadata and controls
46 lines (36 loc) · 1.26 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
This file is part of duckOS.
duckOS is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
duckOS is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with duckOS. If not, see <https://www.gnu.org/licenses/>.
Copyright (c) Byteduck 2016-2020. All rights reserved.
*/
#include <sys/syscall.h>
#include <fcntl.h>
#include <stdarg.h>
int open(const char* pathname, int flags, ...) {
mode_t mode = 0;
if(flags & O_CREAT) {
va_list list;
va_start(list, flags);
mode = (mode_t) va_arg(list, int);
}
return syscall4(SYS_OPEN, (int) pathname, flags, mode);
}
int openat(int dirfd, const char* pathname, int flags) {
return -1;
}
int fcntl(int fd, int cmd, ...) {
return -1;
}
int utimensat(int dirfd, char const* path, struct timespec const times[2], int flag) {
// TODO: Implement
return -1;
}