summaryrefslogtreecommitdiffstats
path: root/tapset/LKET/syscalls.stp
diff options
context:
space:
mode:
authorsrikar <srikar>2007-08-27 10:22:05 +0000
committersrikar <srikar>2007-08-27 10:22:05 +0000
commit866f6739b1d039e77c2fa4d15dfcad4e151c149b (patch)
treea2765b23d528902787dfabc02a9d900f2afa569a /tapset/LKET/syscalls.stp
parent622cbb7125992573459732c46a7fcb29a6d536b5 (diff)
downloadsystemtap-steved-866f6739b1d039e77c2fa4d15dfcad4e151c149b.tar.gz
systemtap-steved-866f6739b1d039e77c2fa4d15dfcad4e151c149b.tar.xz
systemtap-steved-866f6739b1d039e77c2fa4d15dfcad4e151c149b.zip
Removing LKET tapset files. (PR 4817: retiring LKET services)
Diffstat (limited to 'tapset/LKET/syscalls.stp')
-rwxr-xr-xtapset/LKET/syscalls.stp48
1 files changed, 0 insertions, 48 deletions
diff --git a/tapset/LKET/syscalls.stp b/tapset/LKET/syscalls.stp
deleted file mode 100755
index 189bc5c4..00000000
--- a/tapset/LKET/syscalls.stp
+++ /dev/null
@@ -1,48 +0,0 @@
-// Copyright (C) 2005, 2006 IBM Corp.
-//
-// This file is part of systemtap, and is free software. You can
-// redistribute it and/or modify it under the terms of the GNU General
-// Public License (GPL); either version 2, or (at your option) any
-// later version.
-
-probe never
-{
- printf("%d", GROUP_SIGNAL)
-}
-
-probe addevent.syscall
- = addevent.syscall.entry,
- addevent.syscall.return
-{}
-
-probe addevent.syscall.entry
- += _addevent.syscall.entry
-{
- update_record()
-}
-
-probe _addevent.syscall.entry
- = syscall.*
-{
- log_syscall_tracedata(1, name)
-}
-
-probe addevent.syscall.return
- += _addevent.syscall.return
-{
- update_record()
-}
-
-probe _addevent.syscall.return
- = syscall.*.return
-{
- log_syscall_tracedata(2, name)
-}
-
-/* log the system call name */
-function log_syscall_tracedata(var_id:long, name:string)
-%{
- _lket_trace(_GROUP_SYSCALL, THIS->var_id, "%0s", THIS->name);
-%}
-
-