Skip to content
Snippets Groups Projects
Commit 0a449a46 authored by benjamin.franksen's avatar benjamin.franksen
Browse files

renamed function typedefs

parent 1e12cd91
No related branches found
No related tags found
No related merge requests found
...@@ -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 */
}; };
......
...@@ -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) */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment