Changeset 88189 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Mar 18, 2021 11:07:36 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 143345
- Location:
- trunk/src/VBox/Runtime/r3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
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.