mirror of
https://github.com/systemd/systemd.git
synced 2026-07-14 19:40:32 +00: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.
11 lines
274 B
C
11 lines
274 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
#include "basic-forward.h"
|
|
|
|
uint64_t physical_memory(void);
|
|
uint64_t physical_memory_scale(uint64_t v, uint64_t max);
|
|
|
|
uint64_t system_tasks_max(void);
|
|
uint64_t system_tasks_max_scale(uint64_t v, uint64_t max);
|