Skip to content
Snippets Groups Projects
Commit 4f101232 authored by rahix's avatar rahix
Browse files

Merge 'Make API_CALL_MEM->int_id volatile'

... otherwise ->int_id will not be reloaded in the while-loop
at api_interrupt_trigger(), causing it to loop indefinitely

See merge request card10/firmware!250
parents dc4afc21 952c6518
No related branches found
No related tags found
1 merge request!250fix(epicardium): volatile API_CALL_MEM->int_id to avoid infinite loop
Pipeline #3400 passed
......@@ -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