diff options
author | hunt <hunt> | 2005-08-01 22:25:11 +0000 |
---|---|---|
committer | hunt <hunt> | 2005-08-01 22:25:11 +0000 |
commit | 4fee0963a068b378e8cc1f39baaa455d86f58b64 (patch) | |
tree | 938ee3e3f00cb3b950a43d6af9ca4a6a282f9029 | |
parent | 4ecbb06c6ba4ce07dfd527dc0496f36322f9eabf (diff) | |
download | systemtap-steved-4fee0963a068b378e8cc1f39baaa455d86f58b64.tar.gz systemtap-steved-4fee0963a068b378e8cc1f39baaa455d86f58b64.tar.xz systemtap-steved-4fee0963a068b378e8cc1f39baaa455d86f58b64.zip |
2005-08-01 Martin Hunt <hunt@redhat.com>
* agg/stat1.c (probe_exit): Remove "static"
* agg/count1.c (probe_exit): Ditto.
* agg/count2.c (probe_exit): Ditto.
* bench/bench_io2.c (probe_exit): Ditto.
* bench/bench_io1.c (probe_exit): Ditto.
* bench/bench.c (probe_exit): Ditto.
* bench/bench_ret.c (probe_exit): Ditto.
* bench/bench_multi.c (probe_exit): Ditto.
* where_func/kprobe_where_funct.c (probe_exit): Ditto.
* test4/test4.c (probe_exit): Ditto.
* tasklet/stp_tasklet.c (probe_exit): Ditto.
* os_timer/os_timer.c (probe_exit): Ditto.
* scf/scf.c (probe_exit): Ditto.
-rw-r--r-- | runtime/probes/ChangeLog | 16 | ||||
-rw-r--r-- | runtime/probes/agg/count1.c | 2 | ||||
-rw-r--r-- | runtime/probes/agg/count2.c | 2 | ||||
-rw-r--r-- | runtime/probes/agg/stat1.c | 2 | ||||
-rw-r--r-- | runtime/probes/bench/bench.c | 2 | ||||
-rw-r--r-- | runtime/probes/bench/bench_io1.c | 2 | ||||
-rw-r--r-- | runtime/probes/bench/bench_io2.c | 2 | ||||
-rw-r--r-- | runtime/probes/bench/bench_multi.c | 2 | ||||
-rw-r--r-- | runtime/probes/bench/bench_ret.c | 2 | ||||
-rw-r--r-- | runtime/probes/os_timer/os_timer.c | 2 | ||||
-rw-r--r-- | runtime/probes/scf/scf.c | 2 | ||||
-rw-r--r-- | runtime/probes/tasklet/stp_tasklet.c | 2 | ||||
-rw-r--r-- | runtime/probes/test4/test4.c | 2 | ||||
-rw-r--r-- | runtime/probes/where_func/kprobe_where_funct.c | 2 |
14 files changed, 29 insertions, 13 deletions
diff --git a/runtime/probes/ChangeLog b/runtime/probes/ChangeLog index db09d028..e3951a6b 100644 --- a/runtime/probes/ChangeLog +++ b/runtime/probes/ChangeLog @@ -1,3 +1,19 @@ +2005-08-01 Martin Hunt <hunt@redhat.com> + + * agg/stat1.c (probe_exit): Remove "static" + * agg/count1.c (probe_exit): Ditto. + * agg/count2.c (probe_exit): Ditto. + * bench/bench_io2.c (probe_exit): Ditto. + * bench/bench_io1.c (probe_exit): Ditto. + * bench/bench.c (probe_exit): Ditto. + * bench/bench_ret.c (probe_exit): Ditto. + * bench/bench_multi.c (probe_exit): Ditto. + * where_func/kprobe_where_funct.c (probe_exit): Ditto. + * test4/test4.c (probe_exit): Ditto. + * tasklet/stp_tasklet.c (probe_exit): Ditto. + * os_timer/os_timer.c (probe_exit): Ditto. + * scf/scf.c (probe_exit): Ditto. + 2005-07-11 Martin Hunt <hunt@redhat.com> * build_probe: Set RELAYFS correctly. diff --git a/runtime/probes/agg/count1.c b/runtime/probes/agg/count1.c index 6bf2c39e..731b236b 100644 --- a/runtime/probes/agg/count1.c +++ b/runtime/probes/agg/count1.c @@ -81,7 +81,7 @@ int probe_start(void) return _stp_register_kprobes (stp_probes, MAX_STP_ROUTINE); } -static void probe_exit (void) +void probe_exit (void) { int i; diff --git a/runtime/probes/agg/count2.c b/runtime/probes/agg/count2.c index f53a0906..23987759 100644 --- a/runtime/probes/agg/count2.c +++ b/runtime/probes/agg/count2.c @@ -65,7 +65,7 @@ int probe_start(void) return _stp_register_jprobes (stp_probes, MAX_STP_ROUTINE); } -static void probe_exit (void) +void probe_exit (void) { int i; diff --git a/runtime/probes/agg/stat1.c b/runtime/probes/agg/stat1.c index ad6781e8..4e0cf961 100644 --- a/runtime/probes/agg/stat1.c +++ b/runtime/probes/agg/stat1.c @@ -60,7 +60,7 @@ int probe_start(void) return _stp_register_jprobes (stp_probes, MAX_STP_ROUTINE); } -static void probe_exit (void) +void probe_exit (void) { _stp_unregister_jprobes (stp_probes, MAX_STP_ROUTINE); diff --git a/runtime/probes/bench/bench.c b/runtime/probes/bench/bench.c index cc0e81f6..a00efa05 100644 --- a/runtime/probes/bench/bench.c +++ b/runtime/probes/bench/bench.c @@ -44,7 +44,7 @@ int probe_start(void) return ret; } -static void probe_exit (void) +void probe_exit (void) { _stp_unregister_jprobes (jp, NUM_JPROBES); _stp_unregister_kprobes (kp, NUM_KPROBES); diff --git a/runtime/probes/bench/bench_io1.c b/runtime/probes/bench/bench_io1.c index 89be7f06..8a344e4d 100644 --- a/runtime/probes/bench/bench_io1.c +++ b/runtime/probes/bench/bench_io1.c @@ -41,7 +41,7 @@ int probe_start(void) return _stp_register_kprobes (kp, NUM_KPROBES); } -static void probe_exit (void) +void probe_exit (void) { _stp_unregister_kprobes (kp, NUM_KPROBES); } diff --git a/runtime/probes/bench/bench_io2.c b/runtime/probes/bench/bench_io2.c index cc31fc85..f9f51ca3 100644 --- a/runtime/probes/bench/bench_io2.c +++ b/runtime/probes/bench/bench_io2.c @@ -41,7 +41,7 @@ int probe_start(void) return _stp_register_kprobes (kp, NUM_KPROBES); } -static void probe_exit (void) +void probe_exit (void) { _stp_unregister_kprobes (kp, NUM_KPROBES); } diff --git a/runtime/probes/bench/bench_multi.c b/runtime/probes/bench/bench_multi.c index ca7d251f..a6dc38a4 100644 --- a/runtime/probes/bench/bench_multi.c +++ b/runtime/probes/bench/bench_multi.c @@ -67,7 +67,7 @@ int probe_start(void) return _stp_register_kprobes (kp, NUM_KPROBES); } -static void probe_exit (void) +void probe_exit (void) { _stp_unregister_kprobes (kp, NUM_KPROBES); } diff --git a/runtime/probes/bench/bench_ret.c b/runtime/probes/bench/bench_ret.c index a14548e1..40f2ddad 100644 --- a/runtime/probes/bench/bench_ret.c +++ b/runtime/probes/bench/bench_ret.c @@ -54,7 +54,7 @@ int probe_start(void) return ret; } -static void probe_exit (void) +void probe_exit (void) { _stp_unregister_kretprobes (kpr, NUM_KPROBES); _stp_unregister_kprobes (kp, 1); diff --git a/runtime/probes/os_timer/os_timer.c b/runtime/probes/os_timer/os_timer.c index 1e927be4..20aebf68 100644 --- a/runtime/probes/os_timer/os_timer.c +++ b/runtime/probes/os_timer/os_timer.c @@ -113,7 +113,7 @@ int probe_start(void) return 0; } -static void probe_exit (void) +void probe_exit (void) { /* unregister the os_timer */ del_timer_sync(&timer); diff --git a/runtime/probes/scf/scf.c b/runtime/probes/scf/scf.c index c4308ab1..5afbb92e 100644 --- a/runtime/probes/scf/scf.c +++ b/runtime/probes/scf/scf.c @@ -42,7 +42,7 @@ int probe_start(void) return _stp_register_kprobes (stp_probes, MAX_STP_ROUTINE); } -static void probe_exit (void) +void probe_exit (void) { _stp_unregister_kprobes (stp_probes, MAX_STP_ROUTINE); _stp_map_print (map1, "trace[%1s] = %d\n"); diff --git a/runtime/probes/tasklet/stp_tasklet.c b/runtime/probes/tasklet/stp_tasklet.c index 2367d4d6..f47fea9e 100644 --- a/runtime/probes/tasklet/stp_tasklet.c +++ b/runtime/probes/tasklet/stp_tasklet.c @@ -33,7 +33,7 @@ int probe_start(void) return _stp_register_jprobes (stp_probes, MAX_STP_PROBES); } -static void probe_exit (void) +void probe_exit (void) { _stp_unregister_jprobes (stp_probes, MAX_STP_PROBES); } diff --git a/runtime/probes/test4/test4.c b/runtime/probes/test4/test4.c index 3f9c8325..48f2eca9 100644 --- a/runtime/probes/test4/test4.c +++ b/runtime/probes/test4/test4.c @@ -67,7 +67,7 @@ int probe_start(void) return _stp_register_jprobes (stp_probes, MAX_STP_ROUTINE); } -static void probe_exit (void) +void probe_exit (void) { _stp_unregister_jprobes (stp_probes, MAX_STP_ROUTINE); diff --git a/runtime/probes/where_func/kprobe_where_funct.c b/runtime/probes/where_func/kprobe_where_funct.c index 6d3eee45..9bd4000a 100644 --- a/runtime/probes/where_func/kprobe_where_funct.c +++ b/runtime/probes/where_func/kprobe_where_funct.c @@ -56,7 +56,7 @@ int probe_start(void) return _stp_register_kprobes (kp, MAX_KPROBES); } -static void probe_exit (void) +void probe_exit (void) { _stp_unregister_kprobes (kp, MAX_KPROBES); |