Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for SIGCANCEL (0.14 sec)

  1. src/os/signal/doc.go

    generally be honored. However, some signals are explicitly unblocked:
    the synchronous signals, SIGILL, SIGTRAP, SIGSTKFLT, SIGCHLD, SIGPROF,
    and, on Linux, signals 32 (SIGCANCEL) and 33 (SIGSETXID)
    (SIGCANCEL and SIGSETXID are used internally by glibc). Subprocesses
    started by [os.Exec], or by [os/exec], will inherit the
    modified signal mask.
    
    # Changing the behavior of signals in Go programs
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go

    	EXFULL          = syscall.Errno(0x34)
    )
    
    // Signals
    const (
    	SIGABRT    = syscall.Signal(0x6)
    	SIGALRM    = syscall.Signal(0xe)
    	SIGBUS     = syscall.Signal(0xa)
    	SIGCANCEL  = syscall.Signal(0x24)
    	SIGCHLD    = syscall.Signal(0x12)
    	SIGCLD     = syscall.Signal(0x12)
    	SIGCONT    = syscall.Signal(0x19)
    	SIGEMT     = syscall.Signal(0x7)
    	SIGFPE     = syscall.Signal(0x8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59K bytes
    - Viewed (0)
  3. src/runtime/signal_unix.go

    		// mstart(), the combined runtime can deadlock if
    		// these signals are blocked. Thus, don't block these
    		// signals when exiting threads.
    		// - glibc: SIGCANCEL (32), SIGSETXID (33)
    		// - musl: SIGTIMER (32), SIGCANCEL (33), SIGSYNCCALL (34)
    		sigdelset(&res, 32)
    		sigdelset(&res, 33)
    		sigdelset(&res, 34)
    	}
    
    	return res
    }()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  4. src/runtime/os_linux.go

    		//
    		// QEMU turns calls to the sigaction system call into
    		// calls to the C library sigaction call; the C
    		// library call rejects attempts to call sigaction for
    		// SIGCANCEL (32) or SIGSETXID (33).
    		//
    		// QEMU rejects calling sigaction on SIGRTMAX (64).
    		//
    		// Just ignore the error in these case. There isn't
    		// anything we can do about it anyhow.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  5. src/syscall/zerrors_solaris_amd64.go

    	EXDEV           = Errno(0x12)
    	EXFULL          = Errno(0x34)
    )
    
    // Signals
    const (
    	SIGABRT    = Signal(0x6)
    	SIGALRM    = Signal(0xe)
    	SIGBUS     = Signal(0xa)
    	SIGCANCEL  = Signal(0x24)
    	SIGCHLD    = Signal(0x12)
    	SIGCLD     = Signal(0x12)
    	SIGCONT    = Signal(0x19)
    	SIGEMT     = Signal(0x7)
    	SIGFPE     = Signal(0x8)
    	SIGFREEZE  = Signal(0x22)
    	SIGHUP     = Signal(0x1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
Back to top