Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

int foo(int *f);

int bar(int b) {
	int var = b + 1;
	return foo(&var);
}

int baz(int b) {
	return bar(b);
}