struct cxmsg {
struct cxmsg_hdr cm_hdr;
-
- union {
- int CM_retval;
- struct cxmsg_data_stdio CM_stdio;
- u8_t CM_data[CONFIG_IPC_MSGSIZE];
- } CM_dat;
+ u8_t cm_data[CONFIG_IPC_MSGSIZE];
};
#define cm_src cm_hdr.cxh_src
#define cm_len cm_hdr.cxh_len
#define cm_type cm_hdr.cxh_type
-#define cm_stdio CM_dat.CM_stdio
-#define cm_retval CM_dat.CM_retval
-#define cm_data CM_dat.CM_data
-
#define PID_INIT 1
+#define PID_IO 2
#define PID_NET 10
#define PID_STDIO 20
+
#if 0
struct cxmsg_hdr {
pid_t ch_src;