From 426cd5d6d2b5759d16837fb8b3c44cd953b16bfa Mon Sep 17 00:00:00 2001 From: aliguori Date: Tue, 18 Nov 2008 21:52:54 +0000 Subject: Fix Windows build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ENOBUFS is not defined on Win32. Use ENOMEM instead which is more portable. This was reported by Hervé Poussineau. Signed-off-by: Anthony Liguori git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5749 c046a42c-6fe2-441c-8c8c-71466251a162 --- exec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'exec.c') diff --git a/exec.c b/exec.c index a90d076..4d39eaa 100644 --- a/exec.c +++ b/exec.c @@ -1312,7 +1312,7 @@ int cpu_watchpoint_insert(CPUState *env, target_ulong addr, target_ulong len, } wp = qemu_malloc(sizeof(*wp)); if (!wp) - return -ENOBUFS; + return -ENOMEM; wp->vaddr = addr; wp->len_mask = len_mask; @@ -1397,7 +1397,7 @@ int cpu_breakpoint_insert(CPUState *env, target_ulong pc, int flags, bp = qemu_malloc(sizeof(*bp)); if (!bp) - return -ENOBUFS; + return -ENOMEM; bp->pc = pc; bp->flags = flags; -- cgit v1.1