Subversion Repositories HelenOS

Rev

Rev 2804 | Rev 2812 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2801 svoboda 1
/** @addtogroup generic
2
 * @{
3
 */
4
/** @file
5
 */
6
 
7
#ifndef KERN_UDEBUG_H_
8
#define KERN_UDEBUG_H_
9
 
2805 svoboda 10
typedef enum {
11
    UDEBUG_EVENT_SYSCALL
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);
2804 svoboda 16
void udebug_stoppable_begin(void);
17
void udebug_stoppable_end(void);
2801 svoboda 18
 
19
#endif
20
 
21
/** @}
22
 */