From b9f16dcd9326dcb4c5310e6776dae0230a7028d7 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Thu, 24 Feb 2005 16:32:15 +0000 Subject: [PATCH] Update due to debugger interface changes. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@11480 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/bin/strace/strace.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/apps/bin/strace/strace.cpp b/src/apps/bin/strace/strace.cpp index fdeef05171..0ec9ac5b90 100644 --- a/src/apps/bin/strace/strace.cpp +++ b/src/apps/bin/strace/strace.cpp @@ -236,6 +236,7 @@ run_thread(port_id nubPort, thread_id thread) { debug_nub_run_thread message; message.thread = thread; + message.handle_event = B_THREAD_DEBUG_HANDLE_EVENT; while (true) { status_t error = write_port(nubPort, B_DEBUG_MESSAGE_RUN_THREAD, @@ -485,9 +486,7 @@ main(int argc, const char *const *argv) } // set team debugging flags - int32 teamDebugFlags - = (printArguments ? 0 : B_TEAM_DEBUG_SYSCALL_FAST_TRACE) - | (traceTeam ? B_TEAM_DEBUG_POST_SYSCALL : 0); + int32 teamDebugFlags = (traceTeam ? B_TEAM_DEBUG_POST_SYSCALL : 0); set_team_debugging_flags(nubPort, teamDebugFlags); // set thread debugging flags