ssm  0.0.2
Runtime Library for the Sparse Synchronous Model
ssm-top-act.c
Go to the documentation of this file.
1 /** @file ssm-top-act.c
2  * @brief Parent of the top-level activation record (entry point).
3  */
4 #include <ssm.h>
5 
6 /** @brief The top-level parent does nothing. */
7 static void ssm_top_return(ssm_act_t *act) { return; }
8 
ssm_act_t ssm_top_parent
An activation record for the parent of the top-most routine.
Definition: ssm-top-act.c:9
static void ssm_top_return(ssm_act_t *act)
The top-level parent does nothing.
Definition: ssm-top-act.c:7
Interface to the SSM runtime.
Activation record for an SSM routine.
Definition: ssm.h:125
ssm_stepf_t * step
C function for running this continuation.
Definition: ssm.h:126