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
c82d406d
Commit
c82d406d
authored
Feb 06, 2003
by
ml
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed to old format
parent
6ddc0982
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
58 deletions
+10
-58
src/lib/rt/src/rt_qcom.h
src/lib/rt/src/rt_qcom.h
+2
-54
src/lib/rt/src/rt_qdb.c
src/lib/rt/src/rt_qdb.c
+3
-2
src/lib/rt/src/rt_qdb.h
src/lib/rt/src/rt_qdb.h
+5
-2
No files found.
src/lib/rt/src/rt_qcom.h
View file @
c82d406d
...
...
@@ -110,59 +110,6 @@ typedef enum {
qcom_eQtype_
}
qcom_eQtype
;
#if 0
typedef enum {
qcom_eOS__ = 0,
qcom_eOS_Lynx,
qcom_eOS_VMS,
qcom_eOS_ELN,
qcom_eOS_WNT,
qcom_eOS_W95,
qcom_eOS_Amiga,
qcom_eOS_Linux,
qcom_eOS_
} qcom_eOS;
typedef enum {
qcom_eHW__ = 0,
qcom_eHW_x86,
qcom_eHW_68k,
qcom_eHW_VAX,
qcom_eHW_Alpha,
qcom_eHW_PPC,
qcom_eHW_
} qcom_eHW;
/* Byte order.
Network is big endian
68k is big endian
x86 is little endian
PPC is both endian
VAX is little endian
*/
typedef enum {
qcom_eBO__ = 0,
qcom_eBO_big,
qcom_eBO_little,
qcom_eBO_middle,
qcom_eBO_
} qcom_eBO;
typedef enum {
qcom_eFT__ = 0,
qcom_eFT_ieeeS,
qcom_eFT_ieeeT,
qcom_eFT_ieeeK,
qcom_eFT_vaxF,
qcom_eFT_vaxD,
qcom_eFT_vaxG,
qcom_eFT_vaxH,
qcom_eFT_
} qcom_eFT;
#endif
/**
* @brief ZZZ Text that appers when the Data structure is listed.
...
...
@@ -267,7 +214,8 @@ typedef struct {
char
name
[
80
];
/**< node name */
co_eOS
os
;
/**< operating system */
co_eHW
hw
;
/**< hardware */
co_mFormat
fm
;
/**< data type representation format */
co_eBO
bo
;
/**< big/little endian */
co_eFT
ft
;
/**< float type */
}
qcom_sNode
;
...
...
src/lib/rt/src/rt_qdb.c
View file @
c82d406d
...
...
@@ -1297,9 +1297,10 @@ qdb_NodeInfo (
node
->
flags
.
b
.
active
=
np
->
flags
.
b
.
active
;
node
->
nid
=
np
->
nid
;
strncpy
(
node
->
name
,
np
->
name
,
sizeof
(
np
->
name
));
node
->
os
=
np
->
os
;
;
node
->
os
=
np
->
os
;
node
->
hw
=
np
->
hw
;
node
->
fm
=
np
->
fm
;
node
->
bo
=
np
->
bo
;
node
->
ft
=
np
->
ft
;
}
qdb_sQue
*
...
...
src/lib/rt/src/rt_qdb.h
View file @
c82d406d
...
...
@@ -352,9 +352,11 @@ typedef struct {
qcom_tBus
bus
pwr_dPacked
;
/* buss number */
co_eOS
os
pwr_dPacked
;
/* operating system */
co_eHW
hw
pwr_dPacked
;
/* hardware */
co_mFormat
fm
pwr_dPacked
;
/* data representation format */
co_eBO
bo
pwr_dPacked
;
/* big/little endian */
co_eFT
ft
pwr_dPacked
;
/* float type */
}
qdb_sLinkInfo
;
typedef
union
{
pwr_tBitMask
m
;
pwr_32Bits
(
...
...
@@ -580,7 +582,8 @@ typedef struct {
co_eOS
os
;
/* operating system */
co_eHW
hw
;
/* hardware */
co_mFormat
fm
;
/* data representation format */
co_eBO
bo
;
/* byte order */
co_eFT
ft
;
/* float type */
qdb_sLink
link
;
/* Qmon link information. */
pwr_tBoolean
up
;
/* communication is up/down */
...
...
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