diff options
| author | mo khan <mo@mokhan.ca> | 2025-08-01 14:34:10 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-08-01 14:34:10 -0600 |
| commit | 4a9ff075f677117fea94a3ab212f64632e03d66b (patch) | |
| tree | 57622387fa6bfe3721887cf98210ef1b7d27eff8 /vendor/github.com/shirou/gopsutil/v4/process/process_openbsd.go | |
| parent | 238b61113456ebad8bad880913dc315cd892a296 (diff) | |
| parent | 4ad54d26dd7e7aa337a833950616cf5786dd8977 (diff) | |
Merge branch 'spicedb-postgresql' into 'main'
Load SpiceDB schema into postgresql
See merge request gitlab-org/software-supply-chain-security/authorization/sparkled!22
Diffstat (limited to 'vendor/github.com/shirou/gopsutil/v4/process/process_openbsd.go')
| -rw-r--r-- | vendor/github.com/shirou/gopsutil/v4/process/process_openbsd.go | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/vendor/github.com/shirou/gopsutil/v4/process/process_openbsd.go b/vendor/github.com/shirou/gopsutil/v4/process/process_openbsd.go index 063ff20..11bc5c1 100644 --- a/vendor/github.com/shirou/gopsutil/v4/process/process_openbsd.go +++ b/vendor/github.com/shirou/gopsutil/v4/process/process_openbsd.go @@ -78,7 +78,7 @@ func (p *Process) CwdWithContext(_ context.Context) (string, error) { return common.ByteToString(buf), nil } -func (p *Process) ExeWithContext(_ context.Context) (string, error) { +func (*Process) ExeWithContext(_ context.Context) (string, error) { return "", common.ErrNotImplementedError } @@ -142,7 +142,7 @@ func (p *Process) CmdlineWithContext(ctx context.Context) (string, error) { return strings.Join(argv, " "), nil } -func (p *Process) createTimeWithContext(_ context.Context) (int64, error) { +func (*Process) createTimeWithContext(_ context.Context) (int64, error) { return 0, common.ErrNotImplementedError } @@ -252,7 +252,7 @@ func (p *Process) IOCountersWithContext(_ context.Context) (*IOCountersStat, err }, nil } -func (p *Process) NumThreadsWithContext(_ context.Context) (int32, error) { +func (*Process) NumThreadsWithContext(_ context.Context) (int32, error) { /* not supported, just return 1 */ return 1, nil } @@ -305,11 +305,11 @@ func (p *Process) ChildrenWithContext(ctx context.Context) ([]*Process, error) { return ret, nil } -func (p *Process) ConnectionsWithContext(_ context.Context) ([]net.ConnectionStat, error) { +func (*Process) ConnectionsWithContext(_ context.Context) ([]net.ConnectionStat, error) { return nil, common.ErrNotImplementedError } -func (p *Process) ConnectionsMaxWithContext(_ context.Context, _ int) ([]net.ConnectionStat, error) { +func (*Process) ConnectionsMaxWithContext(_ context.Context, _ int) ([]net.ConnectionStat, error) { return nil, common.ErrNotImplementedError } |
