summaryrefslogtreecommitdiffhomepage
path: root/pkg/abi
diff options
context:
space:
mode:
authorMichael Pratt <mpratt@google.com>2018-10-01 14:15:52 -0700
committerShentubot <shentubot@google.com>2018-10-01 14:16:53 -0700
commit0400e5459288592768af12ab71609c6df6afe3d7 (patch)
treeb8c522749a19aa467b62d097a6b58042d0f971d2 /pkg/abi
parentd185552e79e19bd25cdcf64c123712086c48ae58 (diff)
Add itimer types to linux package, strace
PiperOrigin-RevId: 215278262 Change-Id: Icd10384c99802be6097be938196044386441e282
Diffstat (limited to 'pkg/abi')
-rw-r--r--pkg/abi/linux/BUILD1
-rw-r--r--pkg/abi/linux/timer.go23
2 files changed, 24 insertions, 0 deletions
diff --git a/pkg/abi/linux/BUILD b/pkg/abi/linux/BUILD
index ac4ceefbc..f8f82c0da 100644
--- a/pkg/abi/linux/BUILD
+++ b/pkg/abi/linux/BUILD
@@ -44,6 +44,7 @@ go_library(
"signal.go",
"socket.go",
"time.go",
+ "timer.go",
"tty.go",
"uio.go",
"utsname.go",
diff --git a/pkg/abi/linux/timer.go b/pkg/abi/linux/timer.go
new file mode 100644
index 000000000..6c4675c35
--- /dev/null
+++ b/pkg/abi/linux/timer.go
@@ -0,0 +1,23 @@
+// Copyright 2018 Google Inc.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package linux
+
+// itimer types for getitimer(2) and setitimer(2), from
+// include/uapi/linux/time.h.
+const (
+ ITIMER_REAL = 0
+ ITIMER_VIRTUAL = 1
+ ITIMER_PROF = 2
+)