diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-08-19 19:39:16 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-08-19 19:39:16 +0200 |
commit | 4531a9bc206c0c22e29b56ac4a7528afba2e9c83 (patch) | |
tree | 6ea5ee56ccd2d9b16234e83e1326bef649962471 /src/shared/memfd.h | |
parent | 8a0dec98a3d18666da739c984f8952865d6e0ce3 (diff) |
memfd: simplify API
Now, that the memfd stuff is not exported anymore, we can simplify a few
things:
Use assert() instead of assert_return(), since this is used internally
only, and we should be less permissive then.
No need to pass an allocated fd back by call-by-reference, we can just
directly return it.
Diffstat (limited to 'src/shared/memfd.h')
-rw-r--r-- | src/shared/memfd.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/shared/memfd.h b/src/shared/memfd.h index 02cb3978fa..8f02b0ff55 100644 --- a/src/shared/memfd.h +++ b/src/shared/memfd.h @@ -24,11 +24,12 @@ #include <inttypes.h> #include <sys/types.h> #include <stdio.h> + #include "macro.h" #include "util.h" -int memfd_new(int *fd, const char *name); -int memfd_new_and_map(int *fd, const char *name, size_t sz, void **p); +int memfd_new(const char *name); +int memfd_new_and_map(const char *name, size_t sz, void **p); int memfd_map(int fd, uint64_t offset, size_t size, void **p); |