summaryrefslogtreecommitdiffstats
path: root/runtime/staprun
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/staprun')
-rw-r--r--runtime/staprun/ChangeLog5
-rw-r--r--runtime/staprun/mainloop.c12
2 files changed, 5 insertions, 12 deletions
diff --git a/runtime/staprun/ChangeLog b/runtime/staprun/ChangeLog
index 969c299d..27f4d8c8 100644
--- a/runtime/staprun/ChangeLog
+++ b/runtime/staprun/ChangeLog
@@ -1,3 +1,8 @@
+2008-06-03 Frank Ch. Eigler <fche@elastic.org>
+
+ PR 6429.
+ * mainloop.c (stp_main_loop): Remove STP_UNWIND message support.
+
2008-05-05 Martin Hunt <hunt@redhat.com>
* mainloop.c (child_proc): Handle sig_chld
diff --git a/runtime/staprun/mainloop.c b/runtime/staprun/mainloop.c
index 61963743..2bbadbc9 100644
--- a/runtime/staprun/mainloop.c
+++ b/runtime/staprun/mainloop.c
@@ -387,18 +387,6 @@ int stp_main_loop(void)
cleanup_and_exit(1);
break;
}
- case STP_UNWIND:
- {
- int len;
- char *ptr = (char *)data;
- while (nb > 0) {
- send_unwind_data(ptr);
- len = strlen(ptr) + 1;
- ptr += len;
- nb -= len;
- }
- break;
- }
default:
err("WARNING: ignored message of type %d\n", (type));
}