Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for wer (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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