Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for plainError (0.48 sec)

  1. src/runtime/map.go

    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname mapassign
    func mapassign(t *maptype, h *hmap, key unsafe.Pointer) unsafe.Pointer {
    	if h == nil {
    		panic(plainError("assignment to entry in nil map"))
    	}
    	if raceenabled {
    		callerpc := getcallerpc()
    		pc := abi.FuncPCABIInternal(mapassign)
    		racewritepc(unsafe.Pointer(h), callerpc, pc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    func badmcall(fn func(*g)) {
    	throw("runtime: mcall called on m->g0 stack")
    }
    
    func badmcall2(fn func(*g)) {
    	throw("runtime: mcall function returned")
    }
    
    func badreflectcall() {
    	panic(plainError("arg size to reflect.call more than 1GB"))
    }
    
    //go:nosplit
    //go:nowritebarrierrec
    func badmorestackg0() {
    	if !crashStackImplemented {
    		writeErrStr("fatal: morestack on g0\n")
    		return
    	}
    
    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