Files
MentOS/mentos/inc/io/proc_modules.h
T
2021-10-05 14:29:24 +02:00

18 lines
523 B
C

/// MentOS, The Mentoring Operating system project
/// @file proc_modules.h
/// @brief Contains functions for managing procfs filesystems.
/// @copyright (c) 2014-2021 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();
/// @brief Initialize the procfs system files.
/// @return 0 on success, 1 on failure.
int procs_module_init();