pkg.re/essentialkaos/ek@v12.36.0+incompatible/pid/pid_windows.go (about)

     1  package pid
     2  
     3  // ////////////////////////////////////////////////////////////////////////////////// //
     4  //                                                                                    //
     5  //                         Copyright (c) 2021 ESSENTIAL KAOS                          //
     6  //      Apache License, Version 2.0 <https://www.apache.org/licenses/LICENSE-2.0>     //
     7  //                                                                                    //
     8  // ////////////////////////////////////////////////////////////////////////////////// //
     9  
    10  // IsWorks returns true if process with PID from PID file is works
    11  func IsWorks(name string) bool {
    12  	return false
    13  }
    14  
    15  // IsProcessWorks returns true if process with given PID is works
    16  func IsProcessWorks(pid int) bool {
    17  	return false
    18  }