https://bitbucket.org/adelard/simple-concurrency
Tip revision: cd7dfa9b13e79137daa54446067371af0a68515d authored by Dan Sheridan on 27 February 2015, 15:32:58 UTC
Change -accesses-for to report accesses from the "main" entry point even if it is not explicitly listed in -threads; this better matches the behaviour of -var-overlap.
Change -accesses-for to report accesses from the "main" entry point even if it is not explicitly listed in -threads; this better matches the behaviour of -var-overlap.
Tip revision: cd7dfa9
test2.c
#include "test2.h"
int global_val2;
extern int global_val1;
extern int global_val4[];
void funcA()
{
global_val2 ++;
}
void an_interrupt2()
{
global_val2 = global_val1 + global_val4[0];
}
