Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 117 of 117 for SIGPIPE (0.15 sec)

  1. src/internal/fuzz/worker.go

    	return &workerClient{workerComm: comm, m: m}
    }
    
    // Close shuts down the connection to the RPC server (the worker process) by
    // closing fuzz_in. Close drains fuzz_out (avoiding a SIGPIPE in the worker),
    // and closes it after the worker process closes the other end.
    func (wc *workerClient) Close() error {
    	wc.mu.Lock()
    	defer wc.mu.Unlock()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	SIGINT  = Signal(0x2)
    	SIGQUIT = Signal(0x3)
    	SIGILL  = Signal(0x4)
    	SIGTRAP = Signal(0x5)
    	SIGABRT = Signal(0x6)
    	SIGBUS  = Signal(0x7)
    	SIGFPE  = Signal(0x8)
    	SIGKILL = Signal(0x9)
    	SIGSEGV = Signal(0xb)
    	SIGPIPE = Signal(0xd)
    	SIGALRM = Signal(0xe)
    	SIGTERM = Signal(0xf)
    )
    
    var signals = [...]string{
    	1:  "hangup",
    	2:  "interrupt",
    	3:  "quit",
    	4:  "illegal instruction",
    	5:  "trace/breakpoint trap",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	SIGFPE  = syscall.Signal(0x8)
    	SIGHUP  = syscall.Signal(0x1)
    	SIGILL  = syscall.Signal(0x4)
    	SIGINT  = syscall.Signal(0x2)
    	SIGIOT  = syscall.Signal(0x6)
    	SIGKILL = syscall.Signal(0x9)
    	SIGPIPE = syscall.Signal(0xd)
    	SIGQUIT = syscall.Signal(0x3)
    	SIGSEGV = syscall.Signal(0xb)
    	SIGTERM = syscall.Signal(0xf)
    	SIGTRAP = syscall.Signal(0x5)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  4. src/os/exec/exec_test.go

    		// This test should kill the child process after 10ms,
    		// leaving a grandchild process writing probes in a loop.
    		// The child process should be reported as failed,
    		// and the grandchild will exit (or die by SIGPIPE) once the
    		// stderr pipe is closed.
    		if ee := new(*exec.ExitError); !errors.As(err, ee) {
    			t.Errorf("Wait error = %v; want %T", err, *ee)
    		}
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"SIGINFO", Const, 0},
    		{"SIGINT", Const, 0},
    		{"SIGIO", Const, 0},
    		{"SIGIOT", Const, 0},
    		{"SIGKILL", Const, 0},
    		{"SIGLIBRT", Const, 1},
    		{"SIGLWP", Const, 0},
    		{"SIGPIPE", Const, 0},
    		{"SIGPOLL", Const, 0},
    		{"SIGPROF", Const, 0},
    		{"SIGPWR", Const, 0},
    		{"SIGQUIT", Const, 0},
    		{"SIGSEGV", Const, 0},
    		{"SIGSTKFLT", Const, 0},
    		{"SIGSTOP", Const, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  6. api/go1.txt

    pkg syscall, const SIGFPE Signal
    pkg syscall, const SIGHUP Signal
    pkg syscall, const SIGILL Signal
    pkg syscall, const SIGINT Signal
    pkg syscall, const SIGKILL Signal
    pkg syscall, const SIGPIPE Signal
    pkg syscall, const SIGQUIT Signal
    pkg syscall, const SIGSEGV Signal
    pkg syscall, const SIGTERM Signal
    pkg syscall, const SIGTRAP Signal
    pkg syscall, const SOCK_DGRAM ideal-int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  7. api/go1.1.txt

    pkg syscall, const SIGALRM = 14
    pkg syscall, const SIGFPE = 8
    pkg syscall, const SIGHUP = 1
    pkg syscall, const SIGILL = 4
    pkg syscall, const SIGINT = 2
    pkg syscall, const SIGKILL = 9
    pkg syscall, const SIGPIPE = 13
    pkg syscall, const SIGQUIT = 3
    pkg syscall, const SIGSEGV = 11
    pkg syscall, const SIGTERM = 15
    pkg syscall, const SIGTRAP = 5
    pkg syscall, const SOCK_DGRAM = 2
    pkg syscall, const SOCK_RAW = 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top