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

# $FreeBSD$

f() {
	trap 'return 42' USR1
	kill -USR1 $$
	return 3
}
f
r=$?
[ "$r" = 42 ]