summaryrefslogtreecommitdiffstats
path: root/tapsets.cxx
diff options
context:
space:
mode:
authorfche <fche>2005-09-06 16:02:50 +0000
committerfche <fche>2005-09-06 16:02:50 +0000
commit2c89cb8b7a244e2327b8f92074ca4ed137c991e1 (patch)
treedbc11bee0a239b64e2b7d539e584ae55cbcee4b1 /tapsets.cxx
parent499cf740abe8d6102f887d7b7d1cd6750bc83d44 (diff)
downloadsystemtap-steved-2c89cb8b7a244e2327b8f92074ca4ed137c991e1.tar.gz
systemtap-steved-2c89cb8b7a244e2327b8f92074ca4ed137c991e1.tar.xz
systemtap-steved-2c89cb8b7a244e2327b8f92074ca4ed137c991e1.zip
2005-09-06 Frank Ch. Eigler <fche@redhat.com>
* tapsets.cxx (emit_probe_entries): Disable fault_handler for now.
Diffstat (limited to 'tapsets.cxx')
-rw-r--r--tapsets.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/tapsets.cxx b/tapsets.cxx
index 85e4b513..4f52c1f7 100644
--- a/tapsets.cxx
+++ b/tapsets.cxx
@@ -2075,7 +2075,8 @@ dwarf_derived_probe::emit_probe_entries (translator_output* o, unsigned probenum
o->newline(1) << ".kp.addr = 0," ;
o->newline() << ".handler = &"
<< probe_entry_function_name(probenum) << ",";
- o->newline() << ".kp.fault_handler = &stap_kprobe_fault_handler,";
+ // XXX: pending PR 1289
+ // o->newline() << ".kp.fault_handler = &stap_kprobe_fault_handler,";
o->newline() << ".maxactive = 1";
o->newline(-1) << "};";
}
@@ -2085,7 +2086,8 @@ dwarf_derived_probe::emit_probe_entries (translator_output* o, unsigned probenum
<< probe_entry_struct_kprobe_name(probenum)
<< "= {";
o->newline(1) << ".addr = 0," ;
- o->newline() << ".fault_handler = &stap_kprobe_fault_handler,";
+ // XXX: pending PR 1289
+ // o->newline() << ".fault_handler = &stap_kprobe_fault_handler,";
o->newline() << ".pre_handler = &" << probe_entry_function_name(probenum);
o->newline(-1) << "};";
}