Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 117 for SIGPIPE (0.1 sec)

  1. src/internal/fuzz/sys_posix.go

    		syscall.SIGBUS,  // invalid memory access (e.g., misaligned address)
    		syscall.SIGFPE,  // math error, e.g., integer divide by zero
    		syscall.SIGSEGV, // invalid memory access (e.g., write to read-only)
    		syscall.SIGPIPE: // sent data to closed pipe or socket
    		return true
    	default:
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 12 19:47:40 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  2. src/runtime/sigtab_linux_mipsx.go

    	/*  10 */ {_SigPanic + _SigUnblock, "SIGBUS: bus error"},
    	/*  11 */ {_SigPanic + _SigUnblock, "SIGSEGV: segmentation violation"},
    	/*  12 */ {_SigThrow, "SIGSYS: bad system call"},
    	/*  13 */ {_SigNotify, "SIGPIPE: write to broken pipe"},
    	/*  14 */ {_SigNotify, "SIGALRM: alarm clock"},
    	/*  15 */ {_SigNotify + _SigKill, "SIGTERM: termination"},
    	/*  16 */ {_SigNotify, "SIGUSR1: user-defined signal 1"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/vcweb/hg.go

    		}
    		// We have read what should be the server URL. 'hg serve' shouldn't need to
    		// write anything else to stdout, but it's not a big deal if it does anyway.
    		// Keep the stdout pipe open so that 'hg serve' won't get a SIGPIPE, but
    		// actively discard its output so that it won't hang on a blocking write.
    		wg.Add(1)
    		go func() {
    			io.Copy(io.Discard, r)
    			wg.Done()
    		}()
    
    		u, err := url.Parse(strings.TrimSpace(line))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 02:52:19 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. src/runtime/defs_aix.go

    	_SIGABRT    = C.SIGABRT
    	_SIGBUS     = C.SIGBUS
    	_SIGFPE     = C.SIGFPE
    	_SIGKILL    = C.SIGKILL
    	_SIGUSR1    = C.SIGUSR1
    	_SIGSEGV    = C.SIGSEGV
    	_SIGUSR2    = C.SIGUSR2
    	_SIGPIPE    = C.SIGPIPE
    	_SIGALRM    = C.SIGALRM
    	_SIGCHLD    = C.SIGCHLD
    	_SIGCONT    = C.SIGCONT
    	_SIGSTOP    = C.SIGSTOP
    	_SIGTSTP    = C.SIGTSTP
    	_SIGTTIN    = C.SIGTTIN
    	_SIGTTOU    = C.SIGTTOU
    	_SIGURG     = C.SIGURG
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 20 21:27:51 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testcarchive/carchive_test.go

    	expectSignal(t, err, syscall.SIGSEGV, 0)
    
    	// SIGPIPE is never forwarded on darwin. See golang.org/issue/33384.
    	if runtime.GOOS != "darwin" && runtime.GOOS != "ios" {
    		// Test SIGPIPE forwarding
    		cmd = exec.Command(bin[0], append(bin[1:], "3")...)
    
    		out, err = cmd.CombinedOutput()
    		if len(out) > 0 {
    			t.Logf("%s", out)
    		}
    		expectSignal(t, err, syscall.SIGPIPE, 0)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  6. src/runtime/sigtab_aix.go

    	_SIGUSR1:    {_SigNotify, "SIGUSR1: user-defined signal 1"},
    	_SIGSEGV:    {_SigPanic + _SigUnblock, "SIGSEGV: segmentation violation"},
    	_SIGUSR2:    {_SigNotify, "SIGUSR2: user-defined signal 2"},
    	_SIGPIPE:    {_SigNotify, "SIGPIPE: write to broken pipe"},
    	_SIGALRM:    {_SigNotify, "SIGALRM: alarm clock"},
    	_SIGTERM:    {_SigNotify + _SigKill, "SIGTERM: termination"},
    	_SIGCHLD:    {_SigNotify + _SigUnblock, "SIGCHLD: child status has changed"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 03 20:58:16 UTC 2018
    - 11.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	SIGPOLL   = Signal(5)
    	SIGURG    = Signal(6)
    	SIGSTOP   = Signal(7)
    	SIGFPE    = Signal(8)
    	SIGKILL   = Signal(9)
    	SIGBUS    = Signal(10)
    	SIGSEGV   = Signal(11)
    	SIGSYS    = Signal(12)
    	SIGPIPE   = Signal(13)
    	SIGALRM   = Signal(14)
    	SIGTERM   = Signal(15)
    	SIGUSR1   = Signal(16)
    	SIGUSR2   = Signal(17)
    	SIGABND   = Signal(18)
    	SIGCONT   = Signal(19)
    	SIGCHLD   = Signal(20)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	SIGLOST     = syscall.Signal(0x6)
    	SIGMAX      = syscall.Signal(0xff)
    	SIGMAX32    = syscall.Signal(0x3f)
    	SIGMIGRATE  = syscall.Signal(0x23)
    	SIGMSG      = syscall.Signal(0x1b)
    	SIGPIPE     = syscall.Signal(0xd)
    	SIGPOLL     = syscall.Signal(0x17)
    	SIGPRE      = syscall.Signal(0x24)
    	SIGPROF     = syscall.Signal(0x20)
    	SIGPTY      = syscall.Signal(0x17)
    	SIGPWR      = syscall.Signal(0x1d)
    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/cmd/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go

    	SIGIOT     = syscall.Signal(0x6)
    	SIGJVM1    = syscall.Signal(0x27)
    	SIGJVM2    = syscall.Signal(0x28)
    	SIGKILL    = syscall.Signal(0x9)
    	SIGLOST    = syscall.Signal(0x25)
    	SIGLWP     = syscall.Signal(0x21)
    	SIGPIPE    = syscall.Signal(0xd)
    	SIGPOLL    = syscall.Signal(0x16)
    	SIGPROF    = syscall.Signal(0x1d)
    	SIGPWR     = syscall.Signal(0x13)
    	SIGQUIT    = syscall.Signal(0x3)
    	SIGSEGV    = syscall.Signal(0xb)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go

    	SIGILL    = syscall.Signal(0x4)
    	SIGINFO   = syscall.Signal(0x1d)
    	SIGINT    = syscall.Signal(0x2)
    	SIGIO     = syscall.Signal(0x17)
    	SIGIOT    = syscall.Signal(0x6)
    	SIGKILL   = syscall.Signal(0x9)
    	SIGPIPE   = syscall.Signal(0xd)
    	SIGPROF   = syscall.Signal(0x1b)
    	SIGQUIT   = syscall.Signal(0x3)
    	SIGSEGV   = syscall.Signal(0xb)
    	SIGSTOP   = syscall.Signal(0x11)
    	SIGSYS    = syscall.Signal(0xc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 78.6K bytes
    - Viewed (0)
Back to top