aboutsummaryrefslogtreecommitdiffstats
path: root/include/litmus.h
diff options
context:
space:
mode:
authorBjoern B. Brandenburg <bbb@cs.unc.edu>2007-11-20 15:02:37 -0500
committerBjoern B. Brandenburg <bbb@cs.unc.edu>2007-11-20 15:02:37 -0500
commitcc26855dba560c64dbcdd56fea4385daea2d4826 (patch)
treea5a91a8690430983138e3512db4568a6af3eb137 /include/litmus.h
parentcdac0068df6b97c30aec8ab6314465bbf80c3fa7 (diff)
ICS: expose in header
Diffstat (limited to 'include/litmus.h')
-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