Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for callerExhaust (0.16 sec)

  1. src/runtime/testdata/testprog/coro.go

    	"iter"
    	"runtime"
    )
    
    func init() {
    	register("CoroLockOSThreadIterLock", func() {
    		println("expect: OK")
    		CoroLockOSThread(callerExhaust, iterLock)
    	})
    	register("CoroLockOSThreadIterLockYield", func() {
    		println("expect: OS thread locking must match")
    		CoroLockOSThread(callerExhaust, iterLockYield)
    	})
    	register("CoroLockOSThreadLock", func() {
    		println("expect: OK")
    		CoroLockOSThread(callerExhaustLocked, iterSimple)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. src/runtime/testdata/testprogcgo/coro.go

    import (
    	"fmt"
    	"iter"
    	"runtime/cgo"
    )
    
    func init() {
    	register("CoroCgoIterCallback", func() {
    		println("expect: OK")
    		CoroCgo(callerExhaust, iterCallback)
    	})
    	register("CoroCgoIterCallbackYield", func() {
    		println("expect: OS thread locking must match")
    		CoroCgo(callerExhaust, iterCallbackYield)
    	})
    	register("CoroCgoCallback", func() {
    		println("expect: OK")
    		CoroCgo(callerExhaustCallback, iterSimple)
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top