Print out which queue was corrupted
When the redzone code catches corruption, it used to just fail with
little extra info on what went wrong. Propegate that error up 1 layer
so we can crash with the channel name.
Change-Id: I6d7fbf808ca616abaf4d680abcf958c5d024829d
diff --git a/aos/events/event_loop_tmpl.h b/aos/events/event_loop_tmpl.h
index 5ca1067..12953d1 100644
--- a/aos/events/event_loop_tmpl.h
+++ b/aos/events/event_loop_tmpl.h
@@ -260,7 +260,7 @@
timing_.handler_time.Add(handler_latency);
// If the handler too too long so we blew by the previous deadline, we
- // want to just try for the next deadline. Rescuedule.
+ // want to just try for the next deadline. Reschedule.
if (monotonic_end_time > phased_loop_.sleep_time()) {
Reschedule(schedule, monotonic_end_time);
}