Penguin
Annotated edit history of EFAULT version 3, including all changes. View license author blame.
Rev Author # Line
1 PerryLorier 1 !!!Bad Address
2
2 PerryLorier 3 This happens when you call a kernel syscall, and provide it with a pointer that points outside your address space. Tsk Tsk. You should check your pointers are properly initialised.
3 JohnMcPherson 4
5 If you get this after doing a fork(2) followed by an execl(3) or execlp(3), make sure you remembered to NULL-terminate the list of arguments...