2018-08-13 00:29:12 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2018 Intel Corporation. All rights reserved.
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
*/
|
|
|
|
#include <acrn_common.h>
|
|
|
|
|
2018-11-06 23:43:47 +08:00
|
|
|
#define CAT__(A,B) A ## B
|
|
|
|
#define CAT_(A,B) CAT__(A,B)
|
2018-08-13 00:29:12 +08:00
|
|
|
#define CTASSERT(expr) \
|
|
|
|
typedef int CAT_(CTA_DummyType,__LINE__)[(expr) ? 1 : -1]
|
|
|
|
|
|
|
|
CTASSERT(sizeof(struct vhm_request) == (4096U/VHM_REQUEST_MAX));
|