12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- #if defined(__mips__)
- #define KERN_PTR ((void *)0x80000000)
- #define INVAL_PTR ((void *)0x40000000)
- #else
- #error "Please fix this"
- #endif
- #define CLOSED_FD 10
- #define IMPOSSIBLE_FD 1234567890
- #define NONEXIST_PID 34000
- #ifdef ESRCH
- #define NOSUCHPID_ERROR ESRCH
- #else
- #define NOSUCHPID_ERROR EINVAL
- #endif
- #define MAGIC_STATUS 107
- #define NONEXIST_IOCTL 12345
|