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

/* Basic kill functionality test; suicide.
#xerror:
#output: program stopped with signal 6 (*).\n
*/

#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <signal.h>
int
main (void)
{
  abort ();
  printf ("undead\n");
  exit (1);
}