diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-10-28 23:05:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-28 23:05:21 +0100 |
commit | 659d39baaaa51e27c3e078390e3f1b588f390aa3 (patch) | |
tree | ffd5bc8bef3055653400f48837b2017bbaecb762 /include | |
parent | f668e49faeeb06bf71e8b0d21f745e0f68aab4ba (diff) | |
parent | 54e78e9e26d267915517f4e49e9868b3b3009c42 (diff) |
Merge pull request #1332 from emersion/shm-open
util: use shm_open for in-memory files
Diffstat (limited to 'include')
-rw-r--r-- | include/util/os-compatibility.h | 9 | ||||
-rw-r--r-- | include/util/shm.h | 7 |
2 files changed, 7 insertions, 9 deletions
diff --git a/include/util/os-compatibility.h b/include/util/os-compatibility.h deleted file mode 100644 index 2038025e..00000000 --- a/include/util/os-compatibility.h +++ /dev/null @@ -1,9 +0,0 @@ -#ifndef UTIL_OS_COMPATIBILITY_H -#define UTIL_OS_COMPATIBILITY_H - -int os_fd_set_cloexec(int fd); -int set_cloexec_or_close(int fd); -int create_tmpfile_cloexec(char *tmpname); -int os_create_anonymous_file(off_t size); - -#endif diff --git a/include/util/shm.h b/include/util/shm.h new file mode 100644 index 00000000..fb67b711 --- /dev/null +++ b/include/util/shm.h @@ -0,0 +1,7 @@ +#ifndef UTIL_SHM_H +#define UTIL_SHM_H + +int create_shm_file(void); +int allocate_shm_file(size_t size); + +#endif |