Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for mc_unused (0.26 sec)

  1. src/runtime/defs_dragonfly_amd64.go

    	mc_rip      uint64
    	mc_cs       uint64
    	mc_rflags   uint64
    	mc_rsp      uint64
    	mc_ss       uint64
    	mc_len      uint32
    	mc_fpformat uint32
    	mc_ownedfp  uint32
    	mc_reserved uint32
    	mc_unused   [8]uint32
    	mc_fpregs   [256]int32
    }
    
    type ucontext struct {
    	uc_sigmask  sigset
    	pad_cgo_0   [48]byte
    	uc_mcontext mcontext
    	uc_link     *ucontext
    	uc_stack    stackt
    	__spare__   [8]int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. src/runtime/tracestatus.go

    	}
    	return w
    }
    
    // goStatusToTraceGoStatus translates the internal status to tracGoStatus.
    //
    // status must not be _Gdead or any status whose name has the suffix "_unused."
    func goStatusToTraceGoStatus(status uint32, wr waitReason) traceGoStatus {
    	// N.B. Ignore the _Gscan bit. We don't model it in the tracer.
    	var tgs traceGoStatus
    	switch status &^ _Gscan {
    	case _Grunnable:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Stat_t.X__pad0", Field, 0},
    		{"Stat_t.X__pad1", Field, 0},
    		{"Stat_t.X__pad2", Field, 0},
    		{"Stat_t.X__st_birthtim", Field, 2},
    		{"Stat_t.X__st_ino", Field, 0},
    		{"Stat_t.X__unused", Field, 0},
    		{"Statfs", Func, 0},
    		{"Statfs_t", Type, 0},
    		{"Statfs_t.Asyncreads", Field, 0},
    		{"Statfs_t.Asyncwrites", Field, 0},
    		{"Statfs_t.Bavail", Field, 0},
    		{"Statfs_t.Bfree", Field, 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)
Back to top