Home
last modified time | relevance | path

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

/DragonOS/kernel/src/process/
H A Dexec.rs76 ExecError::NotExecutable => SystemError::ENOEXEC, in from()
77 ExecError::WrongArchitecture => SystemError::ENOEXEC, in from()
80 ExecError::ParseError => SystemError::ENOEXEC, in from()
84 ExecError::Other(_msg) => SystemError::ENOEXEC, in from()
182 return Err(SystemError::ENOEXEC); in load_binary_file()
/DragonOS/kernel/src/common/
H A Derrno.h19 #define ENOEXEC 8 /* 可执行文件格式错误 Executable file format error */ macro
/DragonOS/kernel/crates/system_error/src/
H A Dlib.rs26 ENOEXEC = 8, enumerator
/DragonOS/kernel/src/libs/
H A Delf.rs333 return Err(SystemError::ENOEXEC); in do_load_file()