/*
- * $Id: globals.h,v 1.128 2005/02/05 22:49:43 hno Exp $
+ * $Id: globals.h,v 1.129 2005/03/18 15:47:41 hno Exp $
*
*
* SQUID Web Proxy Cache http://www.squid-cache.org/
extern char *WIN32_Service_Command_Line; /* NULL */
extern unsigned int WIN32_run_mode; /* _WIN_SQUID_RUN_MODE_INTERACTIVE */
#if defined(_SQUID_MSWIN_) && defined(_DEBUG)
-extern int do_debug; /* 0 */
+extern int do_debug_trap; /* 0 */
#endif
#endif
#if HAVE_SBRK
/*
- * $Id: main.cc,v 1.404 2005/03/13 09:23:33 serassio Exp $
+ * $Id: main.cc,v 1.405 2005/03/18 15:47:42 hno Exp $
*
* DEBUG: section 1 Startup and Main Loop
* AUTHOR: Harvest Derived
do_reconfigure = 0;
#if defined(_SQUID_MSWIN_) && defined(_DEBUG)
- } else if (do_debug) {
- do_debug = 0;
+ } else if (do_debug_trap) {
+ do_debug_trap = 0;
__asm int 3;
#endif
/*
- * $Id: tools.cc,v 1.252 2005/03/13 09:23:33 serassio Exp $
+ * $Id: tools.cc,v 1.253 2005/03/18 15:47:42 hno Exp $
*
* DEBUG: section 21 Misc Functions
* AUTHOR: Harvest Derived
sigusr2_handle(int sig)
{
#if defined(_SQUID_MSWIN_) && defined(_DEBUG)
- do_debug = 1;
+ do_debug_trap = 1;
#endif
#if (defined(_SQUID_MSWIN_) && !defined(_DEBUG)) || !defined(_SQUID_MSWIN_)