Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0+
0002 
0003 /*
0004  * Part of fork context switch microbenchmark.
0005  *
0006  * Copyright 2018, Anton Blanchard, IBM Corp.
0007  */
0008 
0009 #define _GNU_SOURCE
0010 #include <unistd.h>
0011 #include <sys/syscall.h>
0012 
0013 void _start(void)
0014 {
0015     syscall(SYS_exit, 0);
0016 }