Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for printBacklog (0.15 sec)

  1. src/runtime/print.go

    	sp := stringStructOf(&s)
    	rp.array = sp.str
    	rp.len = sp.len
    	rp.cap = sp.len
    	return
    }
    
    var (
    	// printBacklog is a circular buffer of messages written with the builtin
    	// print* functions, for use in postmortem analysis of core dumps.
    	printBacklog      [512]byte
    	printBacklogIndex int
    )
    
    // recordForPanic maintains a circular buffer of messages written by the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 03:27:26 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top