Subversion Repositories HelenOS

Rev

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

  1. /** @addtogroup sctrace
  2.  * @{
  3.  */
  4. /** @file
  5.  */
  6.  
  7. #ifndef SYSCALLS_H_
  8. #define SYSCALLS_H_
  9.  
  10. typedef enum {
  11.     RV_INTEGER,
  12.     RV_HASH,
  13.     RV_ERRNO,
  14.     RV_INT_ERRNO
  15. } rv_type_t;
  16.  
  17. typedef struct {
  18.     char *name;
  19.     int n_args;
  20.     rv_type_t rv_type;
  21. } sc_desc_t;
  22.  
  23. extern const sc_desc_t syscall_desc[];
  24.  
  25. #endif
  26.  
  27. /** @}
  28.  */
  29.