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
495a1a23
Commit
495a1a23
authored
Jan 19, 2011
by
Claes Sjofors
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rt_appl, char arg changed to const char
parent
37378abe
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
src/lib/rt/src/rt_appl.cpp
src/lib/rt/src/rt_appl.cpp
+1
-1
src/lib/rt/src/rt_appl.h
src/lib/rt/src/rt_appl.h
+2
-2
No files found.
src/lib/rt/src/rt_appl.cpp
View file @
495a1a23
...
...
@@ -72,7 +72,7 @@ void rt_appl::init()
}
}
void
rt_appl
::
register_appl
(
char
*
name
)
void
rt_appl
::
register_appl
(
c
onst
c
har
*
name
)
{
pwr_tStatus
sts
;
pwr_sClass_Application
*
op
;
...
...
src/lib/rt/src/rt_appl.h
View file @
495a1a23
...
...
@@ -40,7 +40,7 @@ class rt_appl {
//! Constructor.
rt_appl
(
c
har
*
name
,
//< Process name.
c
onst
char
*
name
,
//< Process name.
errh_eAnix
anix
,
//< Application index.
double
scantime
=
1.0
,
//< Scantime for call of the scan() function.
qcom_sQid
qid
=
qcom_cNQid
//< Qcom queue identity.
...
...
@@ -48,7 +48,7 @@ class rt_appl {
{
strcpy
(
m_name
,
name
);
}
void
init
();
void
register_appl
(
char
*
name
);
void
register_appl
(
c
onst
c
har
*
name
);
void
mainloop
();
double
scantime
()
{
return
m_scantime
;}
void
set_scantime
(
double
time
)
{
m_scantime
=
time
;}
...
...
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