Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 42 of 42 for signalList (1.06 sec)

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

    	{95, "ENOTRECOVERABLE", "state not recoverable"},
    	{96, "EOWNERDEAD", "previous owner died"},
    	{97, "EINTEGRITY", "integrity check failed"},
    }
    
    // Signal table
    var signalList = [...]struct {
    	num  syscall.Signal
    	name string
    	desc string
    }{
    	{1, "SIGHUP", "hangup"},
    	{2, "SIGINT", "interrupt"},
    	{3, "SIGQUIT", "quit"},
    	{4, "SIGILL", "illegal instruction"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 79.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types/type.go

    // CMPeq, CMPgt as t<x, t==x, t>x, for an arbitrary
    // and optimizer-centric notion of comparison.
    // TODO(josharian): make this safe for recursive interface types
    // and use in signatlist sorting. See issue 19869.
    func (t *Type) cmp(x *Type) Cmp {
    	// This follows the structure of function identical in identity.go
    	// with two exceptions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
Back to top