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

#include <stdio.h>

int foo;

extern void xxx (void);

void
bar (int x)
{
  if (foo == 1)
    printf ("OK1\n");
  else if (foo == 0)
    printf ("OK2\n");
  foo = -1;
  xxx ();
}