Home
last modified time | relevance | path

Searched refs:EBUSY (Results 1 – 9 of 9) sorted by relevance

/DragonOS-0.1.8/kernel/src/driver/base/char/
Dmod.rs153 return Err(SystemError::EBUSY); in find_dynamic_major()
229 return Err(SystemError::EBUSY); // 存在重合的次设备号 in __register_chardev_region()
261 return Err(SystemError::EBUSY); in __unregister_chardev_region()
/DragonOS-0.1.8/kernel/src/common/
Derrno.h28 #define EBUSY 16 /* 设备或资源忙 Device or resource busy. */ macro
/DragonOS-0.1.8/user/libs/libc/src/include/export/
Derrno.h34 #define EBUSY 16 /* 设备或资源忙 Device or resource busy. */ macro
/DragonOS-0.1.8/kernel/src/libs/
Dmutex.rs97 return Err(SystemError::EBUSY); in try_lock()
Dnotifier.rs52 return Err(SystemError::EBUSY); in register()
/DragonOS-0.1.8/kernel/src/filesystem/vfs/
Dmount.rs226 return Err(SystemError::EBUSY); in unlink()
238 return Err(SystemError::EBUSY); in rmdir()
/DragonOS-0.1.8/docs/userland/libc/apis/api-list/
Derrno.md31 #define EBUSY 10 /* 设备或资源忙 Device or resource busy.*/
/DragonOS-0.1.8/kernel/src/driver/tty/
Dtty_device.rs98 return Err(SystemError::EBUSY); in input()
/DragonOS-0.1.8/kernel/src/syscall/
Dmod.rs66 EBUSY = 16, enumerator