Yikes! I've committed some major crap that contained leftovers from Efsd.

Okay. The "can't kill windows" bugs people are seeing are because of
broken refcount handling. I'm looking into it right now.


SVN revision: 5660
This commit is contained in:
cpk 2001-11-08 23:54:38 +00:00 committed by cpk
parent cec9c8746c
commit a24c265be9
2 changed files with 4 additions and 4 deletions

View File

@ -72,7 +72,7 @@ e_debug_enter(const char *file, const char *func)
void
e_debug_D_RETURN(const char *file, const char *func)
e_debug_return(const char *file, const char *func)
{
printf("RETURN ");
debug_print_info();

View File

@ -40,17 +40,17 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
void e_debug_enter(const char *file, const char *func);
void e_debug_return(const char *file, const char *func);
#define D_ENTER efsd_debug_enter(__FILE__, __FUNCTION__)
#define D_ENTER e_debug_enter(__FILE__, __FUNCTION__)
#define D_RETURN \
{ \
efsd_debug_return(__FILE__, __FUNCTION__); \
e_debug_return(__FILE__, __FUNCTION__); \
return; \
}
#define D_RETURN_(x) \
{ \
efsd_debug_return(__FILE__, __FUNCTION__); \
e_debug_return(__FILE__, __FUNCTION__); \
\
return x; \
}