mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 17:06:39 +09:00
Let's not leak details from src/shared and src/libsystemd into src/basic, even though you can't actually do anything useful with just forward declarations from src/shared. The sd-forward.h header is put in src/libsystemd/sd-common as we don't have a directory for shared internal headers for libsystemd yet. Let's also rename forward.h to basic-forward.h to keep things self-explanatory.
32 lines
1.0 KiB
C
32 lines
1.0 KiB
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
#include <sys/resource.h> /* IWYU pragma: export */
|
|
|
|
#include "basic-forward.h"
|
|
|
|
#define _RLIMIT_MAX RLIMIT_NLIMITS
|
|
|
|
const char* rlimit_to_string(int i) _const_;
|
|
int rlimit_from_string(const char *s) _pure_;
|
|
int rlimit_from_string_harder(const char *s) _pure_;
|
|
void rlimits_list(const char *prefix);
|
|
|
|
int setrlimit_closest(int resource, const struct rlimit *rlim);
|
|
int setrlimit_closest_all(const struct rlimit * const *rlim, int *which_failed);
|
|
|
|
int rlimit_parse_one(int resource, const char *val, rlim_t *ret);
|
|
int rlimit_parse(int resource, const char *val, struct rlimit *ret);
|
|
|
|
int rlimit_format(const struct rlimit *rl, char **ret);
|
|
|
|
int rlimit_copy_all(struct rlimit* target[static _RLIMIT_MAX], struct rlimit* const source[static _RLIMIT_MAX]);
|
|
void rlimit_free_all(struct rlimit **rl);
|
|
|
|
#define RLIMIT_MAKE_CONST(lim) ((struct rlimit) { lim, lim })
|
|
|
|
int rlimit_nofile_bump(int limit);
|
|
int rlimit_nofile_safe(void);
|
|
|
|
int pid_getrlimit(pid_t pid, int resource, struct rlimit *ret);
|