mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 08:25:20 +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.
20 lines
550 B
C
20 lines
550 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
#include "basic-forward.h"
|
|
|
|
int procfs_get_pid_max(uint64_t *ret);
|
|
int procfs_get_threads_max(uint64_t *ret);
|
|
|
|
int procfs_tasks_set_limit(uint64_t limit);
|
|
int procfs_tasks_get_current(uint64_t *ret);
|
|
|
|
int procfs_cpu_get_usage(nsec_t *ret);
|
|
|
|
int procfs_memory_get(uint64_t *ret_total, uint64_t *ret_used);
|
|
static inline int procfs_memory_get_used(uint64_t *ret) {
|
|
return procfs_memory_get(NULL, ret);
|
|
}
|
|
|
|
int convert_meminfo_value_to_uint64_bytes(const char *word, uint64_t *ret);
|