Changeset 20364 in vbox for trunk/src/VBox/Runtime/r0drv
- Timestamp:
- Jun 8, 2009 12:17:43 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
r8245 r20364 36 36 #include "internal/magics.h" 37 37 38 __BEGIN_DECLS38 RT_BEGIN_DECLS 39 39 40 40 /** … … 68 68 void rtMemFree(PRTMEMHDR pHdr); 69 69 70 __END_DECLS70 RT_END_DECLS 71 71 #endif 72 72 -
trunk/src/VBox/Runtime/r0drv/darwin/the-darwin-kernel.h
r19919 r20364 87 87 88 88 89 __BEGIN_DECLS89 RT_BEGIN_DECLS 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 __END_DECLS122 RT_END_DECLS 123 123 124 124 … … 127 127 */ 128 128 129 __BEGIN_DECLS129 RT_BEGIN_DECLS 130 130 extern lck_grp_t *g_pDarwinLockGroup; 131 131 int rtThreadPreemptDarwinInit(void); 132 132 void rtThreadPreemptDarwinTerm(void); 133 __END_DECLS133 RT_END_DECLS 134 134 135 135 -
trunk/src/VBox/Runtime/r0drv/linux/string.h
r8245 r20364 34 34 #include <iprt/cdefs.h> 35 35 36 __BEGIN_DECLS36 RT_BEGIN_DECLS 37 37 #ifndef bool /* Linux 2.6.19 C++ nightmare */ 38 38 #define bool bool_type … … 56 56 ; 57 57 58 __END_DECLS58 RT_END_DECLS 59 59 60 60 #endif -
trunk/src/VBox/Runtime/r0drv/mp-r0drv.h
r9602 r20364 34 34 #include <iprt/mp.h> 35 35 36 __BEGIN_DECLS36 RT_BEGIN_DECLS 37 37 38 38 /** … … 71 71 void rtMpNotificationDoCallbacks(RTMPEVENT enmEvent, RTCPUID idCpu); 72 72 73 __END_DECLS73 RT_END_DECLS 74 74 75 75 #endif -
trunk/src/VBox/Runtime/r0drv/nt/internal-r0drv-nt.h
r19969 r20364 34 34 #include <iprt/cpuset.h> 35 35 36 __BEGIN_DECLS36 RT_BEGIN_DECLS 37 37 38 38 /******************************************************************************* … … 54 54 55 55 56 __END_DECLS56 RT_END_DECLS 57 57 58 58 #endif -
trunk/src/VBox/Runtime/r0drv/nt/the-nt-kernel.h
r18496 r20364 41 41 # define _InterlockedAddLargeStatistic _InterlockedAddLargeStatistic_StupidDDKVsCompilerCrap 42 42 # pragma warning(disable : 4163) 43 __BEGIN_DECLS43 RT_BEGIN_DECLS 44 44 # include <ntddk.h> 45 __END_DECLS45 RT_END_DECLS 46 46 # pragma warning(default : 4163) 47 47 # undef _InterlockedExchange … … 50 50 # undef _InterlockedAddLargeStatistic 51 51 #else 52 __BEGIN_DECLS52 RT_BEGIN_DECLS 53 53 # include <ntddk.h> 54 __END_DECLS54 RT_END_DECLS 55 55 #endif 56 56 -
trunk/src/VBox/Runtime/r0drv/nt/thread-r0drv-nt.cpp
r20130 r20364 41 41 #include "internal-r0drv-nt.h" 42 42 43 __BEGIN_DECLS43 RT_BEGIN_DECLS 44 44 NTSTATUS NTAPI ZwYieldExecution(void); 45 __END_DECLS45 RT_END_DECLS 46 46 47 47 -
trunk/src/VBox/Runtime/r0drv/os2/the-os2-kernel.h
r8245 r20364 40 40 #include <os2ddk/devhlp.h> 41 41 42 __BEGIN_DECLS42 RT_BEGIN_DECLS 43 43 44 44 extern PCDOSTABLE g_pDosTable; … … 51 51 DECLASM(int) RTR0Os2DHVMGlobalToProcess(ULONG fFlags, PVOID pvR0, ULONG cb, PPVOID ppvR3); 52 52 53 __END_DECLS53 RT_END_DECLS 54 54 55 55 #endif -
trunk/src/VBox/Runtime/r0drv/os2/timer-r0drv-os2.cpp
r14298 r20364 101 101 * Internal Functions * 102 102 *******************************************************************************/ 103 __BEGIN_DECLS103 RT_BEGIN_DECLS 104 104 DECLASM(void) rtTimerOs2Tick(void); 105 105 DECLASM(int) rtTimerOs2Arm(void); 106 106 DECLASM(int) rtTimerOs2Dearm(void); 107 __END_DECLS107 RT_END_DECLS 108 108 109 109 -
trunk/src/VBox/Runtime/r0drv/power-r0drv.h
r13478 r20364 34 34 #include <iprt/power.h> 35 35 36 __BEGIN_DECLS36 RT_BEGIN_DECLS 37 37 38 38 /* Called from initterm-r0drv.cpp: */ … … 40 40 void rtR0PowerNotificationTerm(void); 41 41 42 __END_DECLS42 RT_END_DECLS 43 43 44 44 #endif -
trunk/src/VBox/Runtime/r0drv/solaris/the-solaris-kernel.h
r8245 r20364 61 61 #include <iprt/cdefs.h> 62 62 63 __BEGIN_DECLS63 RT_BEGIN_DECLS 64 64 extern struct ddi_dma_attr g_SolarisX86PhysMemLimits; 65 __END_DECLS65 RT_END_DECLS 66 66 67 67 #endif
Note:
See TracChangeset
for help on using the changeset viewer.