summaryrefslogtreecommitdiffhomepage
path: root/pkg/abi/linux
diff options
context:
space:
mode:
authorIan Lewis <ianlewis@google.com>2021-06-13 19:21:46 -0700
committergVisor bot <gvisor-bot@google.com>2021-06-13 19:23:55 -0700
commit5c9e84622305dc9fd4e9b81eeb7309b8a894f99e (patch)
treecfa81aaac2356fc205b5f55a701d30ca3c2786bf /pkg/abi/linux
parentb92e8ee8d6744d81383f4265faa008ccce894f5e (diff)
Remove usermem dependency from marshal
Both marshal and usermem are depended on by many packages and a dependency on marshal can often create circular dependencies. marshal should consider adding internal dependencies carefully moving forward. Fixes #6160 PiperOrigin-RevId: 379199882
Diffstat (limited to 'pkg/abi/linux')
-rw-r--r--pkg/abi/linux/signal.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/pkg/abi/linux/signal.go b/pkg/abi/linux/signal.go
index 31d020f77..06a4c6401 100644
--- a/pkg/abi/linux/signal.go
+++ b/pkg/abi/linux/signal.go
@@ -293,8 +293,6 @@ type Sigevent struct {
UnRemainder [44]byte
}
-// LINT.IfChange
-
// SigAction represents struct sigaction.
//
// +marshal
@@ -306,8 +304,6 @@ type SigAction struct {
Mask SignalSet
}
-// LINT.ThenChange(../../safecopy/safecopy_unsafe.go)
-
// SignalStack represents information about a user stack, and is equivalent to
// stack_t.
//