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
e6c52bdf
Commit
e6c52bdf
authored
Nov 15, 2013
by
Claes Sjofors
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Doc gdh, gdh_StoreRtdbPointer() and gdh_TranslateRtdbPointer() was missing in PRM
parent
388a4a4d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
34 additions
and
23 deletions
+34
-23
src/doc/prm/src/doxygen.dx
src/doc/prm/src/doxygen.dx
+5
-1
src/lib/rt/src/rt_gdh.c
src/lib/rt/src/rt_gdh.c
+8
-0
src/lib/rt/src/rt_gdh.h
src/lib/rt/src/rt_gdh.h
+21
-22
No files found.
src/doc/prm/src/doxygen.dx
View file @
e6c52bdf
...
...
@@ -177,13 +177,17 @@ This manual will give a description of the following API's
<tr><td>gdh_Init()</td>
<td>Initialize the process to the Proview runtime environment.</td></tr>
</table>
<h3>Miscellaneous</h3><h4> </h4>
<table border="1" cellspacing="0">
<tr><td>gdh_NethandlerRunning()</td>
<td>Check if the Nethandler has started.</td></tr>
<tr><td>gdh_GetSecurityInfo()</td>
<td>Get security information.</td></tr>
<tr><td>gdh_StoreRtdbPointer()</td>
<td>Convert pointer to rtdb relative pointer.</td></tr>
<tr><td>gdh_TranslateRtdbPointer()</td>
<td>Convert rtdb relative pointer to absolute pointer.</td></tr>
</table>
<h3>Node information</h3><h4> </h4>
...
...
src/lib/rt/src/rt_gdh.c
View file @
e6c52bdf
...
...
@@ -3449,6 +3449,10 @@ gdh_SetAlarmBlockLevel (
return
sts
;
}
/**
* @brief Convert pointer to rtdb relative pointer.
* @return pwr_tStatus
*/
void
gdh_StoreRtdbPointer
(
unsigned
long
*
rp
,
...
...
@@ -3468,6 +3472,10 @@ gdh_StoreRtdbPointer (
*
rp
=
r
;
}
/**
* @brief Convert rtdb relative pointer to absolute pointer.
* @return pwr_tStatus
*/
void
*
gdh_TranslateRtdbPointer
(
unsigned
long
r
...
...
src/lib/rt/src/rt_gdh.h
View file @
e6c52bdf
...
...
@@ -735,6 +735,27 @@ gdh_VolumeIdToName(
int
size
);
/*
* Translation between Rtdb reference and job context virtual address formats.
*/
void
gdh_StoreRtdbPointer
(
unsigned
long
*
rtdbReference
,
void
*
virtualAddress
);
void
*
gdh_TranslateRtdbPointer
(
unsigned
long
rtdbReference
);
pwr_tStatus
gdh_GetObjectBodyDef
(
pwr_tCid
cid
,
gdh_sAttrDef
**
bodydef
,
int
*
rows
,
pwr_tOid
oid
);
/** @} */
...
...
@@ -769,28 +790,6 @@ gdh_ExclusiveModeOn ();
void
gdh_ExclusiveModeOff
();
/*
* Translation between Rtdb reference and job context virtual address formats.
*/
void
gdh_StoreRtdbPointer
(
unsigned
long
*
rtdbReference
,
void
*
virtualAddress
);
void
*
gdh_TranslateRtdbPointer
(
unsigned
long
rtdbReference
);
pwr_tStatus
gdh_GetObjectBodyDef
(
pwr_tCid
cid
,
gdh_sAttrDef
**
bodydef
,
int
*
rows
,
pwr_tOid
oid
);
pwr_tStatus
gdh_GetTrueObjectBodyDef
(
pwr_tCid
cid
,
...
...
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