Changeset 57358 in vbox for trunk/src/VBox/Runtime/r0drv
- Timestamp:
- Aug 14, 2015 3:16:38 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 102121
- Location:
- trunk/src/VBox/Runtime/r0drv
- Files:
-
- 141 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/alloc-r0drv.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #define RTMEM_NO_WRAP_TO_EF_APIS 32 32 #include <iprt/mem.h> … … 46 46 47 47 48 /******************************************************************************* 49 * Defined Constants And Macros *50 ******************************************************************************* /48 /********************************************************************************************************************************* 49 * Defined Constants And Macros * 50 *********************************************************************************************************************************/ 51 51 #ifdef RT_STRICT 52 52 # define RTR0MEM_STRICT … … 60 60 61 61 62 /******************************************************************************* 63 * Global Variables *64 ******************************************************************************* /62 /********************************************************************************************************************************* 63 * Global Variables * 64 *********************************************************************************************************************************/ 65 65 #ifdef RTR0MEM_STRICT 66 66 /** Fence data. */ -
trunk/src/VBox/Runtime/r0drv/darwin/RTLogWriteDebugger-r0drv-darwin.cpp
r57228 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-darwin-kernel.h" 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/darwin/RTLogWriteStdOut-r0drv-darwin.cpp
r57228 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-darwin-kernel.h" 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/darwin/alloc-r0drv-darwin.cpp
r57228 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-darwin-kernel.h" 32 32 #include "internal/iprt.h" … … 40 40 41 41 42 /******************************************************************************* 43 * Structures and Typedefs *44 ******************************************************************************* /42 /********************************************************************************************************************************* 43 * Structures and Typedefs * 44 *********************************************************************************************************************************/ 45 45 /** 46 46 * Extended header used for headers marked with RTMEMHDR_FLAG_EXEC. -
trunk/src/VBox/Runtime/r0drv/darwin/assert-r0drv-darwin.cpp
r57228 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-darwin-kernel.h" 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/darwin/dbgkrnlinfo-r0drv-darwin.cpp
r57274 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #ifdef IN_RING0 32 32 # include "the-darwin-kernel.h" … … 117 117 118 118 119 /******************************************************************************* 120 * Structures and Typedefs *121 ******************************************************************************* /119 /********************************************************************************************************************************* 120 * Structures and Typedefs * 121 *********************************************************************************************************************************/ 122 122 /** 123 123 * Our internal representation of the mach_kernel after loading it's symbols … … 174 174 175 175 176 /******************************************************************************* 177 * Structures and Typedefs *178 ******************************************************************************* /176 /********************************************************************************************************************************* 177 * Structures and Typedefs * 178 *********************************************************************************************************************************/ 179 179 #ifdef DEBUG 180 180 static bool g_fBreakpointOnError = false; -
trunk/src/VBox/Runtime/r0drv/darwin/initterm-r0drv-darwin.cpp
r57274 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-darwin-kernel.h" 32 32 #include "internal/iprt.h" … … 39 39 40 40 41 /******************************************************************************* 42 * Global Variables *43 ******************************************************************************* /41 /********************************************************************************************************************************* 42 * Global Variables * 43 *********************************************************************************************************************************/ 44 44 /** Pointer to the lock group used by IPRT. */ 45 45 lck_grp_t *g_pDarwinLockGroup = NULL; -
trunk/src/VBox/Runtime/r0drv/darwin/memobj-r0drv-darwin.cpp
r57274 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-darwin-kernel.h" 32 32 #include "internal/iprt.h" … … 50 50 51 51 52 /******************************************************************************* 53 * Structures and Typedefs *54 ******************************************************************************* /52 /********************************************************************************************************************************* 53 * Structures and Typedefs * 54 *********************************************************************************************************************************/ 55 55 /** 56 56 * The Darwin version of the memory object structure. -
trunk/src/VBox/Runtime/r0drv/darwin/memuserkernel-r0drv-darwin.cpp
r57074 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-darwin-kernel.h" 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/darwin/mp-r0drv-darwin.cpp
r57274 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-darwin-kernel.h" 32 32 #include "internal/iprt.h" … … 41 41 42 42 43 /******************************************************************************* 44 * Global Variables *45 ******************************************************************************* /43 /********************************************************************************************************************************* 44 * Global Variables * 45 *********************************************************************************************************************************/ 46 46 static int32_t volatile g_cMaxCpus = -1; 47 47 -
trunk/src/VBox/Runtime/r0drv/darwin/process-r0drv-darwin.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-darwin-kernel.h" 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/darwin/semevent-r0drv-darwin.cpp
r57246 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #define RTSEMEVENT_WITHOUT_REMAPPING 32 32 #include "the-darwin-kernel.h" … … 50 50 51 51 52 /******************************************************************************* 53 * Structures and Typedefs *54 ******************************************************************************* /52 /********************************************************************************************************************************* 53 * Structures and Typedefs * 54 *********************************************************************************************************************************/ 55 55 /** 56 56 * Waiter entry. Lives on the stack. -
trunk/src/VBox/Runtime/r0drv/darwin/semeventmulti-r0drv-darwin.cpp
r57246 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #define RTSEMEVENTMULTI_WITHOUT_REMAPPING 32 32 #include "the-darwin-kernel.h" … … 49 49 50 50 51 /******************************************************************************* 52 * Defined Constants And Macros *53 ******************************************************************************* /51 /********************************************************************************************************************************* 52 * Defined Constants And Macros * 53 *********************************************************************************************************************************/ 54 54 /** @name fStateAndGen values 55 55 * @{ */ … … 67 67 68 68 69 /******************************************************************************* 70 * Structures and Typedefs *71 ******************************************************************************* /69 /********************************************************************************************************************************* 70 * Structures and Typedefs * 71 *********************************************************************************************************************************/ 72 72 /** 73 73 * Darwin multiple release event semaphore. -
trunk/src/VBox/Runtime/r0drv/darwin/semfastmutex-r0drv-darwin.cpp
r57246 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-darwin-kernel.h" 32 32 #include "internal/iprt.h" … … 46 46 47 47 48 /******************************************************************************* 49 * Structures and Typedefs *50 ******************************************************************************* /48 /********************************************************************************************************************************* 49 * Structures and Typedefs * 50 *********************************************************************************************************************************/ 51 51 /** 52 52 * Wrapper for the darwin semaphore structure. -
trunk/src/VBox/Runtime/r0drv/darwin/semmutex-r0drv-darwin.cpp
r57246 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #define RTSEMMUTEX_WITHOUT_REMAPPING 32 32 #include "the-darwin-kernel.h" … … 46 46 47 47 48 /******************************************************************************* 49 * Structures and Typedefs *50 ******************************************************************************* /48 /********************************************************************************************************************************* 49 * Structures and Typedefs * 50 *********************************************************************************************************************************/ 51 51 /** 52 52 * Darwin mutex semaphore. -
trunk/src/VBox/Runtime/r0drv/darwin/spinlock-r0drv-darwin.cpp
r57246 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-darwin-kernel.h" 32 32 #include "internal/iprt.h" … … 45 45 46 46 47 /******************************************************************************* 48 * Structures and Typedefs *49 ******************************************************************************* /47 /********************************************************************************************************************************* 48 * Structures and Typedefs * 49 *********************************************************************************************************************************/ 50 50 /** 51 51 * Wrapper for the KSPIN_LOCK type. -
trunk/src/VBox/Runtime/r0drv/darwin/thread-r0drv-darwin.cpp
r57074 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-darwin-kernel.h" 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/darwin/thread2-r0drv-darwin.cpp
r57274 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-darwin-kernel.h" 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/darwin/threadpreempt-r0drv-darwin.cpp
r57246 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-darwin-kernel.h" 32 32 #include "internal/iprt.h" … … 42 42 43 43 44 /******************************************************************************* 45 * Structures and Typedefs *46 ******************************************************************************* /44 /********************************************************************************************************************************* 45 * Structures and Typedefs * 46 *********************************************************************************************************************************/ 47 47 typedef struct RTDARWINPREEMPTHACK 48 48 { … … 55 55 56 56 57 /******************************************************************************* 58 * Global Variables *59 ******************************************************************************* /57 /********************************************************************************************************************************* 58 * Global Variables * 59 *********************************************************************************************************************************/ 60 60 static RTDARWINPREEMPTHACK g_aPreemptHacks[RTCPUSET_MAX_CPUS]; 61 61 -
trunk/src/VBox/Runtime/r0drv/darwin/time-r0drv-darwin.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #define LOG_GROUP RTLOGGROUP_TIME 32 32 #include "the-darwin-kernel.h" -
trunk/src/VBox/Runtime/r0drv/freebsd/alloc-r0drv-freebsd.c
r49718 r57358 29 29 */ 30 30 31 /******************************************************************************* 32 * Header Files * 33 *******************************************************************************/ 31 32 /********************************************************************************************************************************* 33 * Header Files * 34 *********************************************************************************************************************************/ 34 35 #include "the-freebsd-kernel.h" 35 36 #include "internal/iprt.h" … … 43 44 44 45 45 /******************************************************************************* 46 * Global Variables *47 ******************************************************************************* /46 /********************************************************************************************************************************* 47 * Global Variables * 48 *********************************************************************************************************************************/ 48 49 /* These two statements will define two globals and add initializers 49 50 and destructors that will be called at load/unload time (I think). */ -
trunk/src/VBox/Runtime/r0drv/freebsd/assert-r0drv-freebsd.c
r36555 r57358 29 29 */ 30 30 31 /******************************************************************************* 32 * Header Files * 33 *******************************************************************************/ 31 32 /********************************************************************************************************************************* 33 * Header Files * 34 *********************************************************************************************************************************/ 34 35 #include "the-freebsd-kernel.h" 35 36 -
trunk/src/VBox/Runtime/r0drv/freebsd/initterm-r0drv-freebsd.c
r36555 r57358 29 29 */ 30 30 31 /******************************************************************************* 32 * Header Files * 33 *******************************************************************************/ 31 32 /********************************************************************************************************************************* 33 * Header Files * 34 *********************************************************************************************************************************/ 34 35 #include "the-freebsd-kernel.h" 35 36 -
trunk/src/VBox/Runtime/r0drv/freebsd/memobj-r0drv-freebsd.c
r55095 r57358 31 31 32 32 33 /******************************************************************************* 34 * Header Files *35 ******************************************************************************* /33 /********************************************************************************************************************************* 34 * Header Files * 35 *********************************************************************************************************************************/ 36 36 #include "the-freebsd-kernel.h" 37 37 … … 46 46 47 47 48 /******************************************************************************* 49 * Structures and Typedefs *50 ******************************************************************************* /48 /********************************************************************************************************************************* 49 * Structures and Typedefs * 50 *********************************************************************************************************************************/ 51 51 /** 52 52 * The FreeBSD version of the memory object structure. -
trunk/src/VBox/Runtime/r0drv/freebsd/memuserkernel-r0drv-freebsd.c
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-freebsd-kernel.h" 32 32 -
trunk/src/VBox/Runtime/r0drv/freebsd/mp-r0drv-freebsd.c
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-freebsd-kernel.h" 32 32 -
trunk/src/VBox/Runtime/r0drv/freebsd/process-r0drv-freebsd.c
r18972 r57358 29 29 */ 30 30 31 /******************************************************************************* 32 * Header Files * 33 *******************************************************************************/ 31 32 /********************************************************************************************************************************* 33 * Header Files * 34 *********************************************************************************************************************************/ 34 35 #include "the-freebsd-kernel.h" 35 36 -
trunk/src/VBox/Runtime/r0drv/freebsd/semevent-r0drv-freebsd.c
r36190 r57358 29 29 */ 30 30 31 /******************************************************************************* 32 * Header Files * 33 *******************************************************************************/ 31 32 /********************************************************************************************************************************* 33 * Header Files * 34 *********************************************************************************************************************************/ 34 35 #define RTSEMEVENT_WITHOUT_REMAPPING 35 36 #include "the-freebsd-kernel.h" … … 47 48 48 49 49 /******************************************************************************* 50 * Structures and Typedefs *51 ******************************************************************************* /50 /********************************************************************************************************************************* 51 * Structures and Typedefs * 52 *********************************************************************************************************************************/ 52 53 /** 53 54 * FreeBSD event semaphore. -
trunk/src/VBox/Runtime/r0drv/freebsd/semeventmulti-r0drv-freebsd.c
r36190 r57358 29 29 */ 30 30 31 /******************************************************************************* 32 * Header Files * 33 *******************************************************************************/ 31 32 /********************************************************************************************************************************* 33 * Header Files * 34 *********************************************************************************************************************************/ 34 35 #define RTSEMEVENTMULTI_WITHOUT_REMAPPING 35 36 #include "the-freebsd-kernel.h" … … 47 48 48 49 49 /******************************************************************************* 50 * Defined Constants And Macros *51 ******************************************************************************* /50 /********************************************************************************************************************************* 51 * Defined Constants And Macros * 52 *********************************************************************************************************************************/ 52 53 /** @name fStateAndGen values 53 54 * @{ */ … … 64 65 /** @} */ 65 66 66 /******************************************************************************* 67 * Structures and Typedefs * 68 *******************************************************************************/ 67 68 /********************************************************************************************************************************* 69 * Structures and Typedefs * 70 *********************************************************************************************************************************/ 69 71 /** 70 72 * FreeBSD multiple release event semaphore. -
trunk/src/VBox/Runtime/r0drv/freebsd/semfastmutex-r0drv-freebsd.c
r39656 r57358 29 29 */ 30 30 31 /******************************************************************************* 32 * Header Files * 33 *******************************************************************************/ 31 32 /********************************************************************************************************************************* 33 * Header Files * 34 *********************************************************************************************************************************/ 34 35 #include "the-freebsd-kernel.h" 35 36 … … 43 44 44 45 45 /******************************************************************************* 46 * Structures and Typedefs *47 ******************************************************************************* /46 /********************************************************************************************************************************* 47 * Structures and Typedefs * 48 *********************************************************************************************************************************/ 48 49 /** 49 50 * Wrapper for the FreeBSD (sleep) mutex. -
trunk/src/VBox/Runtime/r0drv/freebsd/semmutex-r0drv-freebsd.c
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #define RTSEMMUTEX_WITHOUT_REMAPPING 32 32 #include "the-freebsd-kernel.h" … … 44 44 45 45 46 /******************************************************************************* 47 * Structures and Typedefs *48 ******************************************************************************* /46 /********************************************************************************************************************************* 47 * Structures and Typedefs * 48 *********************************************************************************************************************************/ 49 49 /** 50 50 * Wrapper for the FreeBSD (sleep) mutex. -
trunk/src/VBox/Runtime/r0drv/freebsd/spinlock-r0drv-freebsd.c
r52618 r57358 29 29 */ 30 30 31 /******************************************************************************* 32 * Header Files * 33 *******************************************************************************/ 31 32 /********************************************************************************************************************************* 33 * Header Files * 34 *********************************************************************************************************************************/ 34 35 #include "the-freebsd-kernel.h" 35 36 #include "internal/iprt.h" … … 47 48 48 49 49 /******************************************************************************* 50 * Structures and Typedefs *51 ******************************************************************************* /50 /********************************************************************************************************************************* 51 * Structures and Typedefs * 52 *********************************************************************************************************************************/ 52 53 /** 53 54 * Wrapper for the struct mtx type. -
trunk/src/VBox/Runtime/r0drv/freebsd/thread-r0drv-freebsd.c
r56290 r57358 25 25 */ 26 26 27 /******************************************************************************* 28 * Header Files * 29 *******************************************************************************/ 27 28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 30 31 #include "the-freebsd-kernel.h" 31 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/freebsd/thread2-r0drv-freebsd.c
r54358 r57358 29 29 */ 30 30 31 /******************************************************************************* 32 * Header Files * 33 *******************************************************************************/ 31 32 /********************************************************************************************************************************* 33 * Header Files * 34 *********************************************************************************************************************************/ 34 35 #include "the-freebsd-kernel.h" 35 36 -
trunk/src/VBox/Runtime/r0drv/freebsd/time-r0drv-freebsd.c
r52822 r57358 30 30 31 31 32 /******************************************************************************* 33 * Header Files *34 ******************************************************************************* /32 /********************************************************************************************************************************* 33 * Header Files * 34 *********************************************************************************************************************************/ 35 35 #include "the-freebsd-kernel.h" 36 36 #define RTTIME_INCL_TIMESPEC -
trunk/src/VBox/Runtime/r0drv/freebsd/timer-r0drv-freebsd.c
r54208 r57358 30 30 31 31 32 /******************************************************************************* 33 * Header Files *34 ******************************************************************************* /32 /********************************************************************************************************************************* 33 * Header Files * 34 *********************************************************************************************************************************/ 35 35 #include "the-freebsd-kernel.h" 36 36 … … 46 46 47 47 48 /******************************************************************************* 49 * Structures and Typedefs *50 ******************************************************************************* /48 /********************************************************************************************************************************* 49 * Structures and Typedefs * 50 *********************************************************************************************************************************/ 51 51 /** 52 52 * The internal representation of an FreeBSD timer handle. … … 83 83 84 84 85 /******************************************************************************* 86 * Internal Functions *87 ******************************************************************************* /85 /********************************************************************************************************************************* 86 * Internal Functions * 87 *********************************************************************************************************************************/ 88 88 static void rtTimerFreeBSDCallback(void *pvTimer); 89 89 -
trunk/src/VBox/Runtime/r0drv/generic/RTMpIsCpuWorkPending-r0drv-generic.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/mp.h> 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/generic/RTMpOn-r0drv-generic.cpp
r54416 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/mp.h> 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/generic/RTMpPokeCpu-r0drv-generic.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/mp.h> 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/generic/RTThreadPreemptDisable-r0drv-generic.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/thread.h> 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/generic/RTThreadPreemptIsEnabled-r0drv-generic.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/thread.h> 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/generic/RTThreadPreemptIsPending-r0drv-generic.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/thread.h> 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/generic/RTThreadPreemptIsPendingTrusty-r0drv-generic.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/thread.h> 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/generic/RTThreadPreemptRestore-r0drv-generic.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/thread.h> 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/generic/mpnotification-r0drv-generic.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/mp.h> 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/generic/semspinmutex-r0drv-generic.c
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #ifdef RT_OS_WINDOWS 32 32 # include "../nt/the-nt-kernel.h" … … 44 44 45 45 46 /******************************************************************************* 47 * Structures and Typedefs *48 ******************************************************************************* /46 /********************************************************************************************************************************* 47 * Structures and Typedefs * 48 *********************************************************************************************************************************/ 49 49 /** 50 50 * Saved state information. … … 86 86 87 87 88 /******************************************************************************* 89 * Defined Constants And Macros *90 ******************************************************************************* /88 /********************************************************************************************************************************* 89 * Defined Constants And Macros * 90 *********************************************************************************************************************************/ 91 91 /*#define RTSEMSPINMUTEX_INT_FLAGS_MUST*/ 92 92 -
trunk/src/VBox/Runtime/r0drv/generic/threadctxhooks-r0drv-generic.cpp
r55863 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/thread.h> 32 32 #include <iprt/err.h> -
trunk/src/VBox/Runtime/r0drv/haiku/RTLogWriteDebugger-r0drv-haiku.c
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-haiku-kernel.h" 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/haiku/RTLogWriteStdOut-r0drv-haiku.c
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-haiku-kernel.h" 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/haiku/alloc-r0drv-haiku.c
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-haiku-kernel.h" 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/haiku/assert-r0drv-haiku.c
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-haiku-kernel.h" 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/haiku/initterm-r0drv-haiku.c
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-haiku-kernel.h" 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/haiku/memobj-r0drv-haiku.c
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-haiku-kernel.h" 32 32 … … 40 40 #include "internal/memobj.h" 41 41 42 /******************************************************************************* 43 * Structures and Typedefs * 44 *******************************************************************************/ 42 43 /********************************************************************************************************************************* 44 * Structures and Typedefs * 45 *********************************************************************************************************************************/ 45 46 /** 46 47 * The Haiku version of the memory object structure. -
trunk/src/VBox/Runtime/r0drv/haiku/mp-r0drv-haiku.c
r54415 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-haiku-kernel.h" 32 32 -
trunk/src/VBox/Runtime/r0drv/haiku/process-r0drv-haiku.c
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-haiku-kernel.h" 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/haiku/semevent-r0drv-haiku.c
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-haiku-kernel.h" 32 32 #include "internal/iprt.h" … … 42 42 43 43 44 /******************************************************************************* 45 * Structures and Typedefs *46 ******************************************************************************* /44 /********************************************************************************************************************************* 45 * Structures and Typedefs * 46 *********************************************************************************************************************************/ 47 47 /** 48 48 * Haiku event semaphore. -
trunk/src/VBox/Runtime/r0drv/haiku/semeventmulti-r0drv-haiku.c
r56290 r57358 25 25 */ 26 26 27 /******************************************************************************* 28 * Header Files * 29 *******************************************************************************/ 27 28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 30 31 #include "the-haiku-kernel.h" 31 32 #include "internal/iprt.h" … … 41 42 42 43 43 /******************************************************************************* 44 * Structures and Typedefs *45 ******************************************************************************* /44 /********************************************************************************************************************************* 45 * Structures and Typedefs * 46 *********************************************************************************************************************************/ 46 47 /** 47 48 * Haiku multiple release event semaphore. -
trunk/src/VBox/Runtime/r0drv/haiku/semfastmutex-r0drv-haiku.c
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-haiku-kernel.h" 32 32 … … 40 40 41 41 42 /******************************************************************************* 43 * Structures and Typedefs *44 ******************************************************************************* /42 /********************************************************************************************************************************* 43 * Structures and Typedefs * 44 *********************************************************************************************************************************/ 45 45 /** 46 46 * Wrapper for the Haiku (sleep) mutex. -
trunk/src/VBox/Runtime/r0drv/haiku/semmutex-r0drv-haiku.c
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-haiku-kernel.h" 32 32 #include "internal/iprt.h" … … 43 43 44 44 45 /******************************************************************************* 46 * Structures and Typedefs *47 ******************************************************************************* /45 /********************************************************************************************************************************* 46 * Structures and Typedefs * 47 *********************************************************************************************************************************/ 48 48 /** 49 49 * Wrapper for the Haiku (sleep) mutex. -
trunk/src/VBox/Runtime/r0drv/haiku/spinlock-r0drv-haiku.c
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-haiku-kernel.h" 32 32 #include "internal/iprt.h" … … 45 45 46 46 47 /******************************************************************************* 48 * Structures and Typedefs *49 ******************************************************************************* /47 /********************************************************************************************************************************* 48 * Structures and Typedefs * 49 *********************************************************************************************************************************/ 50 50 /** 51 51 * Wrapper for the KSPIN_LOCK type. -
trunk/src/VBox/Runtime/r0drv/haiku/thread-r0drv-haiku.c
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-haiku-kernel.h" 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/haiku/thread2-r0drv-haiku.c
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-haiku-kernel.h" 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/haiku/time-r0drv-haiku.c
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #define LOG_GROUP RTLOGGROUP_TIME 32 32 #include "the-haiku-kernel.h" -
trunk/src/VBox/Runtime/r0drv/initterm-r0drv.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/initterm.h> 32 32 #include "internal/iprt.h" … … 46 46 47 47 48 /******************************************************************************* 49 * Global Variables *50 ******************************************************************************* /48 /********************************************************************************************************************************* 49 * Global Variables * 50 *********************************************************************************************************************************/ 51 51 /** Count of current IPRT users. 52 52 * In ring-0 several drivers / kmods / kexts / wossnames may share the -
trunk/src/VBox/Runtime/r0drv/linux/RTLogWriteDebugger-r0drv-linux.c
r57276 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-linux-kernel.h" 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/linux/alloc-r0drv-linux.c
r57294 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-linux-kernel.h" 32 32 #include "internal/iprt.h" … … 64 64 65 65 66 /******************************************************************************* 67 * Structures and Typedefs *68 ******************************************************************************* /66 /********************************************************************************************************************************* 67 * Structures and Typedefs * 68 *********************************************************************************************************************************/ 69 69 #ifdef RTMEMALLOC_EXEC_VM_AREA 70 70 /** … … 88 88 89 89 90 /******************************************************************************* 91 * Global Variables *92 ******************************************************************************* /90 /********************************************************************************************************************************* 91 * Global Variables * 92 *********************************************************************************************************************************/ 93 93 #ifdef RTMEMALLOC_EXEC_HEAP 94 94 /** The heap. */ -
trunk/src/VBox/Runtime/r0drv/linux/assert-r0drv-linux.c
r57276 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-linux-kernel.h" 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/linux/initterm-r0drv-linux.c
r57276 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-linux-kernel.h" 32 32 #include "internal/iprt.h" … … 36 36 37 37 38 /******************************************************************************* 39 * Global Variables *40 ******************************************************************************* /38 /********************************************************************************************************************************* 39 * Global Variables * 40 *********************************************************************************************************************************/ 41 41 /** The IPRT work queue. */ 42 42 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 5, 41) … … 47 47 48 48 49 /******************************************************************************* 50 * Internal Functions *51 ******************************************************************************* /49 /********************************************************************************************************************************* 50 * Internal Functions * 51 *********************************************************************************************************************************/ 52 52 /* in alloc-r0drv0-linux.c */ 53 53 DECLHIDDEN(void) rtR0MemExecCleanup(void); -
trunk/src/VBox/Runtime/r0drv/linux/memobj-r0drv-linux.c
r57276 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-linux-kernel.h" 32 32 … … 40 40 41 41 42 /******************************************************************************* 43 * Defined Constants And Macros *44 ******************************************************************************* /42 /********************************************************************************************************************************* 43 * Defined Constants And Macros * 44 *********************************************************************************************************************************/ 45 45 /* early 2.6 kernels */ 46 46 #ifndef PAGE_SHARED_EXEC … … 67 67 68 68 69 /******************************************************************************* 70 * Structures and Typedefs *71 ******************************************************************************* /69 /********************************************************************************************************************************* 70 * Structures and Typedefs * 71 *********************************************************************************************************************************/ 72 72 /** 73 73 * The Darwin version of the memory object structure. -
trunk/src/VBox/Runtime/r0drv/linux/memuserkernel-r0drv-linux.c
r57276 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-linux-kernel.h" 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/linux/mp-r0drv-linux.c
r57276 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-linux-kernel.h" 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/linux/mpnotification-r0drv-linux.c
r57276 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-linux-kernel.h" 32 32 #include "internal/iprt.h" … … 41 41 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 5, 71) && defined(CONFIG_SMP) 42 42 43 /******************************************************************************* 44 * Internal Functions * 45 *******************************************************************************/ 43 44 /********************************************************************************************************************************* 45 * Internal Functions * 46 *********************************************************************************************************************************/ 46 47 static int rtMpNotificationLinuxCallback(struct notifier_block *pNotifierBlock, unsigned long ulNativeEvent, void *pvCpu); 47 48 48 49 49 /******************************************************************************* 50 * Global Variables *51 ******************************************************************************* /50 /********************************************************************************************************************************* 51 * Global Variables * 52 *********************************************************************************************************************************/ 52 53 /** 53 54 * The notifier block we use for registering the callback. -
trunk/src/VBox/Runtime/r0drv/linux/process-r0drv-linux.c
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-linux-kernel.h" 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/linux/semevent-r0drv-linux.c
r57276 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #define RTSEMEVENT_WITHOUT_REMAPPING 32 32 #include "the-linux-kernel.h" … … 44 44 45 45 46 /******************************************************************************* 47 * Structures and Typedefs *48 ******************************************************************************* /46 /********************************************************************************************************************************* 47 * Structures and Typedefs * 48 *********************************************************************************************************************************/ 49 49 /** 50 50 * Linux event semaphore. -
trunk/src/VBox/Runtime/r0drv/linux/semeventmulti-r0drv-linux.c
r57276 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #define RTSEMEVENTMULTI_WITHOUT_REMAPPING 32 32 #include "the-linux-kernel.h" … … 44 44 45 45 46 /******************************************************************************* 47 * Defined Constants And Macros *48 ******************************************************************************* /46 /********************************************************************************************************************************* 47 * Defined Constants And Macros * 48 *********************************************************************************************************************************/ 49 49 /** @name fStateAndGen values 50 50 * @{ */ … … 62 62 63 63 64 /******************************************************************************* 65 * Structures and Typedefs *66 ******************************************************************************* /64 /********************************************************************************************************************************* 65 * Structures and Typedefs * 66 *********************************************************************************************************************************/ 67 67 /** 68 68 * Linux event semaphore. -
trunk/src/VBox/Runtime/r0drv/linux/semfastmutex-r0drv-linux.c
r57276 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-linux-kernel.h" 32 32 #include "internal/iprt.h" … … 43 43 44 44 45 /******************************************************************************* 46 * Structures and Typedefs *47 ******************************************************************************* /45 /********************************************************************************************************************************* 46 * Structures and Typedefs * 47 *********************************************************************************************************************************/ 48 48 /** 49 49 * Wrapper for the linux semaphore structure. -
trunk/src/VBox/Runtime/r0drv/linux/semmutex-r0drv-linux.c
r57281 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #define RTSEMMUTEX_WITHOUT_REMAPPING 32 32 #include "the-linux-kernel.h" … … 43 43 44 44 45 /******************************************************************************* 46 * Structures and Typedefs *47 ******************************************************************************* /45 /********************************************************************************************************************************* 46 * Structures and Typedefs * 47 *********************************************************************************************************************************/ 48 48 typedef struct RTSEMMUTEXLNXWAITER 49 49 { -
trunk/src/VBox/Runtime/r0drv/linux/spinlock-r0drv-linux.c
r57330 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-linux-kernel.h" 32 32 #include "internal/iprt.h" … … 45 45 46 46 47 /******************************************************************************* 48 * Structures and Typedefs *49 ******************************************************************************* /47 /********************************************************************************************************************************* 48 * Structures and Typedefs * 49 *********************************************************************************************************************************/ 50 50 /** 51 51 * Wrapper for the spinlock_t structure. -
trunk/src/VBox/Runtime/r0drv/linux/thread-r0drv-linux.c
r57276 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-linux-kernel.h" 32 32 #include "internal/iprt.h" … … 42 42 43 43 44 /******************************************************************************* 45 * Global Variables *46 ******************************************************************************* /44 /********************************************************************************************************************************* 45 * Global Variables * 46 *********************************************************************************************************************************/ 47 47 #ifndef CONFIG_PREEMPT 48 48 /** Per-cpu preemption counters. */ -
trunk/src/VBox/Runtime/r0drv/linux/thread2-r0drv-linux.c
r57276 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-linux-kernel.h" 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/linux/threadctxhooks-r0drv-linux.c
r57276 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-linux-kernel.h" 32 32 #include "internal/iprt.h" … … 49 49 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 18) && defined(CONFIG_PREEMPT_NOTIFIERS) 50 50 51 /******************************************************************************* 52 * Structures and Typedefs * 53 *******************************************************************************/ 51 52 /********************************************************************************************************************************* 53 * Structures and Typedefs * 54 *********************************************************************************************************************************/ 54 55 /** 55 56 * The internal hook object for linux. -
trunk/src/VBox/Runtime/r0drv/linux/time-r0drv-linux.c
r57276 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #define LOG_GROUP RTLOGGROUP_TIME 32 32 #include "the-linux-kernel.h" -
trunk/src/VBox/Runtime/r0drv/linux/timer-r0drv-linux.c
r57276 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-linux-kernel.h" 32 32 #include "internal/iprt.h" … … 57 57 58 58 59 /******************************************************************************* 60 * Structures and Typedefs *61 ******************************************************************************* /59 /********************************************************************************************************************************* 60 * Structures and Typedefs * 61 *********************************************************************************************************************************/ 62 62 /** 63 63 * Timer state machine. … … 199 199 200 200 201 /******************************************************************************* 202 * Internal Functions *203 ******************************************************************************* /201 /********************************************************************************************************************************* 202 * Internal Functions * 203 *********************************************************************************************************************************/ 204 204 #ifdef CONFIG_SMP 205 205 static DECLCALLBACK(void) rtTimerLinuxMpEvent(RTMPEVENT enmEvent, RTCPUID idCpu, void *pvUser); -
trunk/src/VBox/Runtime/r0drv/memobj-r0drv.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #define LOG_GROUP RTLOGGROUP_DEFAULT ///@todo RTLOGGROUP_MEM 32 32 #include <iprt/memobj.h> -
trunk/src/VBox/Runtime/r0drv/mpnotification-r0drv.c
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/mp.h> 32 32 #include "internal/iprt.h" … … 45 45 46 46 47 /******************************************************************************* 48 * Structures and Typedefs *49 ******************************************************************************* /47 /********************************************************************************************************************************* 48 * Structures and Typedefs * 49 *********************************************************************************************************************************/ 50 50 /** 51 51 * Notification registration record tracking … … 67 67 68 68 69 /******************************************************************************* 70 * Global Variables *71 ******************************************************************************* /69 /********************************************************************************************************************************* 70 * Global Variables * 71 *********************************************************************************************************************************/ 72 72 /** The spinlock protecting the list. */ 73 73 static RTSPINLOCK volatile g_hRTMpNotifySpinLock = NIL_RTSPINLOCK; -
trunk/src/VBox/Runtime/r0drv/nt/RTTimerGetSystemGranularity-r0drv-nt.cpp
r56290 r57358 25 25 */ 26 26 27 /******************************************************************************* 28 * Header Files * 29 *******************************************************************************/ 27 28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 30 31 #include "the-nt-kernel.h" 31 32 -
trunk/src/VBox/Runtime/r0drv/nt/alloc-r0drv-nt.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-nt-kernel.h" 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/nt/assert-r0drv-nt.cpp
r56290 r57358 25 25 */ 26 26 27 /******************************************************************************* 28 * Header Files * 29 *******************************************************************************/ 27 28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 30 31 #include "the-nt-kernel.h" 31 32 -
trunk/src/VBox/Runtime/r0drv/nt/initterm-r0drv-nt.cpp
r56290 r57358 25 25 */ 26 26 27 /******************************************************************************* 28 * Header Files * 29 *******************************************************************************/ 27 28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 30 31 #include "the-nt-kernel.h" 31 32 #include <iprt/asm-amd64-x86.h> … … 40 41 41 42 42 /******************************************************************************* 43 * Global Variables *44 ******************************************************************************* /43 /********************************************************************************************************************************* 44 * Global Variables * 45 *********************************************************************************************************************************/ 45 46 /** The NT CPU set. 46 47 * KeQueryActiveProcssors() cannot be called at all IRQLs and therefore we'll -
trunk/src/VBox/Runtime/r0drv/nt/memobj-r0drv-nt.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-nt-kernel.h" 32 32 … … 41 41 42 42 43 /******************************************************************************* 44 * Defined Constants And Macros *45 ******************************************************************************* /43 /********************************************************************************************************************************* 44 * Defined Constants And Macros * 45 *********************************************************************************************************************************/ 46 46 /** Maximum number of bytes we try to lock down in one go. 47 47 * This is supposed to have a limit right below 256MB, but this appears … … 56 56 57 57 58 /******************************************************************************* 59 * Structures and Typedefs *60 ******************************************************************************* /58 /********************************************************************************************************************************* 59 * Structures and Typedefs * 60 *********************************************************************************************************************************/ 61 61 /** 62 62 * The NT version of the memory object structure. -
trunk/src/VBox/Runtime/r0drv/nt/memuserkernel-r0drv-nt.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-nt-kernel.h" 32 32 -
trunk/src/VBox/Runtime/r0drv/nt/mp-r0drv-nt.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-nt-kernel.h" 32 32 … … 41 41 42 42 43 /******************************************************************************* 44 * Structures and Typedefs *45 ******************************************************************************* /43 /********************************************************************************************************************************* 44 * Structures and Typedefs * 45 *********************************************************************************************************************************/ 46 46 typedef enum 47 47 { -
trunk/src/VBox/Runtime/r0drv/nt/mpnotification-r0drv-nt.cpp
r56290 r57358 25 25 */ 26 26 27 /******************************************************************************* 28 * Header Files * 29 *******************************************************************************/ 27 28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 30 31 #include "the-nt-kernel.h" 31 32 … … 64 65 65 66 66 /******************************************************************************* 67 * Structures and Typedefs *68 ******************************************************************************* /67 /********************************************************************************************************************************* 68 * Structures and Typedefs * 69 *********************************************************************************************************************************/ 69 70 /** Typedef of KeRegisterProcessorChangeCallback. */ 70 71 typedef PVOID (__stdcall *PFNMYKEREGISTERPROCESSORCHANGECALLBACK)(PPROCESSOR_CALLBACK_FUNCTION, PVOID, ULONG); … … 73 74 74 75 75 /******************************************************************************* 76 * Global Variables *77 ******************************************************************************* /76 /********************************************************************************************************************************* 77 * Global Variables * 78 *********************************************************************************************************************************/ 78 79 /** The pointer to KeRegisterProcessorChangeCallback if found. */ 79 80 static PFNMYKEREGISTERPROCESSORCHANGECALLBACK g_pfnKeRegisterProcessorChangeCallback = NULL; -
trunk/src/VBox/Runtime/r0drv/nt/ntBldSymDb.cpp
r57122 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <Windows.h> 32 32 #include <Dbghelp.h> … … 48 48 49 49 50 /******************************************************************************* 51 * Structures and Typedefs *52 ******************************************************************************* /50 /********************************************************************************************************************************* 51 * Structures and Typedefs * 52 *********************************************************************************************************************************/ 53 53 /** A structure member we're interested in. */ 54 54 typedef struct MYMEMBER … … 109 109 110 110 111 /******************************************************************************* 112 * Global Variables *113 ******************************************************************************* /111 /********************************************************************************************************************************* 112 * Global Variables * 113 *********************************************************************************************************************************/ 114 114 /** Verbosity level (-v, --verbose). */ 115 115 static uint32_t g_iOptVerbose = 1; -
trunk/src/VBox/Runtime/r0drv/nt/process-r0drv-nt.cpp
r56290 r57358 25 25 */ 26 26 27 /******************************************************************************* 28 * Header Files * 29 *******************************************************************************/ 27 28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 30 31 #include "the-nt-kernel.h" 31 32 #include <iprt/process.h> -
trunk/src/VBox/Runtime/r0drv/nt/semevent-r0drv-nt.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #define RTSEMEVENT_WITHOUT_REMAPPING 32 32 #include "the-nt-kernel.h" … … 44 44 45 45 46 /******************************************************************************* 47 * Structures and Typedefs *48 ******************************************************************************* /46 /********************************************************************************************************************************* 47 * Structures and Typedefs * 48 *********************************************************************************************************************************/ 49 49 /** 50 50 * NT event semaphore. -
trunk/src/VBox/Runtime/r0drv/nt/semeventmulti-r0drv-nt.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #define RTSEMEVENTMULTI_WITHOUT_REMAPPING 32 32 #include "the-nt-kernel.h" … … 44 44 45 45 46 /******************************************************************************* 47 * Structures and Typedefs *48 ******************************************************************************* /46 /********************************************************************************************************************************* 47 * Structures and Typedefs * 48 *********************************************************************************************************************************/ 49 49 /** 50 50 * NT event semaphore. -
trunk/src/VBox/Runtime/r0drv/nt/semfastmutex-r0drv-nt.cpp
r56290 r57358 27 27 28 28 29 /******************************************************************************* 30 * Header Files *31 ******************************************************************************* /29 /********************************************************************************************************************************* 30 * Header Files * 31 *********************************************************************************************************************************/ 32 32 #include "the-nt-kernel.h" 33 33 #include <iprt/semaphore.h> … … 40 40 41 41 42 /******************************************************************************* 43 * Structures and Typedefs *44 ******************************************************************************* /42 /********************************************************************************************************************************* 43 * Structures and Typedefs * 44 *********************************************************************************************************************************/ 45 45 /** 46 46 * Wrapper for the linux semaphore structure. -
trunk/src/VBox/Runtime/r0drv/nt/semmutex-r0drv-nt.cpp
r56290 r57358 27 27 28 28 29 /******************************************************************************* 30 * Header Files *31 ******************************************************************************* /29 /********************************************************************************************************************************* 30 * Header Files * 31 *********************************************************************************************************************************/ 32 32 #define RTSEMMUTEX_WITHOUT_REMAPPING 33 33 #include "the-nt-kernel.h" … … 41 41 42 42 43 /******************************************************************************* 44 * Structures and Typedefs *45 ******************************************************************************* /43 /********************************************************************************************************************************* 44 * Structures and Typedefs * 45 *********************************************************************************************************************************/ 46 46 /** 47 47 * NT mutex semaphore. -
trunk/src/VBox/Runtime/r0drv/nt/spinlock-r0drv-nt.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-nt-kernel.h" 32 32 … … 44 44 45 45 46 /******************************************************************************* 47 * Defined Constants And Macros *48 ******************************************************************************* /46 /********************************************************************************************************************************* 47 * Defined Constants And Macros * 48 *********************************************************************************************************************************/ 49 49 /** Apply the NoIrq hack if defined. */ 50 50 #define RTSPINLOCK_NT_HACK_NOIRQ … … 58 58 59 59 60 /******************************************************************************* 61 * Structures and Typedefs *62 ******************************************************************************* /60 /********************************************************************************************************************************* 61 * Structures and Typedefs * 62 *********************************************************************************************************************************/ 63 63 /** 64 64 * Wrapper for the KSPIN_LOCK type. -
trunk/src/VBox/Runtime/r0drv/nt/thread-r0drv-nt.cpp
r56290 r57358 25 25 */ 26 26 27 /******************************************************************************* 28 * Header Files * 29 *******************************************************************************/ 27 28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 30 31 #include "the-nt-kernel.h" 31 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/nt/thread2-r0drv-nt.cpp
r56290 r57358 25 25 */ 26 26 27 /******************************************************************************* 28 * Header Files * 29 *******************************************************************************/ 27 28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 30 31 #include "the-nt-kernel.h" 31 32 -
trunk/src/VBox/Runtime/r0drv/nt/time-r0drv-nt.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #define LOG_GROUP RTLOGGROUP_TIME 32 32 #include "the-nt-kernel.h" -
trunk/src/VBox/Runtime/r0drv/nt/timer-r0drv-nt.cpp
r56753 r57358 25 25 */ 26 26 27 /******************************************************************************* 28 * Header Files * 29 *******************************************************************************/ 27 28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 30 31 #include "the-nt-kernel.h" 31 32 … … 46 47 47 48 48 /******************************************************************************* 49 * Structures and Typedefs *50 ******************************************************************************* /49 /********************************************************************************************************************************* 50 * Structures and Typedefs * 51 *********************************************************************************************************************************/ 51 52 /** 52 53 * A sub timer structure. -
trunk/src/VBox/Runtime/r0drv/os2/alloc-r0drv-os2.cpp
r48935 r57358 30 30 31 31 32 /******************************************************************************* 33 * Header Files *34 ******************************************************************************* /32 /********************************************************************************************************************************* 33 * Header Files * 34 *********************************************************************************************************************************/ 35 35 #include "the-os2-kernel.h" 36 36 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/os2/assert-r0drv-os2.cpp
r48935 r57358 30 30 31 31 32 /******************************************************************************* 33 * Header Files *34 ******************************************************************************* /32 /********************************************************************************************************************************* 33 * Header Files * 34 *********************************************************************************************************************************/ 35 35 #include <iprt/assert.h> 36 36 #include <iprt/log.h> … … 43 43 44 44 45 /******************************************************************************* 46 * Global Variables *47 ******************************************************************************* /45 /********************************************************************************************************************************* 46 * Global Variables * 47 *********************************************************************************************************************************/ 48 48 /** The last assert message. (in DATA16) */ 49 49 extern char g_szRTAssertMsg[2048]; … … 52 52 53 53 54 /******************************************************************************* 55 * Internal Functions *56 ******************************************************************************* /54 /********************************************************************************************************************************* 55 * Internal Functions * 56 *********************************************************************************************************************************/ 57 57 static DECLCALLBACK(size_t) rtR0Os2AssertOutputCB(void *pvArg, const char *pachChars, size_t cbChars); 58 58 -
trunk/src/VBox/Runtime/r0drv/os2/initterm-r0drv-os2.cpp
r48935 r57358 31 31 #define RT_STRICT 32 32 33 /******************************************************************************* 34 * Header Files * 35 *******************************************************************************/ 33 34 /********************************************************************************************************************************* 35 * Header Files * 36 *********************************************************************************************************************************/ 36 37 #include "the-os2-kernel.h" 37 38 … … 41 42 42 43 43 /******************************************************************************* 44 * Global Variables *45 ******************************************************************************* /44 /********************************************************************************************************************************* 45 * Global Variables * 46 *********************************************************************************************************************************/ 46 47 /** Pointer to the 1st DOS variable table. */ 47 48 PCDOSTABLE g_pDosTable = NULL; -
trunk/src/VBox/Runtime/r0drv/os2/memobj-r0drv-os2.cpp
r48935 r57358 30 30 31 31 32 /******************************************************************************* 33 * Header Files *34 ******************************************************************************* /32 /********************************************************************************************************************************* 33 * Header Files * 34 *********************************************************************************************************************************/ 35 35 #include "the-os2-kernel.h" 36 36 … … 45 45 46 46 47 /******************************************************************************* 48 * Structures and Typedefs *49 ******************************************************************************* /47 /********************************************************************************************************************************* 48 * Structures and Typedefs * 49 *********************************************************************************************************************************/ 50 50 /** 51 51 * The OS/2 version of the memory object structure. … … 64 64 65 65 66 /******************************************************************************* 67 * Internal Functions *68 ******************************************************************************* /66 /********************************************************************************************************************************* 67 * Internal Functions * 68 *********************************************************************************************************************************/ 69 69 static void rtR0MemObjFixPageList(KernPageList_t *paPages, ULONG cPages, ULONG cPagesRet); 70 70 -
trunk/src/VBox/Runtime/r0drv/os2/memuserkernel-r0drv-os2.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-os2-kernel.h" 32 32 -
trunk/src/VBox/Runtime/r0drv/os2/process-r0drv-os2.cpp
r48935 r57358 30 30 31 31 32 /******************************************************************************* 33 * Header Files *34 ******************************************************************************* /32 /********************************************************************************************************************************* 33 * Header Files * 34 *********************************************************************************************************************************/ 35 35 #include "the-os2-kernel.h" 36 36 -
trunk/src/VBox/Runtime/r0drv/os2/semevent-r0drv-os2.cpp
r48935 r57358 30 30 31 31 32 /******************************************************************************* 33 * Header Files *34 ******************************************************************************* /32 /********************************************************************************************************************************* 33 * Header Files * 34 *********************************************************************************************************************************/ 35 35 #include "the-os2-kernel.h" 36 36 #include "internal/iprt.h" … … 46 46 47 47 48 /******************************************************************************* 49 * Structures and Typedefs *50 ******************************************************************************* /48 /********************************************************************************************************************************* 49 * Structures and Typedefs * 50 *********************************************************************************************************************************/ 51 51 /** 52 52 * OS/2 event semaphore. -
trunk/src/VBox/Runtime/r0drv/os2/semeventmulti-r0drv-os2.cpp
r48935 r57358 30 30 31 31 32 /******************************************************************************* 33 * Header Files *34 ******************************************************************************* /32 /********************************************************************************************************************************* 33 * Header Files * 34 *********************************************************************************************************************************/ 35 35 #include "the-os2-kernel.h" 36 36 #include "internal/iprt.h" … … 45 45 46 46 47 /******************************************************************************* 48 * Structures and Typedefs *49 ******************************************************************************* /47 /********************************************************************************************************************************* 48 * Structures and Typedefs * 49 *********************************************************************************************************************************/ 50 50 /** 51 51 * OS/2 multiple release event semaphore. -
trunk/src/VBox/Runtime/r0drv/os2/semfastmutex-r0drv-os2.cpp
r48935 r57358 29 29 */ 30 30 31 /******************************************************************************* 32 * Header Files * 33 *******************************************************************************/ 31 32 /********************************************************************************************************************************* 33 * Header Files * 34 *********************************************************************************************************************************/ 34 35 #include "the-os2-kernel.h" 35 36 … … 43 44 44 45 45 /******************************************************************************* 46 * Structures and Typedefs *47 ******************************************************************************* /46 /********************************************************************************************************************************* 47 * Structures and Typedefs * 48 *********************************************************************************************************************************/ 48 49 /** 49 50 * Wrapper for the OS/2 KEE mutex semaphore. -
trunk/src/VBox/Runtime/r0drv/os2/spinlock-r0drv-os2.cpp
r52618 r57358 29 29 */ 30 30 31 /******************************************************************************* 32 * Header Files * 33 *******************************************************************************/ 31 32 /********************************************************************************************************************************* 33 * Header Files * 34 *********************************************************************************************************************************/ 34 35 #include "the-os2-kernel.h" 35 36 … … 46 47 47 48 48 /******************************************************************************* 49 * Structures and Typedefs *50 ******************************************************************************* /49 /********************************************************************************************************************************* 50 * Structures and Typedefs * 51 *********************************************************************************************************************************/ 51 52 /** 52 53 * Wrapper for the SpinLock_t type. -
trunk/src/VBox/Runtime/r0drv/os2/thread-r0drv-os2.cpp
r48935 r57358 29 29 */ 30 30 31 /******************************************************************************* 32 * Header Files * 33 *******************************************************************************/ 31 32 /********************************************************************************************************************************* 33 * Header Files * 34 *********************************************************************************************************************************/ 34 35 #include "the-os2-kernel.h" 35 36 #include "internal/iprt.h" … … 44 45 45 46 46 /******************************************************************************* 47 * Global Variables *48 ******************************************************************************* /47 /********************************************************************************************************************************* 48 * Global Variables * 49 *********************************************************************************************************************************/ 49 50 /** Per-cpu preemption counters. */ 50 51 static int32_t volatile g_acPreemptDisabled[256]; -
trunk/src/VBox/Runtime/r0drv/os2/thread2-r0drv-os2.cpp
r54358 r57358 29 29 */ 30 30 31 /******************************************************************************* 32 * Header Files * 33 *******************************************************************************/ 31 32 /********************************************************************************************************************************* 33 * Header Files * 34 *********************************************************************************************************************************/ 34 35 #include "the-os2-kernel.h" 35 36 -
trunk/src/VBox/Runtime/r0drv/os2/time-r0drv-os2.cpp
r48935 r57358 30 30 31 31 32 /******************************************************************************* 33 * Header Files *34 ******************************************************************************* /32 /********************************************************************************************************************************* 33 * Header Files * 34 *********************************************************************************************************************************/ 35 35 #include "the-os2-kernel.h" 36 36 -
trunk/src/VBox/Runtime/r0drv/os2/timer-r0drv-os2.cpp
r52618 r57358 30 30 31 31 32 /******************************************************************************* 33 * Header Files *34 ******************************************************************************* /32 /********************************************************************************************************************************* 33 * Header Files * 34 *********************************************************************************************************************************/ 35 35 #include "the-os2-kernel.h" 36 36 … … 46 46 47 47 48 /******************************************************************************* 49 * Structures and Typedefs *50 ******************************************************************************* /48 /********************************************************************************************************************************* 49 * Structures and Typedefs * 50 *********************************************************************************************************************************/ 51 51 /** 52 52 * The internal representation of an OS/2 timer handle. … … 82 82 83 83 84 /******************************************************************************* 85 * Global Variables *86 ******************************************************************************* /84 /********************************************************************************************************************************* 85 * Global Variables * 86 *********************************************************************************************************************************/ 87 87 /** Spinlock protecting the timers. */ 88 88 static RTSPINLOCK g_Spinlock = NIL_RTSPINLOCK; … … 98 98 99 99 100 /******************************************************************************* 101 * Internal Functions *102 ******************************************************************************* /100 /********************************************************************************************************************************* 101 * Internal Functions * 102 *********************************************************************************************************************************/ 103 103 RT_C_DECLS_BEGIN 104 104 DECLASM(void) rtTimerOs2Tick(void); -
trunk/src/VBox/Runtime/r0drv/powernotification-r0drv.c
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/power.h> 32 32 #include "internal/iprt.h" … … 46 46 47 47 48 /******************************************************************************* 49 * Structures and Typedefs *50 ******************************************************************************* /48 /********************************************************************************************************************************* 49 * Structures and Typedefs * 50 *********************************************************************************************************************************/ 51 51 /** 52 52 * Notification registration record tracking … … 68 68 69 69 70 /******************************************************************************* 71 * Global Variables *72 ******************************************************************************* /70 /********************************************************************************************************************************* 71 * Global Variables * 72 *********************************************************************************************************************************/ 73 73 /** The spinlock protecting the list. */ 74 74 static RTSPINLOCK volatile g_hRTPowerNotifySpinLock = NIL_RTSPINLOCK; -
trunk/src/VBox/Runtime/r0drv/solaris/RTLogWriteDebugger-r0drv-solaris.c
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-solaris-kernel.h" 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/solaris/RTMpPokeCpu-r0drv-solaris.c
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-solaris-kernel.h" 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/solaris/alloc-r0drv-solaris.c
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-solaris-kernel.h" 32 32 #include "internal/iprt.h" … … 41 41 42 42 43 /******************************************************************************* 44 * Structures and Typedefs *45 ******************************************************************************* /43 /********************************************************************************************************************************* 44 * Structures and Typedefs * 45 *********************************************************************************************************************************/ 46 46 static ddi_dma_attr_t s_rtR0SolDmaAttr = 47 47 { -
trunk/src/VBox/Runtime/r0drv/solaris/assert-r0drv-solaris.c
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-solaris-kernel.h" 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/solaris/dbgkrnlinfo-r0drv-solaris.c
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-solaris-kernel.h" 32 32 #include "internal/iprt.h" … … 44 44 45 45 46 /******************************************************************************* 47 * Structures and Typedefs *48 ******************************************************************************* /46 /********************************************************************************************************************************* 47 * Structures and Typedefs * 48 *********************************************************************************************************************************/ 49 49 /** 50 50 * Solaris kernel debug info instance data. -
trunk/src/VBox/Runtime/r0drv/solaris/initterm-r0drv-solaris.c
r54643 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-solaris-kernel.h" 32 32 #include "internal/iprt.h" … … 40 40 41 41 42 /******************************************************************************* 43 * Global Variables *44 ******************************************************************************* /42 /********************************************************************************************************************************* 43 * Global Variables * 44 *********************************************************************************************************************************/ 45 45 /** Kernel debug info handle. */ 46 46 RTDBGKRNLINFO g_hKrnlDbgInfo; -
trunk/src/VBox/Runtime/r0drv/solaris/memobj-r0drv-solaris.c
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-solaris-kernel.h" 32 32 #include "internal/iprt.h" … … 43 43 #include "memobj-r0drv-solaris.h" 44 44 45 /******************************************************************************* 46 * Defined Constants And Macros * 47 *******************************************************************************/ 45 46 /********************************************************************************************************************************* 47 * Defined Constants And Macros * 48 *********************************************************************************************************************************/ 48 49 #define SOL_IS_KRNL_ADDR(vx) ((uintptr_t)(vx) >= kernelbase) 49 50 50 51 51 /******************************************************************************* 52 * Structures and Typedefs *53 ******************************************************************************* /52 /********************************************************************************************************************************* 53 * Structures and Typedefs * 54 *********************************************************************************************************************************/ 54 55 /** 55 56 * The Solaris version of the memory object structure. … … 74 75 75 76 76 /******************************************************************************* 77 * Global Variables *78 ******************************************************************************* /77 /********************************************************************************************************************************* 78 * Global Variables * 79 *********************************************************************************************************************************/ 79 80 static vnode_t g_PageVnode; 80 81 static kmutex_t g_OffsetMtx; -
trunk/src/VBox/Runtime/r0drv/solaris/memuserkernel-r0drv-solaris.c
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-solaris-kernel.h" 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/solaris/modulestub-r0drv-solaris.c
r55401 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <sys/modctl.h> 32 32 33 33 34 /******************************************************************************* 35 * Global Variables *36 ******************************************************************************* /34 /********************************************************************************************************************************* 35 * Global Variables * 36 *********************************************************************************************************************************/ 37 37 static struct modlmisc g_rtModuleStubMisc = 38 38 { -
trunk/src/VBox/Runtime/r0drv/solaris/mp-r0drv-solaris.c
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-solaris-kernel.h" 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/solaris/mpnotification-r0drv-solaris.c
r54395 r57358 25 25 */ 26 26 27 /******************************************************************************* 28 * Header Files * 29 *******************************************************************************/ 27 28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 30 31 #include "the-solaris-kernel.h" 31 32 #include "internal/iprt.h" … … 39 40 40 41 41 /******************************************************************************* 42 * Global Variables *43 ******************************************************************************* /42 /********************************************************************************************************************************* 43 * Global Variables * 44 *********************************************************************************************************************************/ 44 45 /** Whether CPUs are being watched or not. */ 45 46 static volatile bool g_fSolCpuWatch = false; -
trunk/src/VBox/Runtime/r0drv/solaris/process-r0drv-solaris.c
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-solaris-kernel.h" 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/solaris/semevent-r0drv-solaris.c
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #define RTSEMEVENT_WITHOUT_REMAPPING 32 32 #include "the-solaris-kernel.h" … … 49 49 50 50 51 /******************************************************************************* 52 * Structures and Typedefs *53 ******************************************************************************* /51 /********************************************************************************************************************************* 52 * Structures and Typedefs * 53 *********************************************************************************************************************************/ 54 54 /** 55 55 * Waiter entry. Lives on the stack. -
trunk/src/VBox/Runtime/r0drv/solaris/semeventmulti-r0drv-solaris.c
r57237 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #define RTSEMEVENTMULTI_WITHOUT_REMAPPING 32 32 #include "the-solaris-kernel.h" … … 49 49 50 50 51 /******************************************************************************* 52 * Defined Constants And Macros *53 ******************************************************************************* /51 /********************************************************************************************************************************* 52 * Defined Constants And Macros * 53 *********************************************************************************************************************************/ 54 54 /** @name fStateAndGen values 55 55 * @{ */ … … 67 67 68 68 69 /******************************************************************************* 70 * Structures and Typedefs *71 ******************************************************************************* /69 /********************************************************************************************************************************* 70 * Structures and Typedefs * 71 *********************************************************************************************************************************/ 72 72 /** 73 73 * Solaris multiple release event semaphore. -
trunk/src/VBox/Runtime/r0drv/solaris/semfastmutex-r0drv-solaris.c
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-solaris-kernel.h" 32 32 #include "internal/iprt.h" … … 44 44 45 45 46 /******************************************************************************* 47 * Structures and Typedefs *48 ******************************************************************************* /46 /********************************************************************************************************************************* 47 * Structures and Typedefs * 48 *********************************************************************************************************************************/ 49 49 /** 50 50 * Wrapper for the Solaris mutex. -
trunk/src/VBox/Runtime/r0drv/solaris/semmutex-r0drv-solaris.c
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #define RTSEMMUTEX_WITHOUT_REMAPPING 32 32 #include "the-solaris-kernel.h" … … 47 47 48 48 49 /******************************************************************************* 50 * Structures and Typedefs *51 ******************************************************************************* /49 /********************************************************************************************************************************* 50 * Structures and Typedefs * 51 *********************************************************************************************************************************/ 52 52 /** 53 53 * Wrapper for the solaris semaphore structure. -
trunk/src/VBox/Runtime/r0drv/solaris/spinlock-r0drv-solaris.c
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-solaris-kernel.h" 32 32 #include "internal/iprt.h" … … 45 45 46 46 47 /******************************************************************************* 48 * Structures and Typedefs *49 ******************************************************************************* /47 /********************************************************************************************************************************* 48 * Structures and Typedefs * 49 *********************************************************************************************************************************/ 50 50 /** 51 51 * Wrapper for the struct mutex type. -
trunk/src/VBox/Runtime/r0drv/solaris/thread-r0drv-solaris.c
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-solaris-kernel.h" 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/solaris/thread2-r0drv-solaris.c
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-solaris-kernel.h" 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/solaris/threadctxhooks-r0drv-solaris.c
r56951 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-solaris-kernel.h" 32 32 #include "internal/iprt.h" … … 41 41 42 42 43 /******************************************************************************* 44 * Structures and Typedefs *45 ******************************************************************************* /43 /********************************************************************************************************************************* 44 * Structures and Typedefs * 45 *********************************************************************************************************************************/ 46 46 /** 47 47 * The internal hook object for solaris. … … 65 65 66 66 67 /******************************************************************************* 68 * Defined Constants And Macros *69 ******************************************************************************* /67 /********************************************************************************************************************************* 68 * Defined Constants And Macros * 69 *********************************************************************************************************************************/ 70 70 /** Validates a hook handle and returns rc if not valid. */ 71 71 #define RTTHREADCTX_VALID_RETURN_RC(pThis, rc) \ -
trunk/src/VBox/Runtime/r0drv/solaris/time-r0drv-solaris.c
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #define RTTIME_INCL_TIMESPEC 32 32 #include "the-solaris-kernel.h" -
trunk/src/VBox/Runtime/r0drv/solaris/timer-r0drv-solaris.c
r57237 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "the-solaris-kernel.h" 32 32 #include "internal/iprt.h" … … 47 47 48 48 49 /******************************************************************************* 50 * Structures and Typedefs *51 ******************************************************************************* /49 /********************************************************************************************************************************* 50 * Structures and Typedefs * 51 *********************************************************************************************************************************/ 52 52 /** 53 53 * The internal representation of a Solaris timer handle. … … 121 121 122 122 123 /******************************************************************************* 124 * Defined Constants And Macros *125 ******************************************************************************* /123 /********************************************************************************************************************************* 124 * Defined Constants And Macros * 125 *********************************************************************************************************************************/ 126 126 /** Validates that the timer is valid. */ 127 127 #define RTTIMER_ASSERT_VALID_RET(pTimer) \ … … 134 134 135 135 136 /******************************************************************************* 137 * Internal Functions *138 ******************************************************************************* /136 /********************************************************************************************************************************* 137 * Internal Functions * 138 *********************************************************************************************************************************/ 139 139 static void rtTimerSolSingleCallbackWrapper(void *pvArg); 140 140 static void rtTimerSolStopIt(PRTTIMER pTimer);
Note:
See TracChangeset
for help on using the changeset viewer.