github.com/pyroscope-io/pyroscope@v0.37.3-0.20230725203016-5f6947968bd0/pkg/agent/target/service_unix.go (about)

     1  //go:build !windows
     2  // +build !windows
     3  
     4  package target
     5  
     6  import (
     7  	"errors"
     8  )
     9  
    10  func getPID(_ string) (int, error) {
    11  	return 0, errors.New("not implemented")
    12  }