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

struct A;
struct B
{
  int foo;
  struct A *bar;
};

struct A
{
  long a;
  struct B *foo;
};

static struct A *foo __attribute__((used));