Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for initExceptionHandler (0.25 sec)

  1. src/runtime/signal_windows.go

    }
    
    // in sys_windows_386.s, sys_windows_amd64.s, sys_windows_arm.s, and sys_windows_arm64.s
    func exceptiontramp()
    func firstcontinuetramp()
    func lastcontinuetramp()
    func sehtramp()
    func sigresume()
    
    func initExceptionHandler() {
    	stdcall2(_AddVectoredExceptionHandler, 1, abi.FuncPCABI0(exceptiontramp))
    	if GOARCH == "386" {
    		// use SetUnhandledExceptionFilter for windows-386.
    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/os_windows.go

    	canUseLongPaths = true
    }
    
    func osinit() {
    	asmstdcallAddr = unsafe.Pointer(abi.FuncPCABI0(asmstdcall))
    
    	loadOptionalSyscalls()
    
    	preventErrorDialogs()
    
    	initExceptionHandler()
    
    	initHighResTimer()
    	timeBeginPeriodRetValue = osRelax(false)
    
    	initSysDirectory()
    	initLongPathSupport()
    
    	ncpu = getproccount()
    
    	physPageSize = getPageSize()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
Back to top