Home
last modified time | relevance | path

Searched refs:ENOEXEC (Results 1 – 6 of 6) sorted by relevance

/DragonOS-0.1.8/kernel/src/process/
Dexec.rs75 ExecError::NotExecutable => SystemError::ENOEXEC, in into()
79 ExecError::ParseError => SystemError::ENOEXEC, in into()
83 ExecError::Other(_msg) => SystemError::ENOEXEC, in into()
182 return Err(SystemError::ENOEXEC); in load_binary_file()
/DragonOS-0.1.8/kernel/src/common/
Derrno.h19 #define ENOEXEC 8 /* 可执行文件格式错误 Executable file format error */ macro
/DragonOS-0.1.8/user/libs/libc/src/include/export/
Derrno.h25 #define ENOEXEC 8 /* 可执行文件格式错误 Executable file format error */ macro
/DragonOS-0.1.8/docs/userland/libc/apis/api-list/
Derrno.md107 #define ENOEXEC 46 /* 可执行文件格式错误 Executable file format error.*/
/DragonOS-0.1.8/kernel/src/libs/
Delf.rs300 return Err(SystemError::ENOEXEC); in do_load_file()
/DragonOS-0.1.8/kernel/src/syscall/
Dmod.rs48 ENOEXEC = 8, enumerator