Commit f3dd3db2 authored by claes's avatar claes

Added msg_id parameter in net_Put and Put calls

parent b520f6a9
/* /*
* Proview $Id: rt_net.c,v 1.7 2006-02-14 05:27:43 claes Exp $ * Proview $Id: rt_net.c,v 1.8 2006-03-20 07:01:56 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB. * Copyright (C) 2005 SSAB Oxelsund AB.
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
...@@ -122,6 +122,7 @@ Put ( ...@@ -122,6 +122,7 @@ Put (
qcom_sQid *tgt, qcom_sQid *tgt,
void *mp, void *mp,
net_eMsg subtype, net_eMsg subtype,
unsigned int id,
unsigned int size unsigned int size
); );
...@@ -423,6 +424,7 @@ Put ( ...@@ -423,6 +424,7 @@ Put (
qcom_sQid *tgt, qcom_sQid *tgt,
void *mp, void *mp,
net_eMsg subtype, net_eMsg subtype,
unsigned int id,
unsigned int size unsigned int size
) )
{ {
...@@ -432,6 +434,7 @@ Put ( ...@@ -432,6 +434,7 @@ Put (
put.reply = gdbroot->my_qid; put.reply = gdbroot->my_qid;
put.type.b = net_cMsgClass; put.type.b = net_cMsgClass;
put.type.s = subtype; put.type.s = subtype;
put.msg_id = id;
put.size = size; put.size = size;
put.data = qcom_Alloc(&lsts, size); put.data = qcom_Alloc(&lsts, size);
...@@ -624,6 +627,7 @@ net_Put ( ...@@ -624,6 +627,7 @@ net_Put (
qcom_sQid *tgt, qcom_sQid *tgt,
void *mp, void *mp,
net_eMsg type, net_eMsg type,
unsigned int id,
int size int size
) )
{ {
...@@ -634,7 +638,7 @@ net_Put ( ...@@ -634,7 +638,7 @@ net_Put (
((net_sMessage *)mp)->nid = gdbroot->db->nid; ((net_sMessage *)mp)->nid = gdbroot->db->nid;
NET_LOCK; NET_LOCK;
ok = Put(sts, tgt, mp, type, size); ok = Put(sts, tgt, mp, type, id, size);
NET_UNLOCK; NET_UNLOCK;
return ok; return ok;
......
#ifdef RPC_HDR #ifdef RPC_HDR
%/* %/*
% * Proview $Id: rt_net.x,v 1.9 2006-02-14 05:27:43 claes Exp $ % * Proview $Id: rt_net.x,v 1.10 2006-03-20 07:01:56 claes Exp $
% * Copyright (C) 2005 SSAB Oxelsund AB. % * Copyright (C) 2005 SSAB Oxelsund AB.
% * % *
% * This program is free software; you can redistribute it and/or % * This program is free software; you can redistribute it and/or
...@@ -1288,6 +1288,7 @@ struct net_sGetCclass { ...@@ -1288,6 +1288,7 @@ struct net_sGetCclass {
% qcom_sQid *tgt, % qcom_sQid *tgt,
% void *mp, % void *mp,
% net_eMsg type, % net_eMsg type,
% unsigned int id,
% int size % int size
%); %);
% %
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment