digitalmars.D.learn - Throw exception on segmentation fault in GNU/Linux
- ilya-stromberg (3/3) Apr 22 2014 What should I add in the D program in GNU/Linux to throw
- Kagamin (2/2) Apr 22 2014 You should write and register a signal handler. Implementation
- Dicebot (4/7) Apr 22 2014 etc.linux.memoryerror
- ilya-stromberg (3/10) Apr 22 2014 Thanks. How shall I use the module? Should I just import it or
- Dicebot (4/17) Apr 22 2014 AFAIR it is just matter of calling registerMemoryErrorHandler()
What should I add in the D program in GNU/Linux to throw exception if I have segmentation fault error? I read somewhere that it's possible, but I don't know how to do it.
Apr 22 2014
You should write and register a signal handler. Implementation for x86-32 was posted here.
Apr 22 2014
On Tuesday, 22 April 2014 at 09:58:45 UTC, ilya-stromberg wrote:What should I add in the D program in GNU/Linux to throw exception if I have segmentation fault error? I read somewhere that it's possible, but I don't know how to do it.etc.linux.memoryerror Just remember that it is more of hack than reliable production-ready solution ;)
Apr 22 2014
On Tuesday, 22 April 2014 at 14:49:58 UTC, Dicebot wrote:On Tuesday, 22 April 2014 at 09:58:45 UTC, ilya-stromberg wrote:Thanks. How shall I use the module? Should I just import it or call any init function?What should I add in the D program in GNU/Linux to throw exception if I have segmentation fault error? I read somewhere that it's possible, but I don't know how to do it.etc.linux.memoryerror Just remember that it is more of hack than reliable production-ready solution ;)
Apr 22 2014
On Tuesday, 22 April 2014 at 15:47:37 UTC, ilya-stromberg wrote:On Tuesday, 22 April 2014 at 14:49:58 UTC, Dicebot wrote:AFAIR it is just matter of calling registerMemoryErrorHandler() and deregisterMemoryErrorHandler() - this module doesn't even have any other public functions / methods.On Tuesday, 22 April 2014 at 09:58:45 UTC, ilya-stromberg wrote:Thanks. How shall I use the module? Should I just import it or call any init function?What should I add in the D program in GNU/Linux to throw exception if I have segmentation fault error? I read somewhere that it's possible, but I don't know how to do it.etc.linux.memoryerror Just remember that it is more of hack than reliable production-ready solution ;)
Apr 22 2014