Remove environment check for breakpoint emission

This commit is contained in:
Danny Robson 2011-09-24 13:18:25 +10:00
parent c3ad96f88e
commit ec7b95bb9f

View File

@ -41,13 +41,11 @@ panic (void)
void
breakpoint (void) {
if (getenv ("DEBUG")) {
#if defined (__x86_64) || defined (__i386)
__asm__ ("int $3;");
__asm__ ("int $3;");
#else
raise (SIGINT);
raise (SIGINT);
#endif
}
}