mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-05-02 13:44:00 +00:00
Header file shall not be included multiple times. The following prototype shall be used. #ifndef INIT_H #define INIT_H /* body */ #endif /* INIT_H*/ Tracked-On: #861 Signed-off-by: Shiqing Gao <shiqing.gao@intel.com>
16 lines
287 B
C
16 lines
287 B
C
/*
|
|
* Copyright (C) <2018> Intel Corporation
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef INIT_H
|
|
#define INIT_H
|
|
|
|
/* hypervisor stack bottom magic('intl') */
|
|
#define SP_BOTTOM_MAGIC 0x696e746cUL
|
|
|
|
void init_primary_cpu(void);
|
|
void init_secondary_cpu(void);
|
|
|
|
#endif /* INIT_H*/
|