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

namespace N {
  template <typename> struct A {
    int n;
    A() : n() {}
  };

  // Trigger instantiation of definition of A<int>.
  struct C {
    A<int> a;
  };
}

// Merge in another declaration and update records.
#include "b1.h"