aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/litmus.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/litmus.h b/include/litmus.h
index 3a03a18..94e4b6a 100644
--- a/include/litmus.h
+++ b/include/litmus.h
@@ -108,9 +108,12 @@ int sleep_next_period(void);
108 108
109/* ICS control block */ 109/* ICS control block */
110struct ics_cb { 110struct ics_cb {
111 void* rollback_addr; 111 void* rollback_eip;
112 void* rollback_esp;
112 int ics_stack[MAX_ICS_NESTING]; 113 int ics_stack[MAX_ICS_NESTING];
113}; 114};
115int reg_ics_cb(struct ics_cb* ics_cb);
116int start_wcs(int od);
114 117
115 118
116 119