Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestGoroutineParallelism (0.25 sec)

  1. src/runtime/proc_test.go

    		for i := 0; i < N; i++ {
    			runtime.Gosched()
    			time.Sleep(time.Millisecond)
    		}
    		c <- true
    		// runtime.UnlockOSThread() is deliberately omitted
    	}()
    	<-c
    }
    
    func TestGoroutineParallelism(t *testing.T) {
    	if runtime.NumCPU() == 1 {
    		// Takes too long, too easy to deadlock, etc.
    		t.Skip("skipping on uniprocessor")
    	}
    	P := 4
    	N := 10
    	if testing.Short() {
    		P = 3
    		N = 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.8K bytes
    - Viewed (0)
Back to top