We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3c3a1f commit f7d73e3Copy full SHA for f7d73e3
pkg/security/probe/process_killer_others.go
@@ -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