Subversion Repositories HelenOS

Rev

Rev 2871 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2871 Rev 2872
Line 2... Line 2...
2
 * @{
2
 * @{
3
 */
3
 */
4
/** @file
4
/** @file
5
 */
5
 */
6
 
6
 
-
 
7
#include <stdlib.h>
7
#include "ipc_desc.h"
8
#include "ipc_desc.h"
8
 
9
 
9
ipc_m_desc_t ipc_methods[] = {
10
ipc_m_desc_t ipc_methods[] = {
10
    /* System methods */
11
    /* System methods */
11
    { 1, "CONNECT_TO_ME" },
12
    { 1, "CONNECT_TO_ME" },
Line 16... Line 17...
16
    { 6, "DATA_WRITE" },
17
    { 6, "DATA_WRITE" },
17
    { 7, "DATA_READ" },
18
    { 7, "DATA_READ" },
18
    { 8, "DEBUG_ALL" },
19
    { 8, "DEBUG_ALL" },
19
 
20
 
20
    /* Well-known methods */
21
    /* Well-known methods */
21
    { 512, "PING" }
22
    { 512, "PING" },
-
 
23
 
-
 
24
    /* Terminating entry */
-
 
25
    { 0, NULL }
22
};
26
};
23
 
27
 
24
/** @}
28
/** @}
25
 */
29
 */