Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 104 for SIGURG (0.08 sec)

  1. src/runtime/signal_darwin.go

    	/* 13 */ {_SigNotify, "SIGPIPE: write to broken pipe"},
    	/* 14 */ {_SigNotify, "SIGALRM: alarm clock"},
    	/* 15 */ {_SigNotify + _SigKill, "SIGTERM: termination"},
    	/* 16 */ {_SigNotify + _SigIgn, "SIGURG: urgent condition on socket"},
    	/* 17 */ {0, "SIGSTOP: stop"},
    	/* 18 */ {_SigNotify + _SigDefault + _SigIgn, "SIGTSTP: keyboard stop"},
    	/* 19 */ {_SigNotify + _SigDefault + _SigIgn, "SIGCONT: continue after stop"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:40:19 UTC 2017
    - 2.1K bytes
    - Viewed (0)
  2. src/runtime/signal_dragonfly.go

    	/* 13 */ {_SigNotify, "SIGPIPE: write to broken pipe"},
    	/* 14 */ {_SigNotify, "SIGALRM: alarm clock"},
    	/* 15 */ {_SigNotify + _SigKill, "SIGTERM: termination"},
    	/* 16 */ {_SigNotify + _SigIgn, "SIGURG: urgent condition on socket"},
    	/* 17 */ {0, "SIGSTOP: stop"},
    	/* 18 */ {_SigNotify + _SigDefault + _SigIgn, "SIGTSTP: keyboard stop"},
    	/* 19 */ {_SigNotify + _SigDefault + _SigIgn, "SIGCONT: continue after stop"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:40:19 UTC 2017
    - 2.2K bytes
    - Viewed (0)
  3. src/runtime/signal_netbsd.go

    	/* 13 */ {_SigNotify, "SIGPIPE: write to broken pipe"},
    	/* 14 */ {_SigNotify, "SIGALRM: alarm clock"},
    	/* 15 */ {_SigNotify + _SigKill, "SIGTERM: termination"},
    	/* 16 */ {_SigNotify + _SigIgn, "SIGURG: urgent condition on socket"},
    	/* 17 */ {0, "SIGSTOP: stop"},
    	/* 18 */ {_SigNotify + _SigDefault + _SigIgn, "SIGTSTP: keyboard stop"},
    	/* 19 */ {_SigNotify + _SigDefault + _SigIgn, "SIGCONT: continue after stop"},
    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_freebsd.go

    	/* 13 */ {_SigNotify, "SIGPIPE: write to broken pipe"},
    	/* 14 */ {_SigNotify, "SIGALRM: alarm clock"},
    	/* 15 */ {_SigNotify + _SigKill, "SIGTERM: termination"},
    	/* 16 */ {_SigNotify + _SigIgn, "SIGURG: urgent condition on socket"},
    	/* 17 */ {0, "SIGSTOP: stop"},
    	/* 18 */ {_SigNotify + _SigDefault + _SigIgn, "SIGTSTP: keyboard stop"},
    	/* 19 */ {_SigNotify + _SigDefault + _SigIgn, "SIGCONT: continue after stop"},
    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/signal_openbsd.go

    	/* 13 */ {_SigNotify, "SIGPIPE: write to broken pipe"},
    	/* 14 */ {_SigNotify, "SIGALRM: alarm clock"},
    	/* 15 */ {_SigNotify + _SigKill, "SIGTERM: termination"},
    	/* 16 */ {_SigNotify + _SigIgn, "SIGURG: urgent condition on socket"},
    	/* 17 */ {0, "SIGSTOP: stop"},
    	/* 18 */ {_SigNotify + _SigDefault + _SigIgn, "SIGTSTP: keyboard stop"},
    	/* 19 */ {_SigNotify + _SigDefault + _SigIgn, "SIGCONT: continue after stop"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 22 18:58:08 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  6. src/runtime/sigtab_linux_generic.go

    	/* 21 */ {_SigNotify + _SigDefault + _SigIgn, "SIGTTIN: background read from tty"},
    	/* 22 */ {_SigNotify + _SigDefault + _SigIgn, "SIGTTOU: background write to tty"},
    	/* 23 */ {_SigNotify + _SigIgn, "SIGURG: urgent condition on socket"},
    	/* 24 */ {_SigNotify, "SIGXCPU: cpu limit exceeded"},
    	/* 25 */ {_SigNotify, "SIGXFSZ: file size limit exceeded"},
    	/* 26 */ {_SigNotify, "SIGVTALRM: virtual 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)
  7. src/runtime/signal_solaris.go

    	/* 19 */ {_SigNotify, "SIGPWR: power-fail restart"},
    	/* 20 */ {_SigNotify + _SigIgn, "SIGWINCH: window size change"},
    	/* 21 */ {_SigNotify + _SigIgn, "SIGURG: urgent socket condition"},
    	/* 22 */ {_SigNotify, "SIGPOLL: pollable event occurred"},
    	/* 23 */ {0, "SIGSTOP: stop (cannot be caught or ignored)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 20:27:15 UTC 2019
    - 4.5K bytes
    - Viewed (0)
  8. src/os/signal/signal_test.go

    	waitSig(t, c, syscall.SIGHUP)
    
    	// Ask for everything we can get. The buffer size has to be
    	// more than 1, since the runtime might send SIGURG signals.
    	// Using 10 is arbitrary.
    	c1 := make(chan os.Signal, 10)
    	Notify(c1)
    	// Stop relaying the SIGURG signals. See #49724
    	Reset(syscall.SIGURG)
    	defer Stop(c1)
    
    	// Send this process a SIGWINCH
    	t.Logf("sigwinch...")
    	syscall.Kill(syscall.Getpid(), syscall.SIGWINCH)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 15:34:56 UTC 2023
    - 27.2K bytes
    - Viewed (0)
  9. src/runtime/sigtab_linux_mipsx.go

    	/*  19 */ {_SigNotify, "SIGPWR: power failure restart"},
    	/*  20 */ {_SigNotify + _SigIgn, "SIGWINCH: window size change"},
    	/*  21 */ {_SigNotify + _SigIgn, "SIGURG: urgent condition on socket"},
    	/*  22 */ {_SigNotify, "SIGIO: i/o now possible"},
    	/*  23 */ {0, "SIGSTOP: stop, unblockable"},
    	/*  24 */ {_SigNotify + _SigDefault + _SigIgn, "SIGTSTP: keyboard stop"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6K bytes
    - Viewed (0)
  10. src/syscall/syscall_wasip1.go

    	SIGTRAP
    	SIGABRT
    	SIGBUS
    	SIGFPE
    	SIGKILL
    	SIGUSR1
    	SIGSEGV
    	SIGUSR2
    	SIGPIPE
    	SIGALRM
    	SIGTERM
    	SIGCHLD
    	SIGCONT
    	SIGSTOP
    	SIGTSTP
    	SIGTTIN
    	SIGTTOU
    	SIGURG
    	SIGXCPU
    	SIGXFSZ
    	SIGVTARLM
    	SIGPROF
    	SIGWINCH
    	SIGPOLL
    	SIGPWR
    	SIGSYS
    )
    
    func (s Signal) Signal() {}
    
    func (s Signal) String() string {
    	switch s {
    	case SIGNONE:
    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