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 = 1;

extern int *bar (void);
extern int bar_ifunc (void);

int
main (void)
{
  if (bar () == &foo && bar_ifunc () == 0xbadbeef)
    printf ("PASS\n");
  return 0;
}