Linux Audio

Check our new training course

Buildroot integration, development and maintenance

Need a Buildroot system for your embedded project?
Loading...
v6.9.4
 1// SPDX-License-Identifier: GPL-2.0+
 2
 3/*
 4 * Part of fork context switch microbenchmark.
 5 *
 6 * Copyright 2018, Anton Blanchard, IBM Corp.
 7 */
 8
 9#define _GNU_SOURCE
10#include <unistd.h>
11#include <sys/syscall.h>
12
13void _start(void)
14{
15	syscall(SYS_exit, 0);
16}
v6.8
 1// SPDX-License-Identifier: GPL-2.0+
 2
 3/*
 4 * Part of fork context switch microbenchmark.
 5 *
 6 * Copyright 2018, Anton Blanchard, IBM Corp.
 7 */
 8
 9#define _GNU_SOURCE
10#include <unistd.h>
11#include <sys/syscall.h>
12
13void _start(void)
14{
15	syscall(SYS_exit, 0);
16}