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>
#include <stdlib.h>

void
test (void)
{
  static int count;
  if (count)
    printf("PASS\n");
  count++;
}

void
foo (void (*bar) (void))
{
  if (bar != test)
    abort ();
  bar ();
  test ();
}