Searched defs:sudog (Results 1 – 5 of 5) sorted by relevance
/aosp_15_r20/prebuilts/go/linux-x86/src/runtime/ |
D | chan.go | 305 func send(c *hchan, sg *sudog, ep unsafe.Pointer, unlockf func(), skip int) { 375 func sendDirect(t *_type, sg *sudog, src unsafe.Pointer) { 388 func recvDirect(t *_type, sg *sudog, dst unsafe.Pointer) { 674 func recv(c *hchan, sg *sudog, ep unsafe.Pointer, unlockf func(), skip int) { 895 func racesync(c *hchan, sg *sudog) { 905 func racenotify(c *hchan, idx uint, sg *sudog) {
|
D | runtime2.go | 356 type sudog struct { struct 361 g *g member 363 next *sudog 364 prev *sudog 365 elem unsafe.Pointer // data element (may point to stack) 372 acquiretime int64 373 releasetime int64 374 ticket uint32 378 isSelect bool 384 success bool [all …]
|
D | select.go | 611 func (q *waitq) dequeueSudoG(sgp *sudog) {
|
D | sema.go | 113 func readyWithTime(s *sudog, traceskip int) {
|
D | proc.go | 488 func releaseSudog(s *sudog) {
|