Subversion Repositories HelenOS

Rev

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

Rev 2804 Rev 2805
Line 5... Line 5...
5
 */
5
 */
6
 
6
 
7
#ifndef KERN_UDEBUG_H_
7
#ifndef KERN_UDEBUG_H_
8
#define KERN_UDEBUG_H_
8
#define KERN_UDEBUG_H_
9
 
9
 
-
 
10
typedef enum {
-
 
11
    UDEBUG_EVENT_SYSCALL
10
void udebug_syscall_event(void);
12
} udebug_event_t;
-
 
13
 
-
 
14
void udebug_syscall_event(unative_t a1, unative_t a2, unative_t a3,
-
 
15
    unative_t a4, unative_t a5, unative_t a6, unative_t id, unative_t rc);
11
void udebug_stoppable_begin(void);
16
void udebug_stoppable_begin(void);
12
void udebug_stoppable_end(void);
17
void udebug_stoppable_end(void);
13
 
18
 
14
#endif
19
#endif
15
 
20