Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for _SIGFPE (0.07 sec)

  1. src/runtime/sigtab_aix.go

    	_SIGTRAP:    {_SigThrow + _SigUnblock, "SIGTRAP: trace trap"},
    	_SIGABRT:    {_SigNotify + _SigThrow, "SIGABRT: abort"},
    	_SIGBUS:     {_SigPanic + _SigUnblock, "SIGBUS: bus error"},
    	_SIGFPE:     {_SigPanic + _SigUnblock, "SIGFPE: floating-point exception"},
    	_SIGKILL:    {0, "SIGKILL: kill"},
    	_SIGUSR1:    {_SigNotify, "SIGUSR1: user-defined signal 1"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 03 20:58:16 UTC 2018
    - 11.3K bytes
    - Viewed (0)
  2. src/runtime/signal_unix.go

    		// Switch to curg so that we get a traceback of the Go code
    		// leading up to the cgocall, which switched from curg to g0.
    		gp = mp.curg
    	}
    	if sig == _SIGILL || sig == _SIGFPE {
    		// It would be nice to know how long the instruction is.
    		// Unfortunately, that's complicated to do in general (mostly for x86
    		// and s930x, but other archs have non-standard instruction lengths also).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
Back to top