Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetSink (0.14 sec)

  1. go.sum

    github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0=
    github.com/mdlayher/netlink v1.6.0/go.mod h1:0o3PlBmGst1xve7wQ7j/hwpNaFaH4qCRyWCdcZk8/vA=
    github.com/mdlayher/netlink v1.7.2 h1:/UtM3ofJap7Vl4QWCPDGXY8d3GIY2UGSDbK+QWmY8/g=
    github.com/mdlayher/netlink v1.7.2/go.mod h1:xraEF7uJbxLhc5fpHL4cPe221LI2bdttWlU+ZGLfQSw=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    		}
    	}
    }
    
    // casGToPreemptScan transitions gp from _Grunning to _Gscan|_Gpreempted.
    //
    // TODO(austin): This is the only status operation that both changes
    // the status and locks the _Gscan bit. Rethink this.
    func casGToPreemptScan(gp *g, old, new uint32) {
    	if old != _Grunning || new != _Gscan|_Gpreempted {
    		throw("bad g transition")
    	}
    	acquireLockRankAndM(lockRankGscan)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top