Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for wer (0.02 sec)

  1. src/runtime/nonwindows_stub.go

    var haveHighResSleep = true
    
    // osRelax is called by the scheduler when transitioning to and from
    // all Ps being idle.
    func osRelax(relax bool) {}
    
    // enableWER is called by setTraceback("wer").
    // Windows Error Reporting (WER) is only supported on Windows.
    func enableWER() {}
    
    // winlibcall is not implemented on non-Windows systems,
    // but it is used in non-OS-specific parts of the runtime.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 03:12:13 UTC 2024
    - 962 bytes
    - Viewed (0)
  2. src/runtime/signal_windows.go

    	errormode := stdcall0(_GetErrorMode)
    	stdcall1(_SetErrorMode, errormode|_SEM_FAILCRITICALERRORS|_SEM_NOGPFAULTERRORBOX|_SEM_NOOPENFILEERRORBOX)
    
    	// Disable WER fault reporting UI.
    	// Do this even if WER is disabled as a whole,
    	// as WER might be enabled later with setTraceback("wer")
    	// and we still want the fault reporting UI to be disabled if this happens.
    	var werflags uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 20:32:29 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  3. src/runtime/extern.go

    GOTRACEBACK=crash is like “system” but crashes in an operating system-specific
    manner instead of exiting. For example, on Unix systems, the crash raises
    SIGABRT to trigger a core dump.
    GOTRACEBACK=wer is like “crash” but doesn't disable Windows Error Reporting (WER).
    For historical reasons, the GOTRACEBACK settings 0, 1, and 2 are synonyms for
    none, all, and system, respectively.
    The [runtime/debug.SetTraceback] function allows increasing the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. src/runtime/syscall_windows_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	cmd := testenv.CleanCmdEnv(testenv.Command(t, exe, "-test.run=TestWERDialogue"))
    	cmd.Env = append(cmd.Env, "TEST_WER_DIALOGUE=1", "GOTRACEBACK=wer")
    	// Child process should not open WER dialogue, but return immediately instead.
    	// The exit code can't be reliably tested here because Windows can change it.
    	_, err = cmd.CombinedOutput()
    	if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 31 16:31:35 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  5. src/runtime/runtime1.go

    		t = 1 << tracebackShift
    	case "all":
    		t = 1<<tracebackShift | tracebackAll
    	case "system":
    		t = 2<<tracebackShift | tracebackAll
    	case "crash":
    		t = 2<<tracebackShift | tracebackAll | tracebackCrash
    	case "wer":
    		if GOOS == "windows" {
    			t = 2<<tracebackShift | tracebackAll | tracebackCrash
    			enableWER()
    			break
    		}
    		fallthrough
    	default:
    		t = tracebackAll
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top