|
|
@ -83,6 +83,7 @@ PACKAGE " " VERSION " - mailbox synchronizer\n" |
|
|
|
exit( code ); |
|
|
|
exit( code ); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __linux__ |
|
|
|
static void |
|
|
|
static void |
|
|
|
crashHandler( int n ) |
|
|
|
crashHandler( int n ) |
|
|
|
{ |
|
|
|
{ |
|
|
@ -110,6 +111,7 @@ crashHandler( int n ) |
|
|
|
} |
|
|
|
} |
|
|
|
exit( 3 ); |
|
|
|
exit( 3 ); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
static int |
|
|
|
static int |
|
|
|
matches( const char *t, const char *p ) |
|
|
|
matches( const char *t, const char *p ) |
|
|
@ -438,11 +440,13 @@ main( int argc, char **argv ) |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __linux__ |
|
|
|
if (DFlags & DEBUG) { |
|
|
|
if (DFlags & DEBUG) { |
|
|
|
signal( SIGSEGV, crashHandler ); |
|
|
|
signal( SIGSEGV, crashHandler ); |
|
|
|
signal( SIGBUS, crashHandler ); |
|
|
|
signal( SIGBUS, crashHandler ); |
|
|
|
signal( SIGILL, crashHandler ); |
|
|
|
signal( SIGILL, crashHandler ); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
if (merge_ops( cops, mvars->ops )) |
|
|
|
if (merge_ops( cops, mvars->ops )) |
|
|
|
return 1; |
|
|
|
return 1; |
|
|
|