From 612e94be9d1511c8b56155918b2c462588b8ee54 Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Wed, 26 Oct 2022 14:20:39 +0200 Subject: More flexibility for BOX64_ROLLING_LOG --- src/include/box64context.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/include') diff --git a/src/include/box64context.h b/src/include/box64context.h index da1f91af..9eb130ec 100755 --- a/src/include/box64context.h +++ b/src/include/box64context.h @@ -62,8 +62,6 @@ typedef struct base_segment_s { pthread_key_t key; } base_segment_t; -#define CYCLE_LOG 16 - typedef struct box64context_s { path_collection_t box64_path; // PATH env. variable path_collection_t box64_ld_lib; // LD_LIBRARY_PATH env. variable @@ -180,8 +178,8 @@ typedef struct box64context_s { int stack_clone_used; // rolling logs - char* log_call[CYCLE_LOG]; - char* log_ret[CYCLE_LOG]; + char* *log_call; + char* *log_ret; int current_line; } box64context_t; -- cgit 1.4.1