Subversion Repositories HelenOS

Rev

Rev 2804 | Rev 2812 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2804 Rev 2805
1
/** @addtogroup generic
1
/** @addtogroup generic
2
 * @{
2
 * @{
3
 */
3
 */
4
/** @file
4
/** @file
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
 
16
/** @}
21
/** @}
17
 */
22
 */
18
 
23