Update of /cvsroot/wxlua/wxLua/modules/wxluasocket/include
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv6932/wxLua/modules/wxluasocket/include
Modified Files:
wxldserv.h
Log Message:
try to fix crashing in MSW while trying to kill debuggee process
Index: wxldserv.h
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxluasocket/include/wxldserv.h,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -d -r1.26 -r1.27
*** wxldserv.h 8 Dec 2006 06:16:17 -0000 1.26
--- wxldserv.h 11 Dec 2006 07:03:30 -0000 1.27
***************
*** 218,221 ****
--- 218,226 ----
int GetPortNumber() const { return m_port_number; }
+ // Get the wxLuaDebuggerProcess used to run the debuggee in
+ wxLuaDebuggerProcess* GetDebuggeeProcess() { return m_debuggeeProcess; }
+ long GetDebuggeeProcessId() const { return m_debuggeeProcessID; }
+ bool KillDebuggee();
+
// Set the program name to start the debuggee target with
// Note: If the the program name is empty when this class is created, it
|