Changeset 32708 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Sep 23, 2010 11:18:51 AM (14 years ago)
- Location:
- trunk/src/VBox/Runtime/r0drv
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/darwin/alloc-r0drv-darwin.cpp
r32707 r32708 5 5 6 6 /* 7 * Copyright (C) 2006-20 07Oracle Corporation7 * Copyright (C) 2006-2010 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 34 34 35 35 #include <iprt/assert.h> 36 #include <iprt/err.h> 36 37 #include <iprt/thread.h> 37 38 #include "r0drv/alloc-r0drv.h" … … 46 47 return VERR_NOT_SUPPORTED; 47 48 48 PRTMEMHDR pHdr = (PRTMEMHDR)IOMalloc(cb + sizeof(*pHdr)) 49 PRTMEMHDR pHdr = (PRTMEMHDR)IOMalloc(cb + sizeof(*pHdr)); 49 50 if (RT_UNLIKELY(!pHdr)) 50 51 { -
trunk/src/VBox/Runtime/r0drv/freebsd/alloc-r0drv-freebsd.c
r32707 r32708 33 33 *******************************************************************************/ 34 34 #include "the-freebsd-kernel.h" 35 #include "internal/iprt.h" 36 #include <iprt/mem.h> 35 37 36 #include <iprt/alloc.h>37 38 #include <iprt/assert.h> 39 #include <iprt/err.h> 38 40 #include <iprt/param.h> 39 41 -
trunk/src/VBox/Runtime/r0drv/linux/alloc-r0drv-linux.c
r32707 r32708 5 5 6 6 /* 7 * Copyright (C) 2006-20 07Oracle Corporation7 * Copyright (C) 2006-2010 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 31 31 #include "the-linux-kernel.h" 32 32 #include "internal/iprt.h" 33 34 33 #include <iprt/mem.h> 34 35 35 #include <iprt/assert.h> 36 #include <iprt/err.h> 36 37 #include "r0drv/alloc-r0drv.h" 37 38 -
trunk/src/VBox/Runtime/r0drv/nt/alloc-r0drv-nt.cpp
r32707 r32708 5 5 6 6 /* 7 * Copyright (C) 2006-20 07Oracle Corporation7 * Copyright (C) 2006-2010 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 30 30 *******************************************************************************/ 31 31 #include "the-nt-kernel.h" 32 #include "internal/iprt.h" 33 #include <iprt/mem.h> 32 34 33 #include <iprt/alloc.h>34 35 #include <iprt/assert.h> 36 #include <iprt/err.h> 35 37 #include "r0drv/alloc-r0drv.h" 36 38 -
trunk/src/VBox/Runtime/r0drv/os2/alloc-r0drv-os2.cpp
r32707 r32708 34 34 *******************************************************************************/ 35 35 #include "the-os2-kernel.h" 36 #include "internal/iprt.h" 37 #include <iprt/mem.h> 36 38 37 #include <iprt/alloc.h>38 39 #include <iprt/assert.h> 40 #include <iprt/err.h> 39 41 #include <iprt/param.h> 40 #include "r0drv/alloc-r0drv.h" /** @todo drop the r0drv/alloc-r0drv.cpp stuff on OS/2 .*/42 #include "r0drv/alloc-r0drv.h" /** @todo drop the r0drv/alloc-r0drv.cpp stuff on OS/2? */ 41 43 42 44 -
trunk/src/VBox/Runtime/r0drv/solaris/vbi/alloc-r0drv-solaris.c
r32707 r32708 5 5 6 6 /* 7 * Copyright (C) 2006-20 07Oracle Corporation7 * Copyright (C) 2006-2010 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 34 34 35 35 #include <iprt/assert.h> 36 #include <iprt/err.h> 36 37 #include <iprt/log.h> 37 38 #include <iprt/param.h>
Note:
See TracChangeset
for help on using the changeset viewer.