Lionel Sambuc 0a6a1f1d05 NetBSD re-synchronization of the source tree
This brings our tree to NetBSD 7.0, as found on -current on the
10-10-2015.

This updates:
 - LLVM to 3.6.1
 - GCC to GCC 5.1
 - Replace minix/commands/zdump with usr.bin/zdump
 - external/bsd/libelf has moved to /external/bsd/elftoolchain/
 - Import ctwm
 - Drop sprintf from libminc

Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
2016-01-13 20:32:14 +01:00

18 lines
380 B
ArmAsm

/* $NetBSD: fork.S,v 1.1 2014/09/03 19:34:26 matt Exp $ */
/*
* pid = fork();
*
* r12 == 0 in parent process, 1 in child process.
* r11 == pid of child in parent, pid of parent in child.
*/
#include "SYS.h"
_SYSCALL(__fork,fork)
l.addi r12,r12,-1 # from 1 to 0 in child, 0 to -1 in parent
l.and r11,r11,r12 # return 0 in child, pid in parent
l.jr lr
l.nop
END(__fork)