Subversion Repositories HelenOS

Rev

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

  1. /** @addtogroup sctrace
  2.  * @{
  3.  */
  4. /** @file
  5.  */
  6.  
  7. #ifndef IPC_H_
  8. #define IPC_H_
  9.  
  10. #include <ipc/ipc.h>
  11.  
  12. void ipc_parse_call_out(int phone, ipc_call_t *call, ipc_callid_t hash);
  13. void ipc_parse_call_sync(int phone, ipc_call_t *call, ipc_call_t *answer);
  14. void ipc_parse_call_in(ipc_call_t *call, ipc_callid_t hash);
  15. void ipc_parse_hangup(int phone, int rc);
  16.  
  17. #endif
  18.  
  19. /** @}
  20.  */
  21.