Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ERROR_ALREADY_EXISTS (0.12 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	r0, _, e1 := syscall.Syscall6(procCreateEventExW.Addr(), 4, uintptr(unsafe.Pointer(eventAttrs)), uintptr(unsafe.Pointer(name)), uintptr(flags), uintptr(desiredAccess), 0, 0)
    	handle = Handle(r0)
    	if handle == 0 || e1 == ERROR_ALREADY_EXISTS {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func CreateEvent(eventAttrs *SecurityAttributes, manualReset uint32, initialState uint32, name *uint16) (handle Handle, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
Back to top