Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 327 for SIGNAL (0.2 sec)

  1. src/runtime/sigtab_aix.go

    	43:          {_SigNotify, "signal 43"},
    	44:          {_SigNotify, "signal 44"},
    	45:          {_SigNotify, "signal 45"},
    	46:          {_SigNotify, "signal 46"},
    	47:          {_SigNotify, "signal 47"},
    	48:          {_SigNotify, "signal 48"},
    	49:          {_SigNotify, "signal 49"},
    	50:          {_SigNotify, "signal 50"},
    	51:          {_SigNotify, "signal 51"},
    	52:          {_SigNotify, "signal 52"},
    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

    		flags = sigtable[sig].flags
    	}
    
    	// If the signal is ignored, raising the signal is no-op.
    	if handler == _SIG_IGN || (handler == _SIG_DFL && flags&_SigIgn != 0) {
    		return
    	}
    
    	// Reset the signal handler and raise the signal.
    	// We are currently running inside a signal handler, so the
    	// signal is blocked. We need to unblock it before raising the
    	// signal, or the signal we raise will be ignored until we return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  3. src/syscall/zerrors_aix_ppc64.go

    	SIGTERM     = Signal(0xf)
    	SIGTRAP     = Signal(0x5)
    	SIGTSTP     = Signal(0x12)
    	SIGTTIN     = Signal(0x15)
    	SIGTTOU     = Signal(0x16)
    	SIGURG      = Signal(0x10)
    	SIGUSR1     = Signal(0x1e)
    	SIGUSR2     = Signal(0x1f)
    	SIGVIRT     = Signal(0x25)
    	SIGVTALRM   = Signal(0x22)
    	SIGWAITING  = Signal(0x27)
    	SIGWINCH    = Signal(0x1c)
    	SIGXCPU     = Signal(0x18)
    	SIGXFSZ     = Signal(0x19)
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 16:18:12 UTC 2019
    - 47.2K bytes
    - Viewed (0)
  4. src/os/signal/doc.go

    handler.
    
    Go code built with -buildmode=c-archive or -buildmode=c-shared will
    not install any other signal handlers by default. If there is an
    existing signal handler, the Go runtime will turn on the SA_ONSTACK
    flag and otherwise keep the signal handler. If Notify is called for an
    asynchronous signal, a Go signal handler will be installed for that
    signal. If, later, Reset is called for that signal, the original
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/LockOnDemandCrossProcessCacheAccessTest.groovy

            when:
            contendedAction.accept(signal)
    
            then:
            1 * lock.close()
            1 * signal.trigger()
            0 * _
        }
    
        def "releases retained lock at completion of action on contention"() {
            def action = Mock(Supplier)
            def lock = Mock(FileLock)
            def signal = Mock(FileLockReleasedSignal)
            Consumer contendedAction
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    // Signals
    const (
    	SIGBUS    = syscall.Signal(0x7)
    	SIGCHLD   = syscall.Signal(0x11)
    	SIGCLD    = syscall.Signal(0x11)
    	SIGCONT   = syscall.Signal(0x12)
    	SIGIO     = syscall.Signal(0x1d)
    	SIGPOLL   = syscall.Signal(0x1d)
    	SIGPROF   = syscall.Signal(0x1b)
    	SIGPWR    = syscall.Signal(0x1e)
    	SIGSTKFLT = syscall.Signal(0x10)
    	SIGSTOP   = syscall.Signal(0x13)
    	SIGSYS    = syscall.Signal(0x1f)
    	SIGTSTP   = syscall.Signal(0x14)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  7. src/os/signal/signal_test.go

    }
    
    func waitSig(t *testing.T, c <-chan os.Signal, sig os.Signal) {
    	t.Helper()
    	waitSig1(t, c, sig, false)
    }
    func waitSigAll(t *testing.T, c <-chan os.Signal, sig os.Signal) {
    	t.Helper()
    	waitSig1(t, c, sig, true)
    }
    
    func waitSig1(t *testing.T, c <-chan os.Signal, sig os.Signal, all bool) {
    	t.Helper()
    
    	// Sleep multiple times to give the kernel more tries to
    	// deliver the signal.
    	start := time.Now()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 15:34:56 UTC 2023
    - 27.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	SIGUSR2   = Signal(17)
    	SIGABND   = Signal(18)
    	SIGCONT   = Signal(19)
    	SIGCHLD   = Signal(20)
    	SIGTTIN   = Signal(21)
    	SIGTTOU   = Signal(22)
    	SIGIO     = Signal(23)
    	SIGQUIT   = Signal(24)
    	SIGTSTP   = Signal(25)
    	SIGTRAP   = Signal(26)
    	SIGIOERR  = Signal(27)
    	SIGWINCH  = Signal(28)
    	SIGXCPU   = Signal(29)
    	SIGXFSZ   = Signal(30)
    	SIGVTALRM = Signal(31)
    	SIGPROF   = Signal(32)
    	SIGDANGER = Signal(33)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go

    // Signals
    const (
    	SIGBUS    = syscall.Signal(0xa)
    	SIGCHLD   = syscall.Signal(0x12)
    	SIGCLD    = syscall.Signal(0x12)
    	SIGCONT   = syscall.Signal(0x19)
    	SIGEMT    = syscall.Signal(0x7)
    	SIGIO     = syscall.Signal(0x16)
    	SIGPOLL   = syscall.Signal(0x16)
    	SIGPROF   = syscall.Signal(0x1d)
    	SIGPWR    = syscall.Signal(0x13)
    	SIGSTOP   = syscall.Signal(0x17)
    	SIGSYS    = syscall.Signal(0xc)
    	SIGTSTP   = syscall.Signal(0x18)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  10. src/runtime/os_darwin.go

    // because the functions pthread_mutex_lock, pthread_cond_signal, and
    // pthread_mutex_unlock, called by semawakeup, are not async-signal-safe.
    // There is only one case where we need to wake up a note from a signal
    // handler: the sigsend function. The signal handler code does not require
    // all the features of notes: it does not need to do a timed wait.
    // This is a separate implementation of notes, based on a pipe, that does
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top