Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 108 for SIGILL (0.11 sec)

  1. src/vendor/golang.org/x/sys/cpu/cpu_linux_arm64.go

    		// trap into the kernel and then return back to userspace.
    		//
    		// But on older kernels, such as Linux 4.4.180 as used on many Synology
    		// devices, calling readARM64Registers (specifically getisar0) will
    		// cause a SIGILL and we'll die. So for older kernels, parse /proc/cpuinfo
    		// instead.
    		//
    		// See golang/go#57336.
    		if linuxKernelCanEmulateCPUID() {
    			readARM64Registers()
    		} else {
    			readLinuxProcCPUInfo()
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. src/runtime/sigtab_linux_generic.go

    	/* 1 */ {_SigNotify + _SigKill, "SIGHUP: terminal line hangup"},
    	/* 2 */ {_SigNotify + _SigKill, "SIGINT: interrupt"},
    	/* 3 */ {_SigNotify + _SigThrow, "SIGQUIT: quit"},
    	/* 4 */ {_SigThrow + _SigUnblock, "SIGILL: illegal instruction"},
    	/* 5 */ {_SigThrow + _SigUnblock, "SIGTRAP: trace trap"},
    	/* 6 */ {_SigNotify + _SigThrow, "SIGABRT: abort"},
    	/* 7 */ {_SigPanic + _SigUnblock, "SIGBUS: bus error"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  3. src/runtime/signal_solaris.go

    	/* 1 */ {_SigNotify + _SigKill, "SIGHUP: hangup"},
    	/* 2 */ {_SigNotify + _SigKill, "SIGINT: interrupt (rubout)"},
    	/* 3 */ {_SigNotify + _SigThrow, "SIGQUIT: quit (ASCII FS)"},
    	/* 4 */ {_SigThrow + _SigUnblock, "SIGILL: illegal instruction (not reset when caught)"},
    	/* 5 */ {_SigThrow + _SigUnblock, "SIGTRAP: trace trap (not reset when caught)"},
    	/* 6 */ {_SigNotify + _SigThrow, "SIGABRT: used by abort, replace SIGIOT in the future"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 20:27:15 UTC 2019
    - 4.5K bytes
    - Viewed (0)
  4. src/os/signal/doc.go

    with a stack dump by pressing ^\.
    
    # Default behavior of signals in Go programs
    
    By default, a synchronous signal is converted into a run-time panic. A
    SIGHUP, SIGINT, or SIGTERM signal causes the program to exit. A
    SIGQUIT, SIGILL, SIGTRAP, SIGABRT, SIGSTKFLT, SIGEMT, or SIGSYS signal
    causes the program to exit with a stack dump. A SIGTSTP, SIGTTIN, or
    SIGTTOU signal gets the system default behavior (these signals are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. src/internal/fuzz/sys_posix.go

    // SIGSEGV is normally transformed into a panic that causes the process to exit
    // with status 2 if not recovered, which we handle as a crash.
    func isCrashSignal(signal os.Signal) bool {
    	switch signal {
    	case
    		syscall.SIGILL,  // illegal instruction
    		syscall.SIGTRAP, // breakpoint
    		syscall.SIGABRT, // abort() called
    		syscall.SIGBUS,  // invalid memory access (e.g., misaligned address)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 12 19:47:40 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  6. src/runtime/sigtab_linux_mipsx.go

    	/*  1 */ {_SigNotify + _SigKill, "SIGHUP: terminal line hangup"},
    	/*  2 */ {_SigNotify + _SigKill, "SIGINT: interrupt"},
    	/*  3 */ {_SigNotify + _SigThrow, "SIGQUIT: quit"},
    	/*  4 */ {_SigThrow + _SigUnblock, "SIGILL: illegal instruction"},
    	/*  5 */ {_SigThrow + _SigUnblock, "SIGTRAP: trace trap"},
    	/*  6 */ {_SigNotify + _SigThrow, "SIGABRT: abort"},
    	/*  7 */ {_SigThrow, "SIGEMT"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6K bytes
    - Viewed (0)
  7. src/syscall/syscall_wasip1.go

    }
    
    // A Signal is a number describing a process signal.
    // It implements the [os.Signal] interface.
    type Signal uint8
    
    const (
    	SIGNONE Signal = iota
    	SIGHUP
    	SIGINT
    	SIGQUIT
    	SIGILL
    	SIGTRAP
    	SIGABRT
    	SIGBUS
    	SIGFPE
    	SIGKILL
    	SIGUSR1
    	SIGSEGV
    	SIGUSR2
    	SIGPIPE
    	SIGALRM
    	SIGTERM
    	SIGCHLD
    	SIGCONT
    	SIGSTOP
    	SIGTSTP
    	SIGTTIN
    	SIGTTOU
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. src/runtime/defs_aix.go

    	_MAP_PRIVATE   = C.MAP_PRIVATE
    	_MAP_FIXED     = C.MAP_FIXED
    	_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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 20 21:27:51 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. src/runtime/sigtab_aix.go

    	_SIGHUP:     {_SigNotify + _SigKill, "SIGHUP: terminal line hangup"},
    	_SIGINT:     {_SigNotify + _SigKill, "SIGINT: interrupt"},
    	_SIGQUIT:    {_SigNotify + _SigThrow, "SIGQUIT: quit"},
    	_SIGILL:     {_SigThrow + _SigUnblock, "SIGILL: illegal instruction"},
    	_SIGTRAP:    {_SigThrow + _SigUnblock, "SIGTRAP: trace trap"},
    	_SIGABRT:    {_SigNotify + _SigThrow, "SIGABRT: abort"},
    	_SIGBUS:     {_SigPanic + _SigUnblock, "SIGBUS: bus error"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 03 20:58:16 UTC 2018
    - 11.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	EINTRNODATA        = Errno(1159)
    	ENOREUSE           = Errno(1160)
    	ENOMOVE            = Errno(1161)
    )
    
    // Signals
    const (
    	SIGHUP    = Signal(1)
    	SIGINT    = Signal(2)
    	SIGABRT   = Signal(3)
    	SIGILL    = Signal(4)
    	SIGPOLL   = Signal(5)
    	SIGURG    = Signal(6)
    	SIGSTOP   = Signal(7)
    	SIGFPE    = Signal(8)
    	SIGKILL   = Signal(9)
    	SIGBUS    = Signal(10)
    	SIGSEGV   = Signal(11)
    	SIGSYS    = Signal(12)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
Back to top