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

// { dg-output "object.Exception@.*: exception" }
void main()
{
    try
    {
        f1();
    }
    catch (Exception e)
    {
        import core.stdc.stdio;
        auto str = e.toString();
        printf("%.*s\n", str.length, str.ptr);
    }
}

void f1()
{
    throw new Exception("exception");
}