Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for badmorestackg0 (0.55 sec)

  1. src/runtime/os_windows.go

    	lock(&suspendLock)
    	atomic.Store(&exiting, 1)
    	stdcall1(_ExitProcess, uintptr(code))
    }
    
    // write1 must be nosplit because it's used as a last resort in
    // functions like badmorestackg0. In such cases, we'll always take the
    // ASCII path.
    //
    //go:nosplit
    func write1(fd uintptr, buf unsafe.Pointer, n int32) int32 {
    	const (
    		_STD_OUTPUT_HANDLE = ^uintptr(10) // -11
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    	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
    	}
    
    	g := getg()
    	switchToCrashStack(func() {
    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