mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-05-28 15:34:33 +00:00
Update syscall doc functions
This commit is contained in:
parent
41bdbada31
commit
96a27f7bc8
@ -85,25 +85,25 @@ enum NativeSyscalls
|
|||||||
_IPC,
|
_IPC,
|
||||||
|
|
||||||
/** @brief Open a file
|
/** @brief Open a file
|
||||||
* @fn
|
* @fn void *FileOpen(const char *Path, uint64_t Flags)
|
||||||
* This syscall is used to open a file with the provided path and flags.
|
* This syscall is used to open a file with the provided path and flags.
|
||||||
*/
|
*/
|
||||||
_FileOpen,
|
_FileOpen,
|
||||||
|
|
||||||
/** @brief Close a file
|
/** @brief Close a file
|
||||||
* @fn
|
* @fn int FileClose(void *KernelPrivate)
|
||||||
* This syscall is used to close a file that was previously opened.
|
* This syscall is used to close a file that was previously opened.
|
||||||
*/
|
*/
|
||||||
_FileClose,
|
_FileClose,
|
||||||
|
|
||||||
/** @brief Read from a file
|
/** @brief Read from a file
|
||||||
* @fn
|
* @fn uint64_t FileRead(void *KernelPrivate, uint64_t Offset, uint8_t *Buffer, uint64_t Size)
|
||||||
* This syscall is used to read a specific number of bytes from a file at a specific offset.
|
* This syscall is used to read a specific number of bytes from a file at a specific offset.
|
||||||
*/
|
*/
|
||||||
_FileRead,
|
_FileRead,
|
||||||
|
|
||||||
/** @brief Write to a file
|
/** @brief Write to a file
|
||||||
* @fn
|
* @fn uint64_t FileWrite(void *KernelPrivate, uint64_t Offset, uint8_t *Buffer, uint64_t Size)
|
||||||
* This syscall is used to write a specific number of bytes to a file at a specific offset.
|
* This syscall is used to write a specific number of bytes to a file at a specific offset.
|
||||||
*/
|
*/
|
||||||
_FileWrite,
|
_FileWrite,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user