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
0a449a46
Commit
0a449a46
authored
11 years ago
by
benjamin.franksen
Browse files
Options
Downloads
Patches
Plain Diff
renamed function typedefs
parent
1e12cd91
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/seq/seqCom.h
+11
-13
11 additions, 13 deletions
src/seq/seqCom.h
src/seq/seqPvt.h
+3
-3
3 additions, 3 deletions
src/seq/seqPvt.h
with
14 additions
and
16 deletions
src/seq/seqCom.h
+
11
−
13
View file @
0a449a46
...
@@ -95,12 +95,10 @@ typedef unsigned VAR_ID; /* identifier for a pv */
...
@@ -95,12 +95,10 @@ typedef unsigned VAR_ID; /* identifier for a pv */
typedef
int
seqBool
;
typedef
int
seqBool
;
/* Prototypes for functions generated by snc */
/* Prototypes for functions generated by snc */
typedef
void
ACTION_FUNC
(
SS_ID
ssId
,
SEQ_VARS
*
const
var
,
int
transNum
,
int
*
nextState
);
typedef
void
SEQ_TRANS_FUNC
(
SS_ID
ssId
,
SEQ_VARS
*
const
var
,
int
transNum
,
int
*
nextState
);
typedef
seqBool
EVENT_FUNC
(
SS_ID
ssId
,
SEQ_VARS
*
const
var
,
int
*
transNum
,
int
*
nextState
);
typedef
seqBool
SEQ_EVENT_FUNC
(
SS_ID
ssId
,
SEQ_VARS
*
const
var
,
int
*
transNum
,
int
*
nextState
);
typedef
void
ENTRY_FUNC
(
SS_ID
ssId
,
SEQ_VARS
*
const
var
);
typedef
void
SEQ_SS_FUNC
(
SS_ID
ssId
,
SEQ_VARS
*
const
var
);
typedef
void
EXIT_FUNC
(
SS_ID
ssId
,
SEQ_VARS
*
const
var
);
typedef
void
SEQ_PROG_FUNC
(
PROG_ID
progId
,
SEQ_VARS
*
const
vars
);
typedef
void
INIT_FUNC
(
SEQ_VARS
*
const
var
);
typedef
void
PROG_FUNC
(
PROG_ID
progId
,
SEQ_VARS
*
const
vars
);
typedef
const
struct
seqChan
seqChan
;
typedef
const
struct
seqChan
seqChan
;
typedef
const
struct
seqState
seqState
;
typedef
const
struct
seqState
seqState
;
...
@@ -126,10 +124,10 @@ struct seqChan
...
@@ -126,10 +124,10 @@ struct seqChan
struct
seqState
struct
seqState
{
{
const
char
*
stateName
;
/* state name */
const
char
*
stateName
;
/* state name */
ACTION
_FUNC
*
actionFunc
;
/* action routine for this state */
SEQ_TRANS
_FUNC
*
actionFunc
;
/* action routine for this state */
EVENT_FUNC
*
eventFunc
;
/* event routine for this state */
SEQ_
EVENT_FUNC
*
eventFunc
;
/* event routine for this state */
ENTRY
_FUNC
*
entryFunc
;
/* statements performed on entry to state */
SEQ_SS
_FUNC
*
entryFunc
;
/* statements performed on entry to state */
EXIT
_FUNC
*
exitFunc
;
/* statements performed on exit from state */
SEQ_SS
_FUNC
*
exitFunc
;
/* statements performed on exit from state */
const
seqMask
*
eventMask
;
/* event mask for this state */
const
seqMask
*
eventMask
;
/* event mask for this state */
seqMask
options
;
/* state option mask */
seqMask
options
;
/* state option mask */
};
};
...
@@ -155,9 +153,9 @@ struct seqProgram
...
@@ -155,9 +153,9 @@ struct seqProgram
const
char
*
params
;
/* program paramters */
const
char
*
params
;
/* program paramters */
unsigned
numEvFlags
;
/* number of event flags */
unsigned
numEvFlags
;
/* number of event flags */
seqMask
options
;
/* program option mask */
seqMask
options
;
/* program option mask */
PROG_FUNC
*
initFunc
;
/* init function */
SEQ_
PROG_FUNC
*
initFunc
;
/* init function */
ENTRY
_FUNC
*
entryFunc
;
/* entry function */
SEQ_SS
_FUNC
*
entryFunc
;
/* entry function */
EXIT
_FUNC
*
exitFunc
;
/* exit function */
SEQ_SS
_FUNC
*
exitFunc
;
/* exit function */
unsigned
numQueues
;
/* number of syncQ queues */
unsigned
numQueues
;
/* number of syncQ queues */
};
};
...
...
This diff is collapsed.
Click to expand it.
src/seq/seqPvt.h
+
3
−
3
View file @
0a449a46
...
@@ -179,9 +179,9 @@ struct program_instance
...
@@ -179,9 +179,9 @@ struct program_instance
MACRO
*
macros
;
/* ptr to macro table */
MACRO
*
macros
;
/* ptr to macro table */
char
*
params
;
/* program parameters */
char
*
params
;
/* program parameters */
unsigned
options
;
/* options (bit-encoded) */
unsigned
options
;
/* options (bit-encoded) */
PROG_FUNC
*
initFunc
;
/* init function */
SEQ_
PROG_FUNC
*
initFunc
;
/* init function */
ENTRY
_FUNC
*
entryFunc
;
/* entry function */
SEQ_SS
_FUNC
*
entryFunc
;
/* entry function */
EXIT
_FUNC
*
exitFunc
;
/* exit function */
SEQ_SS
_FUNC
*
exitFunc
;
/* exit function */
unsigned
numEvFlags
;
/* number of event flags */
unsigned
numEvFlags
;
/* number of event flags */
/* dynamic program data (assigned at runtime) */
/* dynamic program data (assigned at runtime) */
...
...
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