Subversion Repositories HelenOS-historic

Rev

Rev 575 | Rev 586 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 575 Rev 578
Line 35... Line 35...
35
#  define IVT_ITEMS 1
35
#  define IVT_ITEMS 1
36
#endif
36
#endif
37
 
37
 
38
typedef void (* iroutine)(int n, void *stack);
38
typedef void (* iroutine)(int n, void *stack);
39
 
39
 
40
extern iroutine exc_register(int n, char *name, iroutine f);
40
extern iroutine exc_register(int n, const char *name, iroutine f);
41
extern void exc_dispatch(int n, void *stack);
41
extern void exc_dispatch(int n, void *stack);
-
 
42
void exc_init(void);
42
 
43
 
43
#endif
44
#endif