Changeset 20374 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Jun 8, 2009 12:43:21 AM (16 years ago)
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 31 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/Doxyfile
r20364 r20374 1163 1163 1164 1164 PREDEFINED = DOXYGEN_RUNNING __DOXYGEN__ \ 1165 RT_ END_DECLS= \1166 RT_ BEGIN_DECLS= \1165 RT_C_DECLS_END= \ 1166 RT_C_DECLS_BEGIN= \ 1167 1167 VBOX=1 \ 1168 1168 RT_STRICT=1 \ -
trunk/src/VBox/Runtime/common/math/gcc/quad.h
r20364 r20374 136 136 #endif 137 137 138 RT_ BEGIN_DECLS138 RT_C_DECLS_BEGIN 139 139 quad_t __adddi3 __P((quad_t, quad_t)); 140 140 quad_t __anddi3 __P((quad_t, quad_t)); … … 163 163 u_quad_t __umoddi3 __P((u_quad_t, u_quad_t )); 164 164 quad_t __xordi3 __P((quad_t, quad_t)); 165 RT_ END_DECLS165 RT_C_DECLS_END -
trunk/src/VBox/Runtime/generic/env-generic.cpp
r20364 r20374 49 49 #endif 50 50 #if defined(RT_OS_SOLARIS) || defined(RT_OS_FREEBSD) || defined(RT_OS_NETBSD) || defined(RT_OS_OPENBSD) 51 RT_ BEGIN_DECLS51 RT_C_DECLS_BEGIN 52 52 extern char **environ; 53 RT_ END_DECLS53 RT_C_DECLS_END 54 54 #endif 55 55 -
trunk/src/VBox/Runtime/include/internal/dbgmod.h
r20364 r20374 27 27 #include "internal/magics.h" 28 28 29 RT_ BEGIN_DECLS29 RT_C_DECLS_BEGIN 30 30 31 31 /** @defgroup grp_rt_dbgmod RTDbgMod - Debug Module Interperter … … 248 248 /** @} */ 249 249 250 RT_ END_DECLS250 RT_C_DECLS_END 251 251 252 252 #endif -
trunk/src/VBox/Runtime/include/internal/file.h
r20364 r20374 34 34 #include <iprt/file.h> 35 35 36 RT_ BEGIN_DECLS36 RT_C_DECLS_BEGIN 37 37 38 38 /** … … 48 48 int rtFileRecalcAndValidateFlags(unsigned *pfOpen); 49 49 50 RT_ END_DECLS50 RT_C_DECLS_END 51 51 52 52 #endif -
trunk/src/VBox/Runtime/include/internal/fileaio.h
r20364 r20374 109 109 110 110 111 RT_ BEGIN_DECLS111 RT_C_DECLS_BEGIN 112 112 113 RT_ END_DECLS113 RT_C_DECLS_END 114 114 115 115 #endif -
trunk/src/VBox/Runtime/include/internal/fs.h
r20364 r20374 37 37 #endif 38 38 39 RT_ BEGIN_DECLS39 RT_C_DECLS_BEGIN 40 40 41 41 RTFMODE rtFsModeFromDos(RTFMODE fMode, const char *pszName, size_t cbName); … … 58 58 #endif 59 59 60 RT_ END_DECLS60 RT_C_DECLS_END 61 61 62 62 #endif -
trunk/src/VBox/Runtime/include/internal/initterm.h
r20364 r20374 34 34 #include <iprt/cdefs.h> 35 35 36 RT_ BEGIN_DECLS36 RT_C_DECLS_BEGIN 37 37 38 38 #ifdef IN_RING0 … … 52 52 #endif /* IN_RING0 */ 53 53 54 RT_ END_DECLS54 RT_C_DECLS_END 55 55 56 56 #endif -
trunk/src/VBox/Runtime/include/internal/ldr.h
r20364 r20374 35 35 #include "internal/magics.h" 36 36 37 RT_ BEGIN_DECLS37 RT_C_DECLS_BEGIN 38 38 39 39 … … 379 379 380 380 381 RT_ END_DECLS381 RT_C_DECLS_END 382 382 383 383 #endif -
trunk/src/VBox/Runtime/include/internal/memobj.h
r20364 r20374 36 36 #include "internal/magics.h" 37 37 38 RT_ BEGIN_DECLS38 RT_C_DECLS_BEGIN 39 39 40 40 /** @defgroup grp_rt_memobj_int Internals. … … 427 427 /** @} */ 428 428 429 RT_ END_DECLS429 RT_C_DECLS_END 430 430 431 431 #endif -
trunk/src/VBox/Runtime/include/internal/path.h
r20364 r20374 35 35 #include <iprt/param.h> 36 36 37 RT_ BEGIN_DECLS37 RT_C_DECLS_BEGIN 38 38 39 39 #if defined(RT_OS_OS2) || defined(RT_OS_WINDOWS) … … 109 109 110 110 111 RT_ END_DECLS111 RT_C_DECLS_END 112 112 113 113 #endif -
trunk/src/VBox/Runtime/include/internal/process.h
r20364 r20374 35 35 #include <iprt/param.h> 36 36 37 RT_ BEGIN_DECLS37 RT_C_DECLS_BEGIN 38 38 39 39 extern RTPROCESS g_ProcessSelf; … … 67 67 DECLHIDDEN(int) rtProcInitExePath(char *pszPath, size_t cchPath); 68 68 69 RT_ END_DECLS69 RT_C_DECLS_END 70 70 71 71 #endif -
trunk/src/VBox/Runtime/include/internal/rand.h
r20364 r20374 161 161 162 162 163 RT_ BEGIN_DECLS163 RT_C_DECLS_BEGIN 164 164 165 165 /** … … 190 190 DECLCALLBACK(int) rtRandAdvDefaultDestroy(PRTRANDINT pThis); 191 191 192 RT_ END_DECLS192 RT_C_DECLS_END 193 193 194 194 #endif -
trunk/src/VBox/Runtime/include/internal/sched.h
r20364 r20374 36 36 #include "internal/thread.h" 37 37 38 RT_ BEGIN_DECLS38 RT_C_DECLS_BEGIN 39 39 40 40 /** … … 47 47 int rtSchedNativeCalcDefaultPriority(RTTHREADTYPE enmType); 48 48 49 RT_ END_DECLS49 RT_C_DECLS_END 50 50 51 51 #endif -
trunk/src/VBox/Runtime/include/internal/string.h
r20364 r20374 34 34 #include <iprt/string.h> 35 35 36 RT_ BEGIN_DECLS36 RT_C_DECLS_BEGIN 37 37 38 38 /** @def RTSTR_STRICT … … 58 58 size_t rtstrFormatType(PFNRTSTROUTPUT pfnOutput, void *pvArgOutput, const char **ppszFormat, va_list *pArgs, int cchWidth, int cchPrecision, unsigned fFlags, char chArgSize); 59 59 60 RT_ END_DECLS60 RT_C_DECLS_END 61 61 62 62 #endif -
trunk/src/VBox/Runtime/include/internal/thread.h
r20364 r20374 41 41 #include "internal/magics.h" 42 42 43 RT_ BEGIN_DECLS43 RT_C_DECLS_BEGIN 44 44 45 45 … … 208 208 #endif 209 209 210 RT_ END_DECLS211 212 #endif 210 RT_C_DECLS_END 211 212 #endif -
trunk/src/VBox/Runtime/include/internal/time.h
r20364 r20374 34 34 #include <iprt/types.h> 35 35 36 RT_ BEGIN_DECLS36 RT_C_DECLS_BEGIN 37 37 38 38 #if defined(IN_RING3) || defined(IN_RC) … … 44 44 #endif 45 45 46 RT_ END_DECLS46 RT_C_DECLS_END 47 47 48 48 #endif -
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 -
trunk/src/VBox/Runtime/r3/alloc-ef.h
r20364 r20374 159 159 * Internal Functions * 160 160 ******************************************************************************/ 161 RT_ BEGIN_DECLS161 RT_C_DECLS_BEGIN 162 162 void * rtMemAlloc(const char *pszOp, RTMEMTYPE enmType, size_t cb, void *pvCaller, unsigned iLine, const char *pszFile, const char *pszFunction); 163 163 void * rtMemRealloc(const char *pszOp, RTMEMTYPE enmType, void *pvOld, size_t cbNew, void *pvCaller, unsigned iLine, const char *pszFile, const char *pszFunction); 164 164 void rtMemFree(const char *pszOp, RTMEMTYPE enmType, void *pv, void *pvCaller, unsigned iLine, const char *pszFile, const char *pszFunction); 165 RT_ END_DECLS165 RT_C_DECLS_END 166 166 167 167 #endif -
trunk/src/VBox/Runtime/r3/win/timer-win.cpp
r20364 r20374 75 75 #include "internal/magics.h" 76 76 77 RT_ BEGIN_DECLS77 RT_C_DECLS_BEGIN 78 78 /* from sysinternals. */ 79 79 NTSYSAPI LONG NTAPI NtSetTimerResolution(IN ULONG DesiredResolution, IN BOOLEAN SetResolution, OUT PULONG CurrentResolution); 80 80 NTSYSAPI LONG NTAPI NtQueryTimerResolution(OUT PULONG MaximumResolution, OUT PULONG MinimumResolution, OUT PULONG CurrentResolution); 81 RT_ END_DECLS81 RT_C_DECLS_END 82 82 83 83 -
trunk/src/VBox/Runtime/testcase/tstR0ThreadPreemption.h
r20364 r20374 30 30 31 31 #ifdef IN_RING0 32 RT_ BEGIN_DECLS32 RT_C_DECLS_BEGIN 33 33 DECLEXPORT(int) TSTR0ThreadPreemptionSrvReqHandler(PSUPDRVSESSION pSession, uint32_t uOperation, 34 34 uint64_t u64Arg, PSUPR0SERVICEREQHDR pReqHdr); 35 RT_ END_DECLS35 RT_C_DECLS_END 36 36 #endif 37 37
Note:
See TracChangeset
for help on using the changeset viewer.