From 0bf73dd2f1fe982d78a99dff84e81ea577411bc6 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Mon, 21 Jan 2008 13:09:39 +0000 Subject: [PATCH] Increased the maximum number of command line arguments to a more comfortable number. Somewhat more complex "traced" filter expressions tended to exceed the old limit easily. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23683 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/system/kernel/debug/debug_parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/system/kernel/debug/debug_parser.cpp b/src/system/kernel/debug/debug_parser.cpp index 5698fe9b82..27c6af821e 100644 --- a/src/system/kernel/debug/debug_parser.cpp +++ b/src/system/kernel/debug/debug_parser.cpp @@ -42,7 +42,7 @@ static const int kMaxTokenLength = 128; static const int kJumpBufferCount = 10; -static const int kMaxArgumentCount = 16; +static const int kMaxArgumentCount = 64; static const size_t kTemporaryStorageSize = 10240; static jmp_buf sJumpBuffers[kJumpBufferCount];