acrn-hypervisor/hypervisor/common/stack_protector.c

13 lines
216 B
C
Raw Normal View History

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