Code & Deploy
siGit Code
Git Hosting
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@samitouri
/
QOSamiQemu
QOSamiQemu
/
stubs
/
runstate-check.c
Code
Commits
Issues
Pulls
Sessions
CI/CD
master
master
c
7 lines
135 Bytes
Copy permalink
Copy
Raw
1
#include
"qemu/osdep.h"
2
3
#include
"system/runstate.h"
4
bool
runstate_check
(
RunState
state
)
5
{
6
return
state
==
RUN_STATE_PRELAUNCH
;
7
}