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

/* Simple program to help exercise gdb's convenience variables.  */

typedef void *ptr;

ptr p = &p;

void
foo_void (void)
{
}

int
foo_int (void)
{
  return 0;
}

int
main ()
{
  p = &p;
  return 0;
}