aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAvi Kivity <avi@redhat.com>2009-08-16 15:00:03 +0300
committerAvi Kivity <avi@redhat.com>2009-08-16 15:00:48 +0300
commita7f1341e660265336145826856c9afd5eb6f1eca (patch)
tree4786246d9c3aeb9f8ef2f98bc5eaa3d952caf60a /qemu-common.h
parentRevert "vga: do not resize the screen on hw_invalidate" (diff)
parentFix desynchronization of condition code state when a memory access traps (diff)
downloadqemu-kvm-a7f1341e660265336145826856c9afd5eb6f1eca.tar.gz
qemu-kvm-a7f1341e660265336145826856c9afd5eb6f1eca.tar.bz2
qemu-kvm-a7f1341e660265336145826856c9afd5eb6f1eca.zip
Merge branch 'master' of git://git.sv.gnu.org/qemu
* 'master' of git://git.sv.gnu.org/qemu: Fix desynchronization of condition code state when a memory access traps PPC: clean up ppc405 Use pstrcpy to avoid OpenBSD linker warnings bsd-user: Add generic env variable handling linux-user: compile envlist.c only once user: compile ioport-user.c only for x86 user: compile path.c only once Fix migration for ide devices Unbreak Sparc64 Unbreak Sparc32 and PPC Third attempt to invoke create_config properly Fix typo Do not use $SHELL to invoke our scripts Aesthetics use C99 initializers for all audio/* use C99 initializers for audio_pcm_ops Use C99 initializers for audio_option Use proper struct initializers and remove INIT_FIELD() macro Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'qemu-common.h')
-rw-r--r--qemu-common.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/qemu-common.h b/qemu-common.h
index 73de3c7b9..c8fb315d2 100644
--- a/qemu-common.h
+++ b/qemu-common.h
@@ -115,6 +115,10 @@ int qemu_strnlen(const char *s, int max_len);
time_t mktimegm(struct tm *tm);
int qemu_fls(int i);
+/* path.c */
+void init_paths(const char *prefix);
+const char *path(const char *pathname);
+
#define qemu_isalnum(c) isalnum((unsigned char)(c))
#define qemu_isalpha(c) isalpha((unsigned char)(c))
#define qemu_iscntrl(c) iscntrl((unsigned char)(c))