mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-05-06 07:26:56 +00:00
Replace the BSD-3-Clause boiler plate license text with an SPDX tag. Fixes: #189 Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
19 lines
380 B
C
19 lines
380 B
C
/*
|
|
* Copyright (C) 2018 Intel Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <hypervisor.h>
|
|
|
|
/* Number of CPUs in VM0 */
|
|
#define VM0_NUM_CPUS 1
|
|
|
|
/* Logical CPU IDs assigned to VM0 */
|
|
int VM0_CPUS[VM0_NUM_CPUS] = {0};
|
|
|
|
struct vm_description vm0_desc = {
|
|
.vm_hw_num_cores = VM0_NUM_CPUS,
|
|
.vm_hw_logical_core_ids = &VM0_CPUS[0],
|
|
};
|