Training courses
Kernel and Embedded Linux
Bootlin training courses
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
int foo (void) { int y; volatile int x; x = 5; x = 5; x = 5; y = 3; return x + y; } int baz (void) { return 5; } int main (void) { int y, z; y = 2; z = 9; y = foo (); z = y; y = y + 2; /* jump here */ y = baz (); return 0; /* until here */ }