Changeset 76419 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Dec 23, 2018 7:43:43 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 127720
- Location:
- trunk/src/VBox/Additions
- Files:
-
- 24 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest-linux.c
r75584 r76419 61 61 #include <iprt/asm.h> 62 62 #include <iprt/ctype.h> 63 #include <iprt/err.h>64 63 #include <iprt/initterm.h> 65 64 #include <iprt/mem.h> … … 69 68 #include <iprt/semaphore.h> 70 69 #include <iprt/string.h> 70 #include <VBox/err.h> 71 71 #include <VBox/log.h> 72 72 -
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest.cpp
r75705 r76419 54 54 #include "VBoxGuestInternal.h" 55 55 #include <VBox/VMMDev.h> /* for VMMDEV_RAM_SIZE */ 56 #include <VBox/err.h> 56 57 #include <VBox/log.h> 57 58 #include <VBox/HostServices/GuestPropertySvc.h> -
trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR0LibGenericRequest.cpp
r72627 r76419 38 38 #include <iprt/assert.h> 39 39 #include <iprt/string.h> 40 #include <VBox/err.h> 40 41 41 42 -
trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR0LibHGCM.cpp
r75547 r76419 41 41 #include <iprt/semaphore.h> 42 42 #include <iprt/string.h> 43 #include <VBox/err.h> 43 44 44 45 #ifdef VBGL_VBOXGUEST -
trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR0LibHGCMInternal.cpp
r76196 r76419 43 43 #include <iprt/thread.h> 44 44 #include <iprt/time.h> 45 #include <VBox/err.h> 45 46 46 47 #ifndef VBGL_VBOXGUEST -
trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR0LibInit.cpp
r75600 r76419 38 38 #include <iprt/assert.h> 39 39 #include <iprt/semaphore.h> 40 #include <VBox/err.h> 40 41 41 42 -
trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR3Lib.cpp
r75705 r76419 59 59 #include <iprt/assert.h> 60 60 #include <iprt/asm.h> 61 #include <iprt/err.h> 61 62 #include <iprt/file.h> 62 63 #include <iprt/time.h> -
trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR3LibAutoLogon.cpp
r69500 r76419 35 35 36 36 #include "VBoxGuestR3LibInternal.h" 37 #include <iprt/err.h> 37 38 38 39 -
trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR3LibClipboard.cpp
r69500 r76419 30 30 *********************************************************************************************************************************/ 31 31 #include <VBox/HostServices/VBoxClipboardSvc.h> 32 #include <VBox/err.h> 32 33 #include <iprt/assert.h> 33 34 #include <iprt/string.h> -
trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR3LibCpuHotPlug.cpp
r69500 r76419 31 31 #include "VBoxGuestR3LibInternal.h" 32 32 #include <iprt/assert.h> 33 #include <iprt/err.h> 33 34 34 35 -
trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR3LibGuestCtrl.cpp
r75893 r76419 34 34 #include <iprt/cpp/autores.h> 35 35 #include <iprt/stdarg.h> 36 #include <VBox/err.h> 36 37 #include <VBox/log.h> 37 38 #include <VBox/HostServices/GuestControlSvc.h> -
trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR3LibGuestProp.cpp
r71695 r76419 39 39 #include <iprt/assert.h> 40 40 #include <iprt/stdarg.h> 41 #include <VBox/err.h> 41 42 #include <VBox/log.h> 42 43 #include <VBox/HostServices/GuestPropertySvc.h> -
trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR3LibGuestUser.cpp
r73097 r76419 32 32 #include <iprt/assert.h> 33 33 #include <VBox/log.h> 34 #include <iprt/err.h> 34 35 #include <iprt/mem.h> 35 36 #include <iprt/string.h> -
trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR3LibLog.cpp
r69500 r76419 29 29 * Header Files * 30 30 *********************************************************************************************************************************/ 31 #include <iprt/err.h> 31 32 #include <iprt/mem.h> 32 33 #include <iprt/string.h> -
trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR3LibSeamless.cpp
r69500 r76419 30 30 *********************************************************************************************************************************/ 31 31 #include <iprt/assert.h> 32 #include <iprt/err.h> 32 33 #include <iprt/string.h> 33 34 -
trunk/src/VBox/Additions/common/VBoxService/VBoxService.cpp
r75726 r76419 87 87 #include <iprt/thread.h> 88 88 89 #include <VBox/err.h> 89 90 #include <VBox/log.h> 90 91 -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceAutoMount.cpp
r75947 r76419 45 45 #include <iprt/sort.h> 46 46 #include <iprt/string.h> 47 #include <VBox/err.h> 47 48 #include <VBox/VBoxGuestLib.h> 48 49 #include <VBox/shflsvc.h> -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceBalloon.cpp
r69500 r76419 50 50 #include <iprt/thread.h> 51 51 #include <iprt/time.h> 52 #include <VBox/err.h> 52 53 #include <VBox/VBoxGuestLib.h> 53 54 #include "VBoxServiceInternal.h" -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControl.cpp
r75853 r76419 58 58 #include <iprt/semaphore.h> 59 59 #include <iprt/thread.h> 60 #include <VBox/err.h> 60 61 #include <VBox/VBoxGuestLib.h> 61 62 #include <VBox/HostServices/GuestControlSvc.h> -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceTimeSync.cpp
r75559 r76419 93 93 #endif 94 94 95 #include <iprt/ thread.h>95 #include <iprt/assert.h> 96 96 #include <iprt/string.h> 97 97 #include <iprt/semaphore.h> 98 98 #include <iprt/time.h> 99 #include <iprt/assert.h> 99 #include <iprt/thread.h> 100 #include <VBox/err.h> 100 101 #include <VBox/VBoxGuestLib.h> 101 102 #include "VBoxServiceInternal.h" -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceVMInfo.cpp
r73097 r76419 95 95 #include <iprt/time.h> 96 96 #include <iprt/assert.h> 97 #include <VBox/err.h> 97 98 #include <VBox/version.h> 98 99 #include <VBox/VBoxGuestLib.h> -
trunk/src/VBox/Additions/x11/VBoxClient/display-svga-x11.cpp
r75836 r76419 43 43 44 44 #include <iprt/assert.h> 45 #include <iprt/err.h> 45 46 #include <iprt/file.h> 46 47 #include <iprt/string.h> -
trunk/src/VBox/Additions/x11/VBoxClient/display-svga.cpp
r75961 r76419 44 44 #include <iprt/assert.h> 45 45 #include <iprt/file.h> 46 #include <iprt/err.h> 46 47 #include <iprt/string.h> 47 48 -
trunk/src/VBox/Additions/x11/VBoxClient/main.cpp
r70126 r76419 16 16 */ 17 17 18 19 /********************************************************************************************************************************* 20 * Header Files * 21 *********************************************************************************************************************************/ 18 22 #include <sys/types.h> 19 23 #include <sys/wait.h> … … 41 45 #include <iprt/types.h> 42 46 #include <VBox/VBoxGuestLib.h> 47 #include <VBox/err.h> 43 48 #include <VBox/log.h> 44 49 45 50 #include "VBoxClient.h" 46 51 52 53 /********************************************************************************************************************************* 54 * Global Variables * 55 *********************************************************************************************************************************/ 47 56 /*static int (*gpfnOldIOErrorHandler)(Display *) = NULL; - unused */ 48 57 … … 63 72 /** Counter of how often our deamon has been respawned. */ 64 73 unsigned cRespawn = 0; 74 75 65 76 66 77 /**
Note:
See TracChangeset
for help on using the changeset viewer.