From 0007833a45b7404a61c3a0c21e418144f0bb0dc2 Mon Sep 17 00:00:00 2001 From: Aleksa Sarai Date: Tue, 30 Sep 2025 23:04:02 +1000 Subject: [PATCH] internal: linux: add package doc-comment This is necessary for the pre-1.4 backports because internal/linux was not present and the linters get angry when a new package without a doc comment gets added. Signed-off-by: Aleksa Sarai --- internal/linux/doc.go | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 internal/linux/doc.go diff --git a/internal/linux/doc.go b/internal/linux/doc.go new file mode 100644 index 000000000..4d1eb9001 --- /dev/null +++ b/internal/linux/doc.go @@ -0,0 +1,3 @@ +// Package linux provides minimal wrappers around Linux system calls, primarily +// to provide support for automatic EINTR-retries. +package linux