Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for printunlock (0.21 sec)

  1. src/runtime/mgcmark.go

    			continue
    		}
    		obj.setRecord(nil) // Don't scan it again.
    		if stackTraceDebug {
    			printlock()
    			print("  live stkobj at", hex(state.stack.lo+uintptr(obj.off)), "of size", obj.size)
    			if conservative {
    				print(" (conservative)")
    			}
    			println()
    			printunlock()
    		}
    		gcdata := r.gcdata()
    		var s *mspan
    		if r.useGCProg() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    			gcController.globalsScan.Load()>>20, " MB globals, ",
    			work.maxprocs, " P")
    		if work.userForced {
    			print(" (forced)")
    		}
    		print("\n")
    		printunlock()
    	}
    
    	// Set any arena chunks that were deferred to fault.
    	lock(&userArenaState.lock)
    	faultList := userArenaState.fault
    	userArenaState.fault = nil
    	unlock(&userArenaState.lock)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. src/runtime/mgcscavenge.go

    	)
    	if forced {
    		print(" (forced)")
    	} else if scavenger.printControllerReset {
    		print(" [controller reset]")
    		scavenger.printControllerReset = false
    	}
    	println()
    	printunlock()
    }
    
    // scavengeOne walks over the chunk at chunk index ci and searches for
    // a contiguous run of pages to scavenge. It will try to scavenge
    // at most max bytes at once, but may scavenge more to avoid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. src/runtime/mgcpacer.go

    		live := c.heapLive.Load()
    		print("in ", c.triggered, " B -> ", live, " B (∆goal ", int64(live)-int64(c.lastHeapGoal), ", cons/mark ", oldConsMark, ")")
    		println()
    		printunlock()
    	}
    }
    
    // enlistWorker encourages another dedicated mark worker to start on
    // another P if there are spare worker slots. It is used by putfull
    // when more work is made available.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

            }
    
            void add(Statement statement) {
                body.add(statement);
            }
    
            @Override
            public void writeCodeTo(PrettyPrinter printer) {
                printer.printBlock(blockSelector, body);
            }
        }
    
        private static class ScriptBlock extends BlockStatement {
            ScriptBlock(String comment, String blockSelector) {
                super(comment, blockSelector);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  6. src/runtime/mbitmap.go

    	// the Go heap. It may also indicate a runtime
    	// bug.
    	//
    	// TODO(austin): We could be more aggressive
    	// and detect pointers to unallocated objects
    	// in allocated spans.
    	printlock()
    	print("runtime: pointer ", hex(p))
    	if s != nil {
    		state := s.state.get()
    		if state != mSpanInUse {
    			print(" to unallocated span")
    		} else {
    			print(" to unused region of span")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
Back to top