aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorztong <ztong@cs.unc.edu>2021-03-10 02:06:25 -0500
committerztong <ztong@cs.unc.edu>2021-03-10 02:06:25 -0500
commit445fda17c6f68e6185b05e07cbd6632bfc1b21c3 (patch)
tree10f29ecd75ecb446d26efa0f07021644ee1db0b0 /include
parent85ac460cdc093144ec79e0c600a72c7259f7828c (diff)
Changed syscall name from exit_fz to cancel_watchdog
Diffstat (limited to 'include')
-rw-r--r--include/litmus/ctrlpage.h2
-rw-r--r--include/litmus/locking.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/litmus/ctrlpage.h b/include/litmus/ctrlpage.h
index 82350c7d545c..3f47b2c06457 100644
--- a/include/litmus/ctrlpage.h
+++ b/include/litmus/ctrlpage.h
@@ -77,7 +77,7 @@ typedef enum {
77 LRT_release_ts, 77 LRT_release_ts,
78 LRT_get_current_budget, 78 LRT_get_current_budget,
79 LRT_access_forbidden_zone_check, 79 LRT_access_forbidden_zone_check,
80 LRT_exit_forbidden_zone, 80 LRT_cancel_watchdog,
81 LRT_litmus_lock_cs 81 LRT_litmus_lock_cs
82} litmus_syscall_id_t; 82} litmus_syscall_id_t;
83 83
diff --git a/include/litmus/locking.h b/include/litmus/locking.h
index 4bb933d1f6c9..d6d8ea4d9eca 100644
--- a/include/litmus/locking.h
+++ b/include/litmus/locking.h
@@ -28,7 +28,7 @@ struct litmus_lock_ops {
28 28
29 /* Current tries to access protected resource (mandatory methods if supported). */ 29 /* Current tries to access protected resource (mandatory methods if supported). */
30 int (*access_forbidden_zone_check)(struct litmus_lock*, lt_t fz_len, lt_t fz_police); 30 int (*access_forbidden_zone_check)(struct litmus_lock*, lt_t fz_len, lt_t fz_police);
31 int (*exit_forbidden_zone)(struct litmus_lock*); 31 int (*cancel_watchdog)(struct litmus_lock*);
32 32
33 /* The lock is no longer being referenced (mandatory method). */ 33 /* The lock is no longer being referenced (mandatory method). */
34 void (*deallocate)(struct litmus_lock*); 34 void (*deallocate)(struct litmus_lock*);