Changeset 88189 in vbox
- Timestamp:
- Mar 18, 2021 11:07:36 AM (4 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/solaris/DRM/vboxvideo_drm.c
r82968 r88189 127 127 * Global Variables * 128 128 *********************************************************************************************************************************/ 129 /** Device handle (we support only one instance). */130 static dev_info_t *g_pDip;131 132 129 /** Soft state. */ 133 130 static void *g_pVBoxVideoSolarisState; -
trunk/src/VBox/Additions/solaris/SharedFolders/vboxfs_vfs.c
r82968 r88189 241 241 } 242 242 243 #ifdef DEBUG_ramshankar 243 244 static void 244 245 sffs_print(sffs_data_t *sffs) … … 257 258 cmn_err(CE_NOTE, " sfp_mount_t *sf_handle = 0x%p\n", sffs->sf_handle); 258 259 } 260 #endif 259 261 260 262 static int -
trunk/src/VBox/Runtime/r3/posix/thread-posix.cpp
r86727 r88189 351 351 PRTTHREADINT pThread = (PRTTHREADINT)pvArgs; 352 352 pthread_t Self = pthread_self(); 353 #if !defined(RT_OS_SOLARIS) /* On Solaris sizeof(pthread_t) = 4 and sizeof(NIL_RTNATIVETHREAD) = 8 */ 353 354 Assert((uintptr_t)Self != NIL_RTNATIVETHREAD); 355 #endif 354 356 Assert(Self == (pthread_t)(RTNATIVETHREAD)Self); 355 357 -
trunk/src/VBox/Runtime/r3/solaris/coredumper-solaris.cpp
r82968 r88189 1503 1503 #ifdef RT_OS_SOLARIS 1504 1504 typedef int (*PFNELFWRITENOTEHDR)(PRTSOLCORE pSolCore, uint_t, const void *pcv, size_t cb); 1505 typedef struct ELFWRITENOTE1505 typedef struct 1506 1506 { 1507 1507 const char *pszType;
Note:
See TracChangeset
for help on using the changeset viewer.