mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 16:37:19 +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.
14 lines
357 B
C
14 lines
357 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
#include "basic-forward.h"
|
|
|
|
int fsync_directory_of_file(int fd);
|
|
int fsync_full(int fd);
|
|
|
|
int fsync_path_at(int at_fd, const char *path);
|
|
int fsync_parent_at(int at_fd, const char *path);
|
|
int fsync_path_and_parent_at(int at_fd, const char *path);
|
|
|
|
int syncfs_path(int at_fd, const char *path);
|