mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-18 12:16:31 +00:00
🆕 运行文件系统中的二进制程序
This commit is contained in:
15
user/libs/libc/fcntl.c
Normal file
15
user/libs/libc/fcntl.c
Normal file
@ -0,0 +1,15 @@
|
||||
#include <libc/fcntl.h>
|
||||
#include <libsystem/syscall.h>
|
||||
|
||||
/**
|
||||
* @brief 打开文件的接口
|
||||
*
|
||||
* @param path 文件路径
|
||||
* @param options 打开选项
|
||||
* @param ...
|
||||
* @return int 文件描述符
|
||||
*/
|
||||
int open(const char *path, int options, ...)
|
||||
{
|
||||
return syscall_invoke(SYS_OPEN, (uint64_t)path, 0, 0, 0, 0, 0, 0, 0);
|
||||
}
|
Reference in New Issue
Block a user