Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for SIGTTIN (0.62 sec)

  1. src/os/timeout_test.go

    				}
    			}
    		}()
    	}
    }
    
    // Closing a TTY while reading from it should not hang.  Issue 23943.
    func TestTTYClose(t *testing.T) {
    	// Ignore SIGTTIN in case we are running in the background.
    	signal.Ignore(syscall.SIGTTIN)
    	defer signal.Reset(syscall.SIGTTIN)
    
    	f, err := os.Open("/dev/tty")
    	if err != nil {
    		t.Skipf("skipping because opening /dev/tty failed: %v", err)
    	}
    
    	go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  2. src/os/signal/doc.go

    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
    used by the shell for job control). The SIGPROF signal is handled
    directly by the Go runtime to implement runtime.CPUProfile. Other
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go

    	SIGPOLL   = syscall.Signal(0x16)
    	SIGPROF   = syscall.Signal(0x1d)
    	SIGPWR    = syscall.Signal(0x13)
    	SIGSTOP   = syscall.Signal(0x17)
    	SIGSYS    = syscall.Signal(0xc)
    	SIGTSTP   = syscall.Signal(0x18)
    	SIGTTIN   = syscall.Signal(0x1a)
    	SIGTTOU   = syscall.Signal(0x1b)
    	SIGURG    = syscall.Signal(0x15)
    	SIGUSR1   = syscall.Signal(0x10)
    	SIGUSR2   = syscall.Signal(0x11)
    	SIGVTALRM = syscall.Signal(0x1c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	SIGPROF   = syscall.Signal(0x1b)
    	SIGPWR    = syscall.Signal(0x1e)
    	SIGSTKFLT = syscall.Signal(0x10)
    	SIGSTOP   = syscall.Signal(0x13)
    	SIGSYS    = syscall.Signal(0x1f)
    	SIGTSTP   = syscall.Signal(0x14)
    	SIGTTIN   = syscall.Signal(0x15)
    	SIGTTOU   = syscall.Signal(0x16)
    	SIGURG    = syscall.Signal(0x17)
    	SIGUSR1   = syscall.Signal(0xa)
    	SIGUSR2   = syscall.Signal(0xc)
    	SIGVTALRM = syscall.Signal(0x1a)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go

    	SIGPROF   = syscall.Signal(0x1b)
    	SIGPWR    = syscall.Signal(0x1e)
    	SIGSTKFLT = syscall.Signal(0x10)
    	SIGSTOP   = syscall.Signal(0x13)
    	SIGSYS    = syscall.Signal(0x1f)
    	SIGTSTP   = syscall.Signal(0x14)
    	SIGTTIN   = syscall.Signal(0x15)
    	SIGTTOU   = syscall.Signal(0x16)
    	SIGURG    = syscall.Signal(0x17)
    	SIGUSR1   = syscall.Signal(0xa)
    	SIGUSR2   = syscall.Signal(0xc)
    	SIGVTALRM = syscall.Signal(0x1a)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go

    	SIGPROF   = syscall.Signal(0x1b)
    	SIGPWR    = syscall.Signal(0x1e)
    	SIGSTKFLT = syscall.Signal(0x10)
    	SIGSTOP   = syscall.Signal(0x13)
    	SIGSYS    = syscall.Signal(0x1f)
    	SIGTSTP   = syscall.Signal(0x14)
    	SIGTTIN   = syscall.Signal(0x15)
    	SIGTTOU   = syscall.Signal(0x16)
    	SIGURG    = syscall.Signal(0x17)
    	SIGUSR1   = syscall.Signal(0xa)
    	SIGUSR2   = syscall.Signal(0xc)
    	SIGVTALRM = syscall.Signal(0x1a)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  7. src/runtime/sigtab_aix.go

    	_SIGCONT:    {_SigNotify + _SigDefault, "SIGCONT: continue"},
    	_SIGSTOP:    {0, "SIGSTOP: stop"},
    	_SIGTSTP:    {_SigNotify + _SigDefault, "SIGTSTP: keyboard stop"},
    	_SIGTTIN:    {_SigNotify + _SigDefault, "SIGTTIN: background read from tty"},
    	_SIGTTOU:    {_SigNotify + _SigDefault, "SIGTTOU: background write to tty"},
    	_SIGURG:     {_SigNotify, "SIGURG: urgent condition on socket"},
    	_SIGXCPU:    {_SigNotify, "SIGXCPU: cpu limit exceeded"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 03 20:58:16 UTC 2018
    - 11.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    	SIGPROF   = syscall.Signal(0x1b)
    	SIGPWR    = syscall.Signal(0x1e)
    	SIGSTKFLT = syscall.Signal(0x10)
    	SIGSTOP   = syscall.Signal(0x13)
    	SIGSYS    = syscall.Signal(0x1f)
    	SIGTSTP   = syscall.Signal(0x14)
    	SIGTTIN   = syscall.Signal(0x15)
    	SIGTTOU   = syscall.Signal(0x16)
    	SIGURG    = syscall.Signal(0x17)
    	SIGUSR1   = syscall.Signal(0xa)
    	SIGUSR2   = syscall.Signal(0xc)
    	SIGVTALRM = syscall.Signal(0x1a)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go

    	SIGPROF   = syscall.Signal(0x1b)
    	SIGPWR    = syscall.Signal(0x1e)
    	SIGSTKFLT = syscall.Signal(0x10)
    	SIGSTOP   = syscall.Signal(0x13)
    	SIGSYS    = syscall.Signal(0x1f)
    	SIGTSTP   = syscall.Signal(0x14)
    	SIGTTIN   = syscall.Signal(0x15)
    	SIGTTOU   = syscall.Signal(0x16)
    	SIGURG    = syscall.Signal(0x17)
    	SIGUSR1   = syscall.Signal(0xa)
    	SIGUSR2   = syscall.Signal(0xc)
    	SIGVTALRM = syscall.Signal(0x1a)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go

    	SIGPOLL   = syscall.Signal(0x16)
    	SIGPROF   = syscall.Signal(0x1d)
    	SIGPWR    = syscall.Signal(0x13)
    	SIGSTOP   = syscall.Signal(0x17)
    	SIGSYS    = syscall.Signal(0xc)
    	SIGTSTP   = syscall.Signal(0x18)
    	SIGTTIN   = syscall.Signal(0x1a)
    	SIGTTOU   = syscall.Signal(0x1b)
    	SIGURG    = syscall.Signal(0x15)
    	SIGUSR1   = syscall.Signal(0x10)
    	SIGUSR2   = syscall.Signal(0x11)
    	SIGVTALRM = syscall.Signal(0x1c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
Back to top