diff options
author | Stefan Weil <weil@mail.berlios.de> | 2011-04-27 10:44:38 +0200 |
---|---|---|
committer | Riku Voipio <riku.voipio@iki.fi> | 2011-05-02 10:00:01 +0300 |
commit | 6f11f013a5ef88c42ce2e9060bbaafb39676ca39 (patch) | |
tree | 0840c59eaeb5c831440f6de3bcc3397f10d1812f /linux-user/strace.c | |
parent | 08ab2ccb08372a52ee1c597acf640cadb9089a3a (diff) | |
download | qemu-6f11f013a5ef88c42ce2e9060bbaafb39676ca39.tar.gz qemu-6f11f013a5ef88c42ce2e9060bbaafb39676ca39.tar.bz2 qemu-6f11f013a5ef88c42ce2e9060bbaafb39676ca39.zip |
linux-user: Fix compilation for "old" linux versions
Debian Lenny and other installations with older linux versions
failed to compile linux-user because some CLONE_xxx macros are
undefined.
Signed-off-by: Stefan Weil <weil@mail.berlios.de>
Signed-off-by: Riku Voipio <riku.voipio@iki.fi>
Diffstat (limited to 'linux-user/strace.c')
-rw-r--r-- | linux-user/strace.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/linux-user/strace.c b/linux-user/strace.c index 5d9bb085c7..fe9326aa73 100644 --- a/linux-user/strace.c +++ b/linux-user/strace.c @@ -477,12 +477,24 @@ UNUSED static struct flags clone_flags[] = { FLAG_GENERIC(CLONE_DETACHED), FLAG_GENERIC(CLONE_UNTRACED), FLAG_GENERIC(CLONE_CHILD_SETTID), +#if defined(CLONE_NEWUTS) FLAG_GENERIC(CLONE_NEWUTS), +#endif +#if defined(CLONE_NEWIPC) FLAG_GENERIC(CLONE_NEWIPC), +#endif +#if defined(CLONE_NEWUSER) FLAG_GENERIC(CLONE_NEWUSER), +#endif +#if defined(CLONE_NEWPID) FLAG_GENERIC(CLONE_NEWPID), +#endif +#if defined(CLONE_NEWNET) FLAG_GENERIC(CLONE_NEWNET), +#endif +#if defined(CLONE_IO) FLAG_GENERIC(CLONE_IO), +#endif FLAG_END, }; |