Changeset 20374 in vbox for trunk/src/VBox/Runtime/r0drv
- Timestamp:
- Jun 8, 2009 12:43:21 AM (16 years ago)
- Location:
- trunk/src/VBox/Runtime/r0drv
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/alloc-r0drv.h
r20364 r20374 36 36 #include "internal/magics.h" 37 37 38 RT_ BEGIN_DECLS38 RT_C_DECLS_BEGIN 39 39 40 40 /** … … 68 68 void rtMemFree(PRTMEMHDR pHdr); 69 69 70 RT_ END_DECLS70 RT_C_DECLS_END 71 71 #endif 72 72 -
trunk/src/VBox/Runtime/r0drv/darwin/the-darwin-kernel.h
r20364 r20374 87 87 88 88 89 RT_ BEGIN_DECLS89 RT_C_DECLS_BEGIN 90 90 /* mach/vm_types.h */ 91 91 typedef struct pmap *pmap_t; … … 120 120 extern int ml_get_max_cpus(void); 121 121 122 RT_ END_DECLS122 RT_C_DECLS_END 123 123 124 124 … … 127 127 */ 128 128 129 RT_ BEGIN_DECLS129 RT_C_DECLS_BEGIN 130 130 extern lck_grp_t *g_pDarwinLockGroup; 131 131 int rtThreadPreemptDarwinInit(void); 132 132 void rtThreadPreemptDarwinTerm(void); 133 RT_ END_DECLS133 RT_C_DECLS_END 134 134 135 135 -
trunk/src/VBox/Runtime/r0drv/linux/string.h
r20364 r20374 34 34 #include <iprt/cdefs.h> 35 35 36 RT_ BEGIN_DECLS36 RT_C_DECLS_BEGIN 37 37 #ifndef bool /* Linux 2.6.19 C++ nightmare */ 38 38 #define bool bool_type … … 56 56 ; 57 57 58 RT_ END_DECLS58 RT_C_DECLS_END 59 59 60 60 #endif -
trunk/src/VBox/Runtime/r0drv/mp-r0drv.h
r20364 r20374 34 34 #include <iprt/mp.h> 35 35 36 RT_ BEGIN_DECLS36 RT_C_DECLS_BEGIN 37 37 38 38 /** … … 71 71 void rtMpNotificationDoCallbacks(RTMPEVENT enmEvent, RTCPUID idCpu); 72 72 73 RT_ END_DECLS73 RT_C_DECLS_END 74 74 75 75 #endif -
trunk/src/VBox/Runtime/r0drv/nt/internal-r0drv-nt.h
r20364 r20374 34 34 #include <iprt/cpuset.h> 35 35 36 RT_ BEGIN_DECLS36 RT_C_DECLS_BEGIN 37 37 38 38 /******************************************************************************* … … 54 54 55 55 56 RT_ END_DECLS56 RT_C_DECLS_END 57 57 58 58 #endif -
trunk/src/VBox/Runtime/r0drv/nt/the-nt-kernel.h
r20364 r20374 41 41 # define _InterlockedAddLargeStatistic _InterlockedAddLargeStatistic_StupidDDKVsCompilerCrap 42 42 # pragma warning(disable : 4163) 43 RT_ BEGIN_DECLS43 RT_C_DECLS_BEGIN 44 44 # include <ntddk.h> 45 RT_ END_DECLS45 RT_C_DECLS_END 46 46 # pragma warning(default : 4163) 47 47 # undef _InterlockedExchange … … 50 50 # undef _InterlockedAddLargeStatistic 51 51 #else 52 RT_ BEGIN_DECLS52 RT_C_DECLS_BEGIN 53 53 # include <ntddk.h> 54 RT_ END_DECLS54 RT_C_DECLS_END 55 55 #endif 56 56 -
trunk/src/VBox/Runtime/r0drv/nt/thread-r0drv-nt.cpp
r20364 r20374 41 41 #include "internal-r0drv-nt.h" 42 42 43 RT_ BEGIN_DECLS43 RT_C_DECLS_BEGIN 44 44 NTSTATUS NTAPI ZwYieldExecution(void); 45 RT_ END_DECLS45 RT_C_DECLS_END 46 46 47 47 -
trunk/src/VBox/Runtime/r0drv/os2/the-os2-kernel.h
r20364 r20374 40 40 #include <os2ddk/devhlp.h> 41 41 42 RT_ BEGIN_DECLS42 RT_C_DECLS_BEGIN 43 43 44 44 extern PCDOSTABLE g_pDosTable; … … 51 51 DECLASM(int) RTR0Os2DHVMGlobalToProcess(ULONG fFlags, PVOID pvR0, ULONG cb, PPVOID ppvR3); 52 52 53 RT_ END_DECLS53 RT_C_DECLS_END 54 54 55 55 #endif -
trunk/src/VBox/Runtime/r0drv/os2/timer-r0drv-os2.cpp
r20364 r20374 101 101 * Internal Functions * 102 102 *******************************************************************************/ 103 RT_ BEGIN_DECLS103 RT_C_DECLS_BEGIN 104 104 DECLASM(void) rtTimerOs2Tick(void); 105 105 DECLASM(int) rtTimerOs2Arm(void); 106 106 DECLASM(int) rtTimerOs2Dearm(void); 107 RT_ END_DECLS107 RT_C_DECLS_END 108 108 109 109 -
trunk/src/VBox/Runtime/r0drv/power-r0drv.h
r20364 r20374 34 34 #include <iprt/power.h> 35 35 36 RT_ BEGIN_DECLS36 RT_C_DECLS_BEGIN 37 37 38 38 /* Called from initterm-r0drv.cpp: */ … … 40 40 void rtR0PowerNotificationTerm(void); 41 41 42 RT_ END_DECLS42 RT_C_DECLS_END 43 43 44 44 #endif -
trunk/src/VBox/Runtime/r0drv/solaris/the-solaris-kernel.h
r20364 r20374 61 61 #include <iprt/cdefs.h> 62 62 63 RT_ BEGIN_DECLS63 RT_C_DECLS_BEGIN 64 64 extern struct ddi_dma_attr g_SolarisX86PhysMemLimits; 65 RT_ END_DECLS65 RT_C_DECLS_END 66 66 67 67 #endif
Note:
See TracChangeset
for help on using the changeset viewer.