From 2c89cb8b7a244e2327b8f92074ca4ed137c991e1 Mon Sep 17 00:00:00 2001 From: fche Date: Tue, 6 Sep 2005 16:02:50 +0000 Subject: 2005-09-06 Frank Ch. Eigler * tapsets.cxx (emit_probe_entries): Disable fault_handler for now. --- tapsets.cxx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'tapsets.cxx') 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) << "};"; } -- cgit