Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for dumpotherroot (0.12 sec)

  1. src/runtime/heapdump.go

    }
    
    // dump an object.
    func dumpobj(obj unsafe.Pointer, size uintptr, bv bitvector) {
    	dumpint(tagObject)
    	dumpint(uint64(uintptr(obj)))
    	dumpmemrange(obj, size)
    	dumpfields(bv)
    }
    
    func dumpotherroot(description string, to unsafe.Pointer) {
    	dumpint(tagOtherRoot)
    	dumpstr(description)
    	dumpint(uint64(uintptr(to)))
    }
    
    func dumpfinalizer(obj unsafe.Pointer, fn *funcval, fint *_type, ot *ptrtype) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top