Penguin

Differences between current version and predecessor to the previous major change of EFAULT.

Other diffs: Previous Revision, Previous Author, or view the Annotated Edit History

Newer page: version 3 Last edited on Friday, October 31, 2003 6:07:31 pm by JohnMcPherson
Older page: version 1 Last edited on Monday, October 28, 2002 7:26:45 pm by PerryLorier Revert
@@ -1,3 +1,5 @@
 !!!Bad Address 
  
-This happens when you call a kernel syscall, and provide it with a pointer that points outside your address space. Tsk Tsk. 
+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.  
+  
+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..