From 7ddd5677f5ce32f1923fdcce9952a2680098b647 Mon Sep 17 00:00:00 2001 From: Bryce Denney Date: Wed, 6 Jun 2001 18:27:45 +0000 Subject: [PATCH] - increase MAX_LOGFNS since we run out of them on an SMP simulation with 4 processors --- bochs/bochs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bochs/bochs.h b/bochs/bochs.h index 3f35b944c..05c899c05 100644 --- a/bochs/bochs.h +++ b/bochs/bochs.h @@ -384,7 +384,7 @@ public: void set_log_action (int loglevel, int action); protected: int n_logfn; -#define MAX_LOGFNS 32 +#define MAX_LOGFNS 64 logfunc_t *logfn_list[MAX_LOGFNS]; char *logfn; };