acrn-hypervisor/hypervisor/lib/stack_protector.c

14 lines
241 B
C
Raw Normal View History

/*
* Copyright (C) 2018 Intel Corporation. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#include <logmsg.h>
void __stack_chk_fail(void);
void __stack_chk_fail(void)
{
ASSERT(false, "stack check fails in HV\n");
}