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


int bad_guy(int * i)
{
    *i = 9;
    return *i;
}

void bad_guy_test()
{
    int * ptr = 0;

    bad_guy(ptr);
}