-
Notifications
You must be signed in to change notification settings - Fork 10.5k
/
Copy pathMisc.c
46 lines (38 loc) · 1.29 KB
/
Misc.c
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
//===--- Misc.c - Glibc overlay helpers -----------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <semaphore.h>
extern int
_swift_Glibc_open(const char *path, int oflag, mode_t mode) {
return open(path, oflag, mode);
}
extern int
_swift_Glibc_openat(int fd, const char *path, int oflag, mode_t mode) {
return openat(fd, path, oflag, mode);
}
extern sem_t *_swift_Glibc_sem_open2(const char *name, int oflag) {
return sem_open(name, oflag);
}
extern sem_t *_swift_Glibc_sem_open4(const char *name, int oflag,
mode_t mode, unsigned int value) {
return sem_open(name, oflag, mode, value);
}
extern int
_swift_Glibc_fcntl(int fd, int cmd, int value) {
return fcntl(fd, cmd, value);
}
extern int
_swift_Glibc_fcntlPtr(int fd, int cmd, void* ptr) {
return fcntl(fd, cmd, ptr);
}