Skip to content
Snippets Groups Projects
Commit 952c6518 authored by swym's avatar swym
Browse files

fix(epicardium): volatile API_CALL_MEM->int_id to avoid infinite loop

...otherwise ->int_id will not be reloaded in the while-loop at
api_interrupt_trigger(), causing it to loop indefinitely
parent 00b4b33b
No related branches found
No related tags found
1 merge request!250fix(epicardium): volatile API_CALL_MEM->int_id to avoid infinite loop
......@@ -38,7 +38,7 @@ struct api_call_mem {
api_id_t id;
/* ID of the current interrupt */
api_int_id_t int_id;
volatile api_int_id_t int_id;
/*
* Buffer for arguments/return value. This buffer will be
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment