blob: 50add492fda768d1c396048ceec9516fbb0cb247 (
plain)
1
2
3
4
5
6
7
8
|
// Copyright (c) Tailscale Inc & AUTHORS
// SPDX-License-Identifier: BSD-3-Clause
//go:build !windows && !linux
package pidowner
func ownerOfPID(pid int) (userID string, err error) { return "", ErrNotImplemented }
|