Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for stopTheWorldGC (0.28 sec)

  1. src/runtime/proc.go

    	releasem(mp)
    }
    
    // stopTheWorldGC has the same effect as stopTheWorld, but blocks
    // until the GC is not running. It also blocks a GC from starting
    // until startTheWorldGC is called.
    func stopTheWorldGC(reason stwReason) worldStop {
    	semacquire(&gcsema)
    	return stopTheWorld(reason)
    }
    
    // startTheWorldGC undoes the effects of stopTheWorldGC.
    //
    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