Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for tgid (0.12 sec)

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

    	shellWindow = HWND(r0)
    	return
    }
    
    func GetWindowThreadProcessId(hwnd HWND, pid *uint32) (tid uint32, err error) {
    	r0, _, e1 := syscall.Syscall(procGetWindowThreadProcessId.Addr(), 2, uintptr(hwnd), uintptr(unsafe.Pointer(pid)), 0)
    	tid = uint32(r0)
    	if tid == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func IsWindow(hwnd HWND) (isWindow bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

      systemctl start node-problem-detector.service
    }
    
    # Create the log file and set its properties.
    #
    # $1 is the file to create.
    # $2: the log owner uid to set for the log file.
    # $3: the log owner gid to set for the log file. If $KUBE_POD_LOG_READERS_GROUP
    # is set then this value will not be used.
    function prepare-log-file {
      touch "$1"
      if [[ -n "${KUBE_POD_LOG_READERS_GROUP:-}" ]]; then
        chmod 640 "$1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top