Changeset 57358 in vbox for trunk/src/VBox/Runtime/r3/solaris
- Timestamp:
- Aug 14, 2015 3:16:38 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 102121
- Location:
- trunk/src/VBox/Runtime/r3/solaris
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/solaris/RTSystemQueryDmiString-solaris.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/system.h> 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r3/solaris/RTSystemShutdown-solaris.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/system.h> 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r3/solaris/coredumper-solaris.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #define LOG_GROUP RTLOGGROUP_DEFAULT 32 32 #include <iprt/coredumper.h> … … 64 64 65 65 66 /******************************************************************************* 67 * Globals *68 ******************************************************************************* /66 /********************************************************************************************************************************* 67 * Globals * 68 *********************************************************************************************************************************/ 69 69 static RTNATIVETHREAD volatile g_CoreDumpThread = NIL_RTNATIVETHREAD; 70 70 static bool volatile g_fCoreDumpSignalSetup = false; … … 74 74 75 75 76 /******************************************************************************* 77 * Defined Constants And Macros *78 ******************************************************************************* /76 /********************************************************************************************************************************* 77 * Defined Constants And Macros * 78 *********************************************************************************************************************************/ 79 79 #define CORELOG_NAME "CoreDumper: " 80 80 #define CORELOG(a) Log(a) -
trunk/src/VBox/Runtime/r3/solaris/fileaio-solaris.cpp
r56290 r57358 25 25 */ 26 26 27 /******************************************************************************* 28 * Header Files * 29 *******************************************************************************/ 27 28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 30 31 #define LOG_GROUP RTLOGGROUP_FILE 31 32 #include <iprt/asm.h> … … 44 45 45 46 46 /******************************************************************************* 47 * Structures and Typedefs *48 ******************************************************************************* /47 /********************************************************************************************************************************* 48 * Structures and Typedefs * 49 *********************************************************************************************************************************/ 49 50 /** 50 51 * Async I/O completion context state. … … 89 90 90 91 91 /******************************************************************************* 92 * Defined Constants And Macros *93 ******************************************************************************* /92 /********************************************************************************************************************************* 93 * Defined Constants And Macros * 94 *********************************************************************************************************************************/ 94 95 /** The max number of events to get in one call. */ 95 96 #define AIO_MAXIMUM_REQUESTS_PER_CONTEXT 64 -
trunk/src/VBox/Runtime/r3/solaris/mp-solaris.cpp
r56290 r57358 25 25 */ 26 26 27 /******************************************************************************* 28 * Header Files * 29 *******************************************************************************/ 27 28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 30 31 #define LOG_GROUP RTLOGGROUP_DEFAULT 31 32 #include <unistd.h> … … 45 46 46 47 47 /******************************************************************************* 48 * Global Variables *49 ******************************************************************************* /48 /********************************************************************************************************************************* 49 * Global Variables * 50 *********************************************************************************************************************************/ 50 51 /** Initialization serializing (rtMpSolarisOnce). */ 51 52 static RTONCE g_MpSolarisOnce = RTONCE_INITIALIZER; -
trunk/src/VBox/Runtime/r3/solaris/rtProcInitExePath-solaris.cpp
r56290 r57358 25 25 */ 26 26 27 /******************************************************************************* 28 * Header Files * 29 *******************************************************************************/ 27 28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 30 31 #define LOG_GROUP RTLOGGROUP_PROCESS 31 32 #include <unistd.h> -
trunk/src/VBox/Runtime/r3/solaris/systemmem-solaris.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/system.h> 32 32 #include "internal/iprt.h" … … 42 42 43 43 44 /******************************************************************************* 45 * Global Variables *46 ******************************************************************************* /44 /********************************************************************************************************************************* 45 * Global Variables * 46 *********************************************************************************************************************************/ 47 47 /** Initialize globals once. */ 48 48 static RTONCE g_rtSysMemSolInitOnce = RTONCE_INITIALIZER; -
trunk/src/VBox/Runtime/r3/solaris/thread-affinity-solaris.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"
Note:
See TracChangeset
for help on using the changeset viewer.