Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
sequencer-2-2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
epics-modules
sequencer-2-2
Commits
045eee88
Commit
045eee88
authored
14 years ago
by
ben.franksen
Browse files
Options
Downloads
Patches
Plain Diff
seq: added stuff to avoid warnings about nothing
parent
d3b717bc
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
src/dev/devSequencer.c
+2
-0
2 additions, 0 deletions
src/dev/devSequencer.c
src/seq/seqCommands.c
+3
-0
3 additions, 0 deletions
src/seq/seqCommands.c
src/seq/seqPvt.h
+2
-0
2 additions, 0 deletions
src/seq/seqPvt.h
src/seq/seq_qry.c
+3
-0
3 additions, 0 deletions
src/seq/seq_qry.c
with
10 additions
and
0 deletions
src/dev/devSequencer.c
+
2
−
0
View file @
045eee88
...
...
@@ -426,3 +426,5 @@ LOCAL long siGetIoInitInfo(int cmd, struct stringinRecord *pRec, IOSCANPVT *ppvt
return
0
;
}
pr_fun
*
devSequencer_nothing_dummy
=
nothing
;
This diff is collapsed.
Click to expand it.
src/seq/seqCommands.c
+
3
−
0
View file @
045eee88
...
...
@@ -199,3 +199,6 @@ epicsShareFunc void epicsShareAPI seqRegisterSequencerCommands(void)
iocshRegister
(
&
seqcarFuncDef
,
seqcarCallFunc
);
}
}
/* avoid nothing define but not used warnings */
pr_fun
*
seqCommands_nothing_dummy
=
nothing
;
This diff is collapsed.
Click to expand it.
src/seq/seqPvt.h
+
2
−
0
View file @
045eee88
...
...
@@ -263,6 +263,8 @@ extern long seq_connect(SPROG *pSP);
extern
long
seq_disconnect
(
SPROG
*
pSP
);
extern
void
ss_write_buffer
(
CHAN
*
pDB
,
void
*
pVal
);
/* debug/query support */
typedef
int
pr_fun
(
const
char
*
format
,...);
static
int
nothing
(
const
char
*
format
,...)
{
return
0
;}
#endif
/*INCLseqPvth*/
This diff is collapsed.
Click to expand it.
src/seq/seq_qry.c
+
3
−
0
View file @
045eee88
...
...
@@ -487,3 +487,6 @@ static void seqShowAll(void)
if
(
seqProgCount
==
0
)
printf
(
"No active state programs
\n
"
);
}
/* avoid nothing define but not used warnings */
pr_fun
*
qry_nothing_dummy
=
nothing
;
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment