Changeset 29250 in vbox for trunk/src/VBox/Devices
- Timestamp:
- May 9, 2010 5:53:58 PM (15 years ago)
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 19 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/audio.c
r26312 r29250 28 28 29 29 #include <VBox/log.h> 30 #include <iprt/asm-math.h> 30 31 #include <iprt/assert.h> 31 32 #include <iprt/uuid.h> -
trunk/src/VBox/Devices/Audio/mixeng.c
r6521 r29250 27 27 #include "../../vl_vbox.h" 28 28 #include "audio.h" 29 #include <iprt/alloc.h>30 29 #ifdef VBOX 31 #include <iprt/asm.h> 30 # include <iprt/asm-math.h> 31 # include <iprt/mem.h> 32 32 #endif 33 33 -
trunk/src/VBox/Devices/Bus/DevPCI.cpp
r28800 r29250 49 49 #include <VBox/pci.h> 50 50 #include <VBox/pdmdev.h> 51 #include <iprt/asm.h> 51 52 #include <iprt/assert.h> 52 53 #include <iprt/string.h> -
trunk/src/VBox/Devices/EFI/DevEFI.cpp
r28800 r29250 29 29 #include <VBox/dbgf.h> 30 30 31 #include <iprt/asm.h> 31 32 #include <iprt/assert.h> 32 #include <iprt/alloc.h>33 33 #include <iprt/file.h> 34 #include <iprt/mem.h> 34 35 #include <iprt/string.h> 35 36 #include <iprt/uuid.h> -
trunk/src/VBox/Devices/Network/DevVirtioNet.cpp
r28800 r29250 22 22 #include <VBox/pdmdev.h> 23 23 #include <VBox/pdmnetifs.h> 24 #include <iprt/asm.h> 24 25 #include <iprt/semaphore.h> 25 26 #ifdef IN_RING3 -
trunk/src/VBox/Devices/PC/DevACPI.cpp
r28800 r29250 26 26 #include <iprt/assert.h> 27 27 #include <iprt/asm.h> 28 #include <iprt/asm-math.h> 28 29 #ifdef IN_RING3 29 30 # include <iprt/alloc.h> -
trunk/src/VBox/Devices/PC/DevFwCommon.cpp
r28800 r29250 26 26 #include <VBox/param.h> 27 27 28 #include <iprt/asm.h> 28 29 #include <iprt/assert.h> 29 30 #include <iprt/buildconfig.h> -
trunk/src/VBox/Devices/PC/DevHPET.cpp
r28800 r29250 3 3 * HPET virtual device - high precision event timer emulation 4 4 */ 5 5 6 /* 6 7 * Copyright (C) 2009-2010 Oracle Corporation … … 14 15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 15 16 */ 17 16 18 /******************************************************************************* 17 19 * Header Files * … … 22 24 #include <VBox/stam.h> 23 25 #include <iprt/assert.h> 26 #include <iprt/asm-math.h> 24 27 #include <iprt/string.h> 25 #include <iprt/asm.h>26 28 27 29 #include "../Builtins.h" 28 30 29 31 32 /******************************************************************************* 33 * Defined Constants And Macros * 34 *******************************************************************************/ 30 35 /* 31 36 * Current limitations: … … 103 108 #define HPET_SAVED_STATE_VERSION_EMPTY 1 104 109 110 111 /******************************************************************************* 112 * Structures and Typedefs * 113 *******************************************************************************/ 105 114 struct HpetState; 106 115 typedef struct HpetTimer -
trunk/src/VBox/Devices/PC/DevPcBios.cpp
r28800 r29250 25 25 26 26 #include <VBox/log.h> 27 #include <iprt/asm.h> 27 28 #include <iprt/assert.h> 28 #include <iprt/alloc.h>29 29 #include <iprt/buildconfig.h> 30 30 #include <iprt/file.h> 31 #include <iprt/mem.h> 31 32 #include <iprt/string.h> 32 33 #include <iprt/uuid.h> -
trunk/src/VBox/Devices/PC/DevPit-i8254.cpp
r28800 r29250 49 49 #include <VBox/stam.h> 50 50 #include <iprt/assert.h> 51 #include <iprt/asm .h>51 #include <iprt/asm-math.h> 52 52 53 53 #ifdef IN_RING3 -
trunk/src/VBox/Devices/PC/DevRTC.cpp
r28800 r29250 47 47 #include <VBox/pdmdev.h> 48 48 #include <VBox/log.h> 49 #include <iprt/asm .h>49 #include <iprt/asm-math.h> 50 50 #include <iprt/assert.h> 51 51 #include <iprt/string.h> -
trunk/src/VBox/Devices/PC/DrvACPI.cpp
r28800 r29250 27 27 #include <VBox/pdmdrv.h> 28 28 #include <VBox/log.h> 29 #include <iprt/asm.h> 29 30 #include <iprt/assert.h> 30 31 #include <iprt/string.h> -
trunk/src/VBox/Devices/Storage/DevBusLogic.cpp
r28800 r29250 26 26 #include <VBox/pdmifs.h> 27 27 #include <VBox/scsi.h> 28 #include <iprt/asm.h> 28 29 #include <iprt/assert.h> 29 30 #include <iprt/string.h> -
trunk/src/VBox/Devices/Storage/DrvHostDVD.cpp
r28800 r29250 92 92 93 93 #include <VBox/pdmdrv.h> 94 #include <iprt/asm.h> 94 95 #include <iprt/assert.h> 95 96 #include <iprt/file.h> -
trunk/src/VBox/Devices/Storage/DrvSCSI.cpp
r29213 r29250 25 25 #include <VBox/pdmthread.h> 26 26 #include <VBox/vscsi.h> 27 #include <iprt/asm.h> 27 28 #include <iprt/assert.h> 28 29 #include <iprt/mem.h> -
trunk/src/VBox/Devices/Storage/VHDHDDCore.cpp
r29238 r29250 1 /* $Id$ */ 1 2 /** @file 2 3 * VHD Disk image, Core Code. … … 24 25 #include <VBox/log.h> 25 26 #include <VBox/version.h> 26 #include <iprt/ cdefs.h>27 #include <iprt/asm.h> 27 28 #include <iprt/assert.h> 28 #include <iprt/ alloc.h>29 #include <iprt/mem.h> 29 30 #include <iprt/uuid.h> 30 31 #include <iprt/file.h> -
trunk/src/VBox/Devices/Storage/testcase/tstVD.cpp
r28800 r29250 1 /* $Id$ */ 1 2 /** @file 2 *3 3 * Simple VBox HDD container test utility. 4 4 */ … … 16 16 */ 17 17 18 /******************************************************************************* 19 * Header Files * 20 *******************************************************************************/ 18 21 #include <VBox/VBoxHDD.h> 19 22 #include <VBox/err.h> 20 23 #include <VBox/log.h> 21 #include <iprt/asm .h>24 #include <iprt/asm-amd64-x86.h> 22 25 #include <iprt/dir.h> 23 26 #include <iprt/string.h> -
trunk/src/VBox/Devices/USB/DevOHCI.cpp
r28800 r29250 90 90 #include <iprt/string.h> 91 91 #include <iprt/asm.h> 92 #include <iprt/asm-math.h> 92 93 #ifdef IN_RING3 93 94 # include <iprt/alloca.h> -
trunk/src/VBox/Devices/VMMDev/VMMDev.cpp
r28800 r29250 32 32 #include <VBox/vm.h> /* for VM_IS_EMT */ 33 33 34 #include <iprt/asm.h> 34 35 #include <iprt/assert.h> 35 36 #include <iprt/buildconfig.h>
Note:
See TracChangeset
for help on using the changeset viewer.