Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for GetExitCodeProcess (0.26 sec)

  1. src/os/exec_windows.go

    	default:
    		return nil, errors.New("os: unexpected result from WaitForSingleObject")
    	}
    	var ec uint32
    	e = syscall.GetExitCodeProcess(syscall.Handle(handle), &ec)
    	if e != nil {
    		return nil, NewSyscallError("GetExitCodeProcess", e)
    	}
    	var u syscall.Rusage
    	e = syscall.GetProcessTimes(syscall.Handle(handle), &u.CreationTime, &u.ExitTime, &u.KernelTime, &u.UserTime)
    	if e != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. src/syscall/zsyscall_windows.go

    	procGetEnvironmentVariableW            = modkernel32.NewProc("GetEnvironmentVariableW")
    	procGetExitCodeProcess                 = modkernel32.NewProc("GetExitCodeProcess")
    	procGetFileAttributesExW               = modkernel32.NewProc("GetFileAttributesExW")
    	procGetFileAttributesW                 = modkernel32.NewProc("GetFileAttributesW")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (0)
  3. src/syscall/syscall_windows.go

    //sys	OpenProcess(da uint32, inheritHandle bool, pid uint32) (handle Handle, err error)
    //sys	TerminateProcess(handle Handle, exitcode uint32) (err error)
    //sys	GetExitCodeProcess(handle Handle, exitcode *uint32) (err error)
    //sys	getStartupInfo(startupInfo *StartupInfo) = GetStartupInfoW
    //sys	GetCurrentProcess() (pseudoHandle Handle, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	procGetEnvironmentVariableW                              = modkernel32.NewProc("GetEnvironmentVariableW")
    	procGetExitCodeProcess                                   = modkernel32.NewProc("GetExitCodeProcess")
    	procGetFileAttributesExW                                 = modkernel32.NewProc("GetFileAttributesExW")
    	procGetFileAttributesW                                   = modkernel32.NewProc("GetFileAttributesW")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	shGetKnownFolderPath(id *KNOWNFOLDERID, flags uint32, token Token, path **uint16) (ret error) = shell32.SHGetKnownFolderPath
    //sys	TerminateProcess(handle Handle, exitcode uint32) (err error)
    //sys	GetExitCodeProcess(handle Handle, exitcode *uint32) (err error)
    //sys	getStartupInfo(startupInfo *StartupInfo) = GetStartupInfoW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"GetConsoleMode", Func, 1},
    		{"GetCurrentDirectory", Func, 0},
    		{"GetCurrentProcess", Func, 0},
    		{"GetEnvironmentStrings", Func, 0},
    		{"GetEnvironmentVariable", Func, 0},
    		{"GetExitCodeProcess", Func, 0},
    		{"GetFileAttributes", Func, 0},
    		{"GetFileAttributesEx", Func, 0},
    		{"GetFileExInfoStandard", Const, 0},
    		{"GetFileExMaxInfoLevel", Const, 0},
    		{"GetFileInformationByHandle", Func, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  7. api/go1.txt

    pkg syscall (windows-386), func GetEnvironmentStrings() (*uint16, error)
    pkg syscall (windows-386), func GetEnvironmentVariable(*uint16, *uint16, uint32) (uint32, error)
    pkg syscall (windows-386), func GetExitCodeProcess(Handle, *uint32) error
    pkg syscall (windows-386), func GetFileAttributes(*uint16) (uint32, error)
    pkg syscall (windows-386), func GetFileAttributesEx(*uint16, uint32, *uint8) error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top