]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - ipc/ipcdev.git/blobdiff - packages/ti/srvmgr/omaprpc/OmapRpc.h
Final merge of Suman and Angela's latest updates. Updates to MmRpc.
[ipc/ipcdev.git] / packages / ti / srvmgr / omaprpc / OmapRpc.h
index a89903281645b3bb5963d0224ad9ccfc7fac8658..415c2fd79cee3d79ab318cb0bc36d5018fa5129c 100644 (file)
@@ -116,17 +116,17 @@ typedef enum OmapRpc_MsgType {
     OmapRpc_MsgType_FUNCTION_INFO = 3,
     /** Ask the ServiceMgr to create a new instance of the service.
      * No secondary data is needed. */
-    OmapRpc_MsgType_CREATE_INSTANCE = 4,
+    OmapRpc_MsgType_CREATE_INSTANCE = 6,
     /** The return message from OMAPRPC_CREATE_INSTANCE,
      * contains the new endpoint address in the OmapRpc_InstanceHandle */
-    OmapRpc_MsgType_INSTANCE_CREATED = 5,
+    OmapRpc_MsgType_INSTANCE_CREATED = 8,
     /** Ask the Service Mgr to destroy an instance */
-    OmapRpc_MsgType_DESTROY_INSTANCE = 6,
+    OmapRpc_MsgType_DESTROY_INSTANCE = 4,
     /** The return message from OMAPRPC_DESTROY_INSTANCE.
      * contains the old endpoint address in the OmapRpc_InstanceHandle */
     OmapRpc_MsgType_INSTANCE_DESTROYED = 7,
     /** Ask the Service Instance to call a particular function */
-    OmapRpc_MsgType_CALL_FUNCTION = 8,
+    OmapRpc_MsgType_CALL_FUNCTION = 5,
     /** The return values from a function call */
     OmapRpc_MsgType_FUNCTION_RETURN = 9,
     /** Returned from either the ServiceMgr or Service Instance