Files
Nim/lib/system
Reimer Behrends f99c40f61b Improve setjmp()/longjmp() performance.
Exception handling for the C backend used setjmp()/longjmp()
unconditionally. However, on POSIX systems, these functions save and
restore the signal mask, adding considerable overhead to exception
handling, even where no exceptions are involved. The compiler and
library now try to use either _setjmp()/_longjmp() or
sigsetjmp()/siglongjmp() where possible, marked by the defines
"nimRawSetjmp" and "nimSigSetjmp", respectively. The define
"nimStdSetjmp" can be used to revert to setjmp()/longjmp() instead.
2014-09-25 23:29:02 +02:00
..
2014-05-20 00:44:16 +02:00
2014-08-19 18:30:12 -04:00
2014-08-19 20:18:33 +02:00
2014-04-19 22:24:43 +02:00
2014-04-07 23:28:29 +02:00
2014-04-19 22:24:43 +02:00
2014-06-12 16:05:50 +02:00
2013-12-29 03:32:46 +01:00
2014-04-21 03:44:48 +02:00
2014-04-07 23:28:29 +02:00
2014-08-12 10:11:58 +02:00
2014-05-02 08:44:03 +02:00
2014-08-13 12:58:49 +02:00
2014-05-13 15:03:58 +02:00
2014-04-19 22:24:43 +02:00
2014-09-11 09:36:22 +02:00