lua: rocklib_events fix

Do not spawn threads on COP as PP lacks cache coherency between cores,
making it unsafe to access cacheable memory that might be accessed by
the other core.

Change-Id: Idf910e9cc9dad3f0bf5bdb63800ed4abaa97558a
This commit is contained in:
Aidan MacDonald 2022-12-31 22:40:09 +00:00
parent 84fe501f53
commit e8e781b006

View file

@ -423,7 +423,7 @@ static void init_event_thread(bool init, struct event_data *ev_data)
0,
EVENT_THREAD
IF_PRIO(, PRIORITY_SYSTEM)
IF_COP(, COP));
IF_COP(, CPU));
/* Timer is used to poll waiting events */
if (!rb->timer_register(1, NULL, EV_TIMER_FREQ, rev_timer_isr IF_COP(, CPU)))