https://github.com/qemu/qemu
Raw File
Tip revision: d00e6cddc220de993573dfb5fd160ac72ccd49ab authored by Peter Maydell on 04 December 2014, 15:51:22 UTC
Update version for v2.2.0-rc5 release
Tip revision: d00e6cd
is-daemonized.c
#include "qemu-common.h"

/* Win32 has its own inline stub */
#ifndef _WIN32
bool is_daemonized(void)
{
    return false;
}
#endif
back to top