Skip to content

Commit

Permalink
Edit debug pause messages to make them clearer.
Browse files Browse the repository at this point in the history
  • Loading branch information
VerMishelb committed Oct 2, 2022
1 parent ad39c2f commit ddd9fe5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions UVE_Preload_splitter/Debug.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
//#define DEBUG_PRINT_ATLAS_ENTRY 1

#ifdef DEBUG_ENABLE
#define DEBUG_PAUSE { printf_s("DEBUG PAUSE, PRESS ENTER\n"); char dbp = 0; dbp = getchar(); }
#define DEBUG_PAUSE_EXIT { printf_s("DEBUG PAUSE, PRESS ENTER\n"); char dbp = 0; dbp = getchar(); exit(0); }
#define DEBUG_PAUSE { printf_s("Debug pause, press Enter...\n"); char dbp = 0; dbp = getchar(); }
#define DEBUG_PAUSE_EXIT { printf_s("Debug pause, press Enter to exit...\n"); char dbp = 0; dbp = getchar(); exit(0); }
#define DEBUG_PRINTVAL(value, format_type) { printf_s("%s="##format_type"\n", #value, value); }
#else
#define DEBUG_PAUSE ;
Expand Down

0 comments on commit ddd9fe5

Please sign in to comment.