Skip to content

Commit f7d73e3

Browse files
committed
fix linter
1 parent d3c3a1f commit f7d73e3

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
// Unless explicitly stated otherwise all files in this repository are licensed
2+
// under the Apache License Version 2.0.
3+
// This product includes software developed at Datadog (https://www.datadoghq.com/).
4+
// Copyright 2016-present Datadog, Inc.
5+
6+
//go:build !linux && !windows
7+
8+
// Package probe holds probe related files
9+
package probe
10+
11+
// References to types/fields only used in process_killer.go (linux || windows),
12+
// kept here so the linter doesn't report them as unused on other platforms.
13+
14+
type killContext struct{}
15+
16+
var (
17+
_ killContext
18+
_ = KillActionReport{}.pendingKills
19+
)

0 commit comments

Comments
 (0)