8d7f2e767d
The softmmu/ directory contains files specific to system emulation. Rename it as system/. Update meson rules, the MAINTAINERS file and all the documentation and comments. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-ID: <20231004090629.37473-14-philmd@linaro.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
20 lines
455 B
C
20 lines
455 B
C
/*
|
|
* Copyright (c) 2020 Oracle and/or its affiliates.
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2.
|
|
* See the COPYING file in the top-level directory.
|
|
*
|
|
*/
|
|
|
|
#ifndef RUNSTATE_ACTION_H
|
|
#define RUNSTATE_ACTION_H
|
|
|
|
#include "qapi/qapi-commands-run-state.h"
|
|
|
|
/* in system/runstate-action.c */
|
|
extern RebootAction reboot_action;
|
|
extern ShutdownAction shutdown_action;
|
|
extern PanicAction panic_action;
|
|
|
|
#endif /* RUNSTATE_ACTION_H */
|