Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for preprintpanics (0.14 sec)

  1. src/runtime/error.go

    	String() string
    }
    
    // printpanicval prints an argument passed to panic.
    // If panic is called with a value that has a String or Error method,
    // it has already been converted into a string by preprintpanics.
    //
    // To ensure that the traceback can be unambiguously parsed even when
    // the panic value contains "\ngoroutine" and other stack-like
    // strings, newlines in the string representation of v are replaced by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. src/runtime/panic.go

    	}
    
    	// ran out of deferred calls - old-school panic now
    	// Because it is unsafe to call arbitrary user code after freezing
    	// the world, we call preprintpanics to invoke all necessary Error
    	// and String methods to prepare the panic strings before startpanic.
    	preprintpanics(&p)
    
    	fatalpanic(&p)   // should not return
    	*(*int)(nil) = 0 // not reached
    }
    
    // start initializes a panic to start unwinding the stack.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
Back to top