diff options
author | fche <fche> | 2005-08-19 21:50:42 +0000 |
---|---|---|
committer | fche <fche> | 2005-08-19 21:50:42 +0000 |
commit | 98afd80eb5038542fa3a98c75528524b5d4287b6 (patch) | |
tree | 2b968e1c8523fd50596431e09f936290220a0d29 /tapsets.h | |
parent | efc364eebf15dd7e8b6c93e155af83b6d3971752 (diff) | |
download | systemtap-steved-98afd80eb5038542fa3a98c75528524b5d4287b6.tar.gz systemtap-steved-98afd80eb5038542fa3a98c75528524b5d4287b6.tar.xz systemtap-steved-98afd80eb5038542fa3a98c75528524b5d4287b6.zip |
2005-08-19 Frank Ch. Eigler <fche@elastic.org>
PR systemtap/1209
* tapsets.cxx
* elaborate.cxx (derived_probe_builder): Add get_param function.
* elaborate.h: Declare them.
* tapsets.cxx (dwarf_query::get_*_param): Call them.
(timer_derived_probe, timer_builder): New classes.
(register_standard_tapsets): Register timer.jiffies(N) and friend.
* translate.cxx (translate_pass): #include <linux/timers.h>.
* stap.1.in: Document timer.jiffies(N) probe points.
* testsuite/buildok/fourteen.stp: New test.
2005-08-19 Frank Ch. Eigler <fche@elastic.org>
* arith.c (_stp_random_pm): New function.
Diffstat (limited to 'tapsets.h')
-rw-r--r-- | tapsets.h | 11 |
1 files changed, 4 insertions, 7 deletions
@@ -1,6 +1,3 @@ -#ifndef TAPSETS_H -#define TAPSETS_H - // -*- C++ -*- // Copyright (C) 2005 Red Hat Inc. // @@ -9,13 +6,13 @@ // Public License (GPL); either version 2, or (at your option) any // later version. +#ifndef TAPSETS_H +#define TAPSETS_H + #include "config.h" #include "staptree.h" #include "elaborate.h" - -void -register_standard_tapsets(systemtap_session & sess); - +void register_standard_tapsets(systemtap_session & sess); #endif // TAPSETS_H |