Bus error 10

Bus error: 10
ulimit -c ulimited



Bus error: 10 (core dumped)



$lldb /cores/core.14533
(lldb) target create “/cores/core.14533”
warning: (x86_64) /cores/core.14533 load command 108 LC_SEGMENT_64 has a fileoff + filesize (0x28a0e000) that extends beyond the end of the file (0x28a0d000), the segment will be truncated to match
warning: (x86_64) /cores/core.14533 load command 109 LC_SEGMENT_64 has a fileoff (0x28a0e000) that extends beyond the end of the file (0x28a0d000), ignoring this section
Current executable set to ‘/cores/core.14533’ (x86_64).
(lldb) bt
error: invalid process

https://stackoverflow.com/questions/212466/what-is-a-bus-error



Bus errors are rare nowadays on x86 and occur when your processor cannot even attempt the memory access requested, typically:



using a processor instruction with an address that does not satisfy its alignment requirements.
Segmentation faults occur when accessing memory which does not belong to your process, they are very common and are typically the result of:



using a pointer to something that was deallocated.
using an uninitialized hence bogus pointer.
using a null pointer.
overflowing a buffer.


Category linux