Subversion Repositories HelenOS

Rev

Rev 2872 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. /** @addtogroup sctrace
  2.  * @{
  3.  */
  4. /** @file
  5.  */
  6.  
  7. #include "ipc_desc.h"
  8.  
  9. ipc_m_desc_t ipc_methods[] = {
  10.     /* System methods */
  11.     { 1, "CONNECT_TO_ME" },
  12.     { 2, "CONNECT_ME_TO" },
  13.     { 3, "PHONE_HUNGUP" },
  14.     { 4, "SHARE_OUT" },
  15.     { 5, "SHARE_IN" },
  16.     { 6, "DATA_WRITE" },
  17.     { 7, "DATA_READ" },
  18.     { 8, "DEBUG_ALL" },
  19.  
  20.     /* Well-known methods */
  21.     { 512, "PING" }
  22. };
  23.  
  24. /** @}
  25.  */
  26.