github.com/keybase/client/go@v0.0.0-20240309051027-028f7c731f8b/kbfs/sysutils/pid_path_others.go (about)

     1  // Copyright 2017 Keybase Inc. All rights reserved.
     2  // Use of this source code is governed by a BSD
     3  // license that can be found in the LICENSE file.
     4  
     5  //go:build !darwin && !linux
     6  // +build !darwin,!linux
     7  
     8  package sysutils
     9  
    10  // GetExecPathFromPID returns the process's executable path for given PID.
    11  func GetExecPathFromPID(pid uint32) (string, error) {
    12  	return "", NotImplementedError{}
    13  }