Penguin

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

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

Newer page: version 4 Last edited on Friday, March 4, 2005 12:53:34 pm by PerryLorier
Older page: version 3 Last edited on Monday, March 24, 2003 11:36:18 am by PerryLorier Revert
@@ -1,3 +1,5 @@
 !!!Signal: Bus Error 
  
 This signal is raised when your program accesses memory in an invalid way. This signal by default causes your program to terminate and dump core. Bus Errors often occur when you access unaligned memory on a machine that doesn't support unaligned memory accesses. It can also occur if you access mmap(2)'d memory beyond the end of the file but within the region of the mmap(2). 
+  
+Also, interestingly this can occur if the OS cannot map a page in the middle of a mmap(2) for some reason. This can occur due to disk errors, or perhaps an nfs share going away.