mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
dd40c5b4c9
Signed-off-by: Nicholas Piggin <npiggin@gmail.com> [mpe: Add SPDX, and fixup formatting] Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
14 lines
192 B
C
14 lines
192 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/*
|
|
* Part of fork context switch microbenchmark.
|
|
*
|
|
* Copyright 2018, Anton Blanchard, IBM Corp.
|
|
*/
|
|
|
|
void _exit(int);
|
|
void _start(void)
|
|
{
|
|
_exit(0);
|
|
}
|