Files
MentOS/mentos/inc/io/proc_modules.h
T
Enrico Fraccaroli (Galfurian) 30e01ba560 Update version
2024-01-17 13:49:48 +01:00

25 lines
713 B
C

/// @file proc_modules.h
/// @brief Contains functions for managing procfs filesystems.
/// @copyright (c) 2014-2024 This file is distributed under the MIT License.
/// See LICENSE.md for details.
#pragma once
#include "fs/vfs.h"
/// @brief Initialize the procfs video files.
/// @return 0 on success, 1 on failure.
int procv_module_init(void);
/// @brief Initialize the procfs system files.
/// @return 0 on success, 1 on failure.
int procs_module_init(void);
/// @brief Initializes the scheduler feedback system.
/// @return 0 on success, 1 on failure.
int procfb_module_init(void);
/// @brief Initializes the IPC information system.
/// @return 0 on success, 1 on failure.
int procipc_module_init(void);