Subversion Repositories HelenOS

Rev

Rev 2804 | Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. /** @addtogroup generic
  2.  * @{
  3.  */
  4. /** @file
  5.  */
  6.  
  7. #ifndef KERN_UDEBUG_H_
  8. #define KERN_UDEBUG_H_
  9.  
  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);
  16. void udebug_stoppable_begin(void);
  17. void udebug_stoppable_end(void);
  18.  
  19. #endif
  20.  
  21. /** @}
  22.  */
  23.