Subversion Repositories freemyipod

Rev

Rev 2 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2 Rev 14
Line 26... Line 26...
26
 
26
 
27
 
27
 
28
#include "global.h"
28
#include "global.h"
29
 
29
 
30
 
30
 
-
 
31
enum panic_severity
-
 
32
{
-
 
33
    PANIC_KILLTHREAD,
-
 
34
    PANIC_KILLPROCESS,
-
 
35
    PANIC_FATAL
-
 
36
};
-
 
37
 
-
 
38
 
31
void panic(const char* string) ICODE_ATTR;
39
void panic(enum panic_severity severity, const char* string) ICODE_ATTR;
32
void panicf(const char* string, ...) ICODE_ATTR;
40
void panicf(enum panic_severity severity, const char* string, ...) ICODE_ATTR;
33
 
41
 
34
 
42
 
35
#endif
43
#endif