2018-03-07 20:57:14 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2018 Intel Corporation. All rights reserved.
|
|
|
|
*
|
2018-05-26 01:49:13 +08:00
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
2018-03-07 20:57:14 +08:00
|
|
|
*/
|
|
|
|
|
2018-05-22 08:30:50 +08:00
|
|
|
#include <hypervisor.h>
|
2018-03-07 20:57:14 +08:00
|
|
|
|
|
|
|
void __stack_chk_fail(void)
|
|
|
|
{
|
2018-06-19 14:25:22 +08:00
|
|
|
ASSERT(false, "stack check fails in HV\n");
|
2018-03-07 20:57:14 +08:00
|
|
|
}
|