Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for _SIGFPE (0.08 sec)

  1. src/runtime/defs_freebsd_amd64.go

    	_UMTX_OP_WAKE              = 0x3
    	_UMTX_OP_WAKE_PRIVATE      = 0x10
    
    	_SIGHUP    = 0x1
    	_SIGINT    = 0x2
    	_SIGQUIT   = 0x3
    	_SIGILL    = 0x4
    	_SIGTRAP   = 0x5
    	_SIGABRT   = 0x6
    	_SIGEMT    = 0x7
    	_SIGFPE    = 0x8
    	_SIGKILL   = 0x9
    	_SIGBUS    = 0xa
    	_SIGSEGV   = 0xb
    	_SIGSYS    = 0xc
    	_SIGPIPE   = 0xd
    	_SIGALRM   = 0xe
    	_SIGTERM   = 0xf
    	_SIGURG    = 0x10
    	_SIGSTOP   = 0x11
    	_SIGTSTP   = 0x12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. src/runtime/defs_aix.go

    	_MADV_DONTNEED = C.MADV_DONTNEED
    
    	_SIGHUP     = C.SIGHUP
    	_SIGINT     = C.SIGINT
    	_SIGQUIT    = C.SIGQUIT
    	_SIGILL     = C.SIGILL
    	_SIGTRAP    = C.SIGTRAP
    	_SIGABRT    = C.SIGABRT
    	_SIGBUS     = C.SIGBUS
    	_SIGFPE     = C.SIGFPE
    	_SIGKILL    = C.SIGKILL
    	_SIGUSR1    = C.SIGUSR1
    	_SIGSEGV    = C.SIGSEGV
    	_SIGUSR2    = C.SIGUSR2
    	_SIGPIPE    = C.SIGPIPE
    	_SIGALRM    = C.SIGALRM
    	_SIGCHLD    = C.SIGCHLD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 20 21:27:51 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. src/runtime/defs_linux_amd64.go

    	_SA_SIGINFO  = 0x4
    
    	_SI_KERNEL = 0x80
    	_SI_TIMER  = -0x2
    
    	_SIGHUP    = 0x1
    	_SIGINT    = 0x2
    	_SIGQUIT   = 0x3
    	_SIGILL    = 0x4
    	_SIGTRAP   = 0x5
    	_SIGABRT   = 0x6
    	_SIGBUS    = 0x7
    	_SIGFPE    = 0x8
    	_SIGKILL   = 0x9
    	_SIGUSR1   = 0xa
    	_SIGSEGV   = 0xb
    	_SIGUSR2   = 0xc
    	_SIGPIPE   = 0xd
    	_SIGALRM   = 0xe
    	_SIGSTKFLT = 0x10
    	_SIGCHLD   = 0x11
    	_SIGCONT   = 0x12
    	_SIGSTOP   = 0x13
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. src/runtime/defs_darwin_amd64.go

    	_SA_ONSTACK   = 0x1
    	_SA_USERTRAMP = 0x100
    	_SA_64REGSET  = 0x200
    
    	_SIGHUP    = 0x1
    	_SIGINT    = 0x2
    	_SIGQUIT   = 0x3
    	_SIGILL    = 0x4
    	_SIGTRAP   = 0x5
    	_SIGABRT   = 0x6
    	_SIGEMT    = 0x7
    	_SIGFPE    = 0x8
    	_SIGKILL   = 0x9
    	_SIGBUS    = 0xa
    	_SIGSEGV   = 0xb
    	_SIGSYS    = 0xc
    	_SIGPIPE   = 0xd
    	_SIGALRM   = 0xe
    	_SIGTERM   = 0xf
    	_SIGURG    = 0x10
    	_SIGSTOP   = 0x11
    	_SIGTSTP   = 0x12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. 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)
  6. 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