pkg.re/essentialkaos/ek@v12.36.0+incompatible/system/procname/setprocname_windows.go (about) 1 // +build windows 2 3 package procname 4 5 // ////////////////////////////////////////////////////////////////////////////////// // 6 // // 7 // Copyright (c) 2021 ESSENTIAL KAOS // 8 // Apache License, Version 2.0 <https://www.apache.org/licenses/LICENSE-2.0> // 9 // // 10 // ////////////////////////////////////////////////////////////////////////////////// // 11 12 // Set change current process command in process tree 13 func Set(args []string) error { 14 return nil 15 } 16 17 // Replace replace one argument in process command 18 func Replace(from, to string) error { 19 return nil 20 }