Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for adjustsudogs (0.24 sec)

  1. src/runtime/stack.go

    }
    
    func adjustpanics(gp *g, adjinfo *adjustinfo) {
    	// Panics are on stack and already adjusted.
    	// Update pointer to head of list in G.
    	adjustpointer(adjinfo, unsafe.Pointer(&gp._panic))
    }
    
    func adjustsudogs(gp *g, adjinfo *adjustinfo) {
    	// the data elements pointed to by a SudoG structure
    	// might be in the stack.
    	for s := gp.waiting; s != nil; s = s.waitlink {
    		adjustpointer(adjinfo, unsafe.Pointer(&s.elem))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
Back to top