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

1
2
3
4
5
6
7
8
9
/* $NetBSD: fork.S,v 1.2 2006/09/23 17:39:34 cherry Exp $ */
	
#include "SYS.h"

ENTRY(__fork, 0)
	CALLSYS_ERROR(fork)
	/* XXX:	 get return value for child */
	RET
END(__fork)