Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for strsignal (0.16 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	if !w.Signaled() {
    		return -1
    	}
    	return syscall.Signal(w & mask)
    }
    
    func (w WaitStatus) StopSignal() syscall.Signal {
    	if !w.Stopped() {
    		return -1
    	}
    	return syscall.Signal(w>>shift) & 0xFF
    }
    
    func (w WaitStatus) TrapCause() int {
    	if w.StopSignal() != SIGTRAP {
    		return -1
    	}
    	return int(w>>shift) >> 8
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  2. src/syscall/syscall_windows.go

    func (w WaitStatus) CoreDump() bool { return false }
    
    func (w WaitStatus) Stopped() bool { return false }
    
    func (w WaitStatus) Continued() bool { return false }
    
    func (w WaitStatus) StopSignal() Signal { return -1 }
    
    func (w WaitStatus) Signaled() bool { return false }
    
    func (w WaitStatus) TrapCause() int { return -1 }
    
    // Timespec is an invented structure on Windows, but here for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    func (w WaitStatus) CoreDump() bool { return false }
    
    func (w WaitStatus) Stopped() bool { return false }
    
    func (w WaitStatus) Continued() bool { return false }
    
    func (w WaitStatus) StopSignal() Signal { return -1 }
    
    func (w WaitStatus) Signaled() bool { return false }
    
    func (w WaitStatus) TrapCause() int { return -1 }
    
    // Timespec is an invented structure on Windows, but here for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    		return -1
    	}
    	return int(w>>shift) & 0xFF
    }
    
    func (w WaitStatus) Signal() Signal {
    	if !w.Signaled() {
    		return -1
    	}
    	return Signal(w & mask)
    }
    
    func (w WaitStatus) StopSignal() Signal {
    	if !w.Stopped() {
    		return -1
    	}
    	return Signal(w>>shift) & 0xFF
    }
    
    func (w WaitStatus) TrapCause() int { return -1 }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
Back to top