mirror of
https://github.com/systemd/systemd.git
synced 2026-07-15 03:50:44 +00:00
This also makes memfd-util.h include sys/mman.h, as it is necessary for specifying flags to memfd_create_wrapper() or memfd_new_full().
25 lines
734 B
C
25 lines
734 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
#include <sys/mman.h> /* IWYU pragma: export */
|
|
|
|
#include "forward.h"
|
|
|
|
int memfd_create_wrapper(const char *name, unsigned mode);
|
|
|
|
int memfd_new_full(const char *name, unsigned extra_flags);
|
|
static inline int memfd_new(const char *name) {
|
|
return memfd_new_full(name, 0);
|
|
}
|
|
|
|
int memfd_new_and_seal(const char *name, const void *data, size_t sz) _nonnull_if_nonzero_(2, 3);
|
|
static inline int memfd_new_and_seal_string(const char *name, const char *s) {
|
|
return memfd_new_and_seal(name, s, SIZE_MAX);
|
|
}
|
|
|
|
int memfd_set_sealed(int fd);
|
|
int memfd_get_sealed(int fd);
|
|
|
|
int memfd_get_size(int fd, uint64_t *ret);
|
|
int memfd_set_size(int fd, uint64_t sz);
|