From 5d8903e48cf2ba87669dc8d78e77fe1764535d90 Mon Sep 17 00:00:00 2001 From: Caitlin Ross Date: Fri, 17 Feb 2017 17:03:37 -0500 Subject: [PATCH] fixed bug in rc_stack_create when synch=5 (optimistic real time mode) --- src/util/rc-stack.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/util/rc-stack.c b/src/util/rc-stack.c index ce1b650..612b271 100644 --- a/src/util/rc-stack.c +++ b/src/util/rc-stack.c @@ -38,6 +38,9 @@ void rc_stack_create(struct rc_stack **s){ case OPTIMISTIC: ss->mode = RC_OPT; break; + case OPTIMISTIC_REALTIME: + ss->mode = RC_OPT; + break; case OPTIMISTIC_DEBUG: ss->mode = RC_OPT_DBG; break; -- 2.26.2