Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 117 for sigreap (0.62 sec)

  1. src/runtime/signal_openbsd.go

    	/*  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: emulate instruction executed"},
    	/*  8 */ {_SigPanic + _SigUnblock, "SIGFPE: floating-point exception"},
    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/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go

    	SIGSTOP     = syscall.Signal(0x11)
    	SIGSYS      = syscall.Signal(0xc)
    	SIGSYSERROR = syscall.Signal(0x30)
    	SIGTALRM    = syscall.Signal(0x26)
    	SIGTERM     = syscall.Signal(0xf)
    	SIGTRAP     = syscall.Signal(0x5)
    	SIGTSTP     = syscall.Signal(0x12)
    	SIGTTIN     = syscall.Signal(0x15)
    	SIGTTOU     = syscall.Signal(0x16)
    	SIGURG      = syscall.Signal(0x10)
    	SIGUSR1     = syscall.Signal(0x1e)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.4K bytes
    - Viewed (0)
  3. src/runtime/sigtab_linux_generic.go

    	/* 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"},
    	/* 8 */ {_SigPanic + _SigUnblock, "SIGFPE: floating-point exception"},
    	/* 9 */ {0, "SIGKILL: kill"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  4. src/runtime/signal_solaris.go

    	/* 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"},
    	/* 7 */ {_SigThrow, "SIGEMT: EMT instruction"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 20:27:15 UTC 2019
    - 4.5K bytes
    - Viewed (0)
  5. src/internal/fuzz/sys_posix.go

    // 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)
    		syscall.SIGFPE,  // math error, e.g., integer divide by zero
    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

    	/*  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"},
    	/*  8 */ {_SigPanic + _SigUnblock, "SIGFPE: floating-point exception"},
    	/*  9 */ {0, "SIGKILL: kill"},
    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/os/signal/doc.go

    # 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)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	SIGSTOP     = syscall.Signal(0x11)
    	SIGSYS      = syscall.Signal(0xc)
    	SIGSYSERROR = syscall.Signal(0x30)
    	SIGTALRM    = syscall.Signal(0x26)
    	SIGTERM     = syscall.Signal(0xf)
    	SIGTRAP     = syscall.Signal(0x5)
    	SIGTSTP     = syscall.Signal(0x12)
    	SIGTTIN     = syscall.Signal(0x15)
    	SIGTTOU     = syscall.Signal(0x16)
    	SIGURG      = syscall.Signal(0x10)
    	SIGUSR1     = syscall.Signal(0x1e)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
  9. src/runtime/debug_test.go

    	"runtime/debug"
    	"sync/atomic"
    	"syscall"
    	"testing"
    )
    
    func startDebugCallWorker(t *testing.T) (g *runtime.G, after func()) {
    	// This can deadlock if run under a debugger because it
    	// depends on catching SIGTRAP, which is usually swallowed by
    	// a debugger.
    	skipUnderDebugger(t)
    
    	// This can deadlock if there aren't enough threads or if a GC
    	// tries to interrupt an atomic loop (see issue #10958). Execute
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 15:08:04 UTC 2023
    - 8K bytes
    - Viewed (0)
  10. 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
    	SIGURG
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top