Changeset 57358 in vbox for trunk/src/VBox/Runtime/r3/os2
- Timestamp:
- Aug 14, 2015 3:16:38 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 102121
- Location:
- trunk/src/VBox/Runtime/r3/os2
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/os2/filelock-os2.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #define LOG_GROUP RTLOGGROUP_FILE 32 32 -
trunk/src/VBox/Runtime/r3/os2/mp-os2.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #define INCL_BASE 32 32 #define INCL_ERRORS -
trunk/src/VBox/Runtime/r3/os2/pipe-os2.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #define INCL_ERRORS 32 32 #define INCL_DOSSEMAPHORES … … 50 50 51 51 52 /******************************************************************************* 53 * Defined Constants And Macros *54 ******************************************************************************* /52 /********************************************************************************************************************************* 53 * Defined Constants And Macros * 54 *********************************************************************************************************************************/ 55 55 /** The pipe buffer size we prefer. */ 56 56 #define RTPIPE_OS2_SIZE _32K 57 57 58 58 59 /******************************************************************************* 60 * Structures and Typedefs *61 ******************************************************************************* /59 /********************************************************************************************************************************* 60 * Structures and Typedefs * 61 *********************************************************************************************************************************/ 62 62 typedef struct RTPIPEINTERNAL 63 63 { -
trunk/src/VBox/Runtime/r3/os2/rtProcInitExePath-os2.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 <stdlib.h> -
trunk/src/VBox/Runtime/r3/os2/sched-os2.cpp
r56290 r57358 30 30 31 31 32 /******************************************************************************* 33 * Header Files *34 ******************************************************************************* /32 /********************************************************************************************************************************* 33 * Header Files * 34 *********************************************************************************************************************************/ 35 35 #define LOG_GROUP RTLOGGROUP_THREAD 36 36 #define INCL_BASE … … 46 46 47 47 48 /******************************************************************************* 49 * Structures and Typedefs *50 ******************************************************************************* /48 /********************************************************************************************************************************* 49 * Structures and Typedefs * 50 *********************************************************************************************************************************/ 51 51 /** 52 52 * Configuration of one priority. … … 74 74 75 75 76 /******************************************************************************* 77 * Global Variables *78 ******************************************************************************* /76 /********************************************************************************************************************************* 77 * Global Variables * 78 *********************************************************************************************************************************/ 79 79 /** 80 80 * Array of static priority configurations. -
trunk/src/VBox/Runtime/r3/os2/sems-os2.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #define INCL_DOSSEMAPHORES 32 32 #define INCL_ERRORS -
trunk/src/VBox/Runtime/r3/os2/systemmem-os2.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #define INCL_DOSMISC 32 32 #define INCL_ERRORS -
trunk/src/VBox/Runtime/r3/os2/thread-os2.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #define LOG_GROUP RTLOGGROUP_THREAD 32 32 #define INCL_BASE … … 52 52 53 53 54 /******************************************************************************* 55 * Global Variables *56 ******************************************************************************* /54 /********************************************************************************************************************************* 55 * Global Variables * 56 *********************************************************************************************************************************/ 57 57 /** Pointer to thread local memory which points to the current thread. */ 58 58 static PRTTHREADINT *g_ppCurThread; 59 59 60 60 61 /******************************************************************************* 62 * Internal Functions *63 ******************************************************************************* /61 /********************************************************************************************************************************* 62 * Internal Functions * 63 *********************************************************************************************************************************/ 64 64 static void rtThreadNativeMain(void *pvArgs); 65 65 -
trunk/src/VBox/Runtime/r3/os2/time-os2.cpp
r48935 r57358 30 30 31 31 32 /******************************************************************************* 33 * Header Files *34 ******************************************************************************* /32 /********************************************************************************************************************************* 33 * Header Files * 34 *********************************************************************************************************************************/ 35 35 #define LOG_GROUP RTLOGGROUP_TIME 36 36 #include <InnoTekLIBC/FastInfoBlocks.h>
Note:
See TracChangeset
for help on using the changeset viewer.