Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 129 for SIGSEGV (0.09 sec)

  1. src/runtime/signal_openbsd.go

    	/*  8 */ {_SigPanic + _SigUnblock, "SIGFPE: floating-point exception"},
    	/*  9 */ {0, "SIGKILL: kill"},
    	/* 10 */ {_SigPanic + _SigUnblock, "SIGBUS: bus error"},
    	/* 11 */ {_SigPanic + _SigUnblock, "SIGSEGV: segmentation violation"},
    	/* 12 */ {_SigThrow, "SIGSYS: bad system call"},
    	/* 13 */ {_SigNotify, "SIGPIPE: write to broken pipe"},
    	/* 14 */ {_SigNotify, "SIGALRM: alarm clock"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 22 18:58:08 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  2. src/runtime/signal_darwin.go

    	/* 8 */ {_SigPanic + _SigUnblock, "SIGFPE: floating-point exception"},
    	/* 9 */ {0, "SIGKILL: kill"},
    	/* 10 */ {_SigPanic + _SigUnblock, "SIGBUS: bus error"},
    	/* 11 */ {_SigPanic + _SigUnblock, "SIGSEGV: segmentation violation"},
    	/* 12 */ {_SigThrow, "SIGSYS: bad system call"},
    	/* 13 */ {_SigNotify, "SIGPIPE: write to broken pipe"},
    	/* 14 */ {_SigNotify, "SIGALRM: alarm clock"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:40:19 UTC 2017
    - 2.1K bytes
    - Viewed (0)
  3. src/runtime/signal_dragonfly.go

    	/* 8 */ {_SigPanic + _SigUnblock, "SIGFPE: floating-point exception"},
    	/* 9 */ {0, "SIGKILL: kill"},
    	/* 10 */ {_SigPanic + _SigUnblock, "SIGBUS: bus error"},
    	/* 11 */ {_SigPanic + _SigUnblock, "SIGSEGV: segmentation violation"},
    	/* 12 */ {_SigThrow, "SIGSYS: bad system call"},
    	/* 13 */ {_SigNotify, "SIGPIPE: write to broken pipe"},
    	/* 14 */ {_SigNotify, "SIGALRM: alarm clock"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:40:19 UTC 2017
    - 2.2K bytes
    - Viewed (0)
  4. src/runtime/signal_netbsd.go

    	/*  8 */ {_SigPanic + _SigUnblock, "SIGFPE: floating-point exception"},
    	/*  9 */ {0, "SIGKILL: kill"},
    	/* 10 */ {_SigPanic + _SigUnblock, "SIGBUS: bus error"},
    	/* 11 */ {_SigPanic + _SigUnblock, "SIGSEGV: segmentation violation"},
    	/* 12 */ {_SigThrow, "SIGSYS: bad system call"},
    	/* 13 */ {_SigNotify, "SIGPIPE: write to broken pipe"},
    	/* 14 */ {_SigNotify, "SIGALRM: alarm clock"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:40:19 UTC 2017
    - 2.2K bytes
    - Viewed (0)
  5. src/runtime/sigtab_linux_generic.go

    	/* 8 */ {_SigPanic + _SigUnblock, "SIGFPE: floating-point exception"},
    	/* 9 */ {0, "SIGKILL: kill"},
    	/* 10 */ {_SigNotify, "SIGUSR1: user-defined signal 1"},
    	/* 11 */ {_SigPanic + _SigUnblock, "SIGSEGV: segmentation violation"},
    	/* 12 */ {_SigNotify, "SIGUSR2: user-defined signal 2"},
    	/* 13 */ {_SigNotify, "SIGPIPE: write to broken pipe"},
    	/* 14 */ {_SigNotify, "SIGALRM: alarm clock"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  6. src/runtime/signal_solaris.go

    	/* 8 */ {_SigPanic + _SigUnblock, "SIGFPE: floating point exception"},
    	/* 9 */ {0, "SIGKILL: kill (cannot be caught or ignored)"},
    	/* 10 */ {_SigPanic + _SigUnblock, "SIGBUS: bus error"},
    	/* 11 */ {_SigPanic + _SigUnblock, "SIGSEGV: segmentation violation"},
    	/* 12 */ {_SigThrow, "SIGSYS: bad argument to system call"},
    	/* 13 */ {_SigNotify, "SIGPIPE: write on a pipe with no one to read it"},
    	/* 14 */ {_SigNotify, "SIGALRM: alarm clock"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 20:27:15 UTC 2019
    - 4.5K bytes
    - Viewed (0)
  7. src/runtime/sigtab_linux_mipsx.go

    	/*  8 */ {_SigPanic + _SigUnblock, "SIGFPE: floating-point exception"},
    	/*  9 */ {0, "SIGKILL: kill"},
    	/*  10 */ {_SigPanic + _SigUnblock, "SIGBUS: bus error"},
    	/*  11 */ {_SigPanic + _SigUnblock, "SIGSEGV: segmentation violation"},
    	/*  12 */ {_SigThrow, "SIGSYS: bad system call"},
    	/*  13 */ {_SigNotify, "SIGPIPE: write to broken pipe"},
    	/*  14 */ {_SigNotify, "SIGALRM: alarm clock"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6K bytes
    - Viewed (0)
  8. src/syscall/syscall_wasip1.go

    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
    	SIGURG
    	SIGXCPU
    	SIGXFSZ
    	SIGVTARLM
    	SIGPROF
    	SIGWINCH
    	SIGPOLL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. src/runtime/defs_aix.go

    	_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
    	_SIGCONT    = C.SIGCONT
    	_SIGSTOP    = C.SIGSTOP
    	_SIGTSTP    = C.SIGTSTP
    	_SIGTTIN    = C.SIGTTIN
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 20 21:27:51 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. src/os/signal/doc.go

    The signals SIGKILL and SIGSTOP may not be caught by a program, and
    therefore cannot be affected by this package.
    
    Synchronous signals are signals triggered by errors in program
    execution: SIGBUS, SIGFPE, and SIGSEGV. These are only considered
    synchronous when caused by program execution, not when sent using
    [os.Process.Kill] or the kill program or some similar mechanism. In
    general, except as discussed below, Go programs will convert a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top