Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Esteban Blanc
proview
Commits
f3dd3db2
Commit
f3dd3db2
authored
Mar 20, 2006
by
claes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added msg_id parameter in net_Put and Put calls
parent
b520f6a9
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
src/lib/rt/src/rt_net.c
src/lib/rt/src/rt_net.c
+6
-2
src/lib/rt/src/rt_net.x
src/lib/rt/src/rt_net.x
+2
-1
No files found.
src/lib/rt/src/rt_net.c
View file @
f3dd3db2
/*
* 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.
*
* This program is free software; you can redistribute it and/or
...
...
@@ -122,6 +122,7 @@ Put (
qcom_sQid
*
tgt
,
void
*
mp
,
net_eMsg
subtype
,
unsigned
int
id
,
unsigned
int
size
);
...
...
@@ -423,6 +424,7 @@ Put (
qcom_sQid
*
tgt
,
void
*
mp
,
net_eMsg
subtype
,
unsigned
int
id
,
unsigned
int
size
)
{
...
...
@@ -432,6 +434,7 @@ Put (
put
.
reply
=
gdbroot
->
my_qid
;
put
.
type
.
b
=
net_cMsgClass
;
put
.
type
.
s
=
subtype
;
put
.
msg_id
=
id
;
put
.
size
=
size
;
put
.
data
=
qcom_Alloc
(
&
lsts
,
size
);
...
...
@@ -624,6 +627,7 @@ net_Put (
qcom_sQid
*
tgt
,
void
*
mp
,
net_eMsg
type
,
unsigned
int
id
,
int
size
)
{
...
...
@@ -634,7 +638,7 @@ net_Put (
((
net_sMessage
*
)
mp
)
->
nid
=
gdbroot
->
db
->
nid
;
NET_LOCK
;
ok
=
Put
(
sts
,
tgt
,
mp
,
type
,
size
);
ok
=
Put
(
sts
,
tgt
,
mp
,
type
,
id
,
size
);
NET_UNLOCK
;
return
ok
;
...
...
src/lib/rt/src/rt_net.x
View file @
f3dd3db2
#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.
% *
% * This program is free software; you can redistribute it and/or
...
...
@@ -1288,6 +1288,7 @@ struct net_sGetCclass {
% qcom_sQid *tgt,
% void *mp,
% net_eMsg type,
% unsigned int id,
% int size
%);
%
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment