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

1
2
3
4
5
6
typedef int int_t;
int main(void) {
int i = 0; i += 1;
int_t j = 0; j += 1;
return 0;
}