2021-02-04 19:39:25 +03:00
|
|
|
/*
|
|
|
|
* QEMU System Emulation accel internal functions
|
|
|
|
*
|
|
|
|
* Copyright 2021 SUSE LLC
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*/
|
|
|
|
|
2023-10-04 12:06:21 +03:00
|
|
|
#ifndef ACCEL_SYSTEM_H
|
|
|
|
#define ACCEL_SYSTEM_H
|
2021-02-04 19:39:25 +03:00
|
|
|
|
2024-01-10 12:00:53 +03:00
|
|
|
void accel_system_init_ops_interfaces(AccelClass *ac);
|
2021-02-04 19:39:25 +03:00
|
|
|
|
2023-10-04 12:06:21 +03:00
|
|
|
#endif /* ACCEL_SYSTEM_H */
|