Changeset 39032 in vbox for trunk/src/VBox/Runtime/r3/posix
- Timestamp:
- Oct 19, 2011 11:08:50 AM (13 years ago)
- Location:
- trunk/src/VBox/Runtime/r3/posix
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/process-creation-posix.cpp
r37499 r39032 697 697 if (!fNoChDir) 698 698 { 699 int rcChdir = chdir("/"); 699 int rcIgnored = chdir("/"); 700 NOREF(rcIgnored); 700 701 } 701 702 … … 712 713 char szBuf[256]; 713 714 size_t cbPid = RTStrPrintf(szBuf, sizeof(szBuf), "%d\n", pid); 714 int rcWrite = write(fdPidfile, szBuf, cbPid);715 ssize_t cbIgnored = write(fdPidfile, szBuf, cbPid); NOREF(cbIgnored); 715 716 close(fdPidfile); 716 717 } -
trunk/src/VBox/Runtime/r3/posix/semevent-posix.cpp
r33540 r39032 311 311 DECL_FORCE_INLINE(int) rtSemEventWait(RTSEMEVENT hEventSem, RTMSINTERVAL cMillies, bool fAutoResume) 312 312 { 313 #ifdef RTSEMEVENT_STRICT 313 314 PCRTLOCKVALSRCPOS pSrcPos = NULL; 315 #endif 314 316 315 317 /*
Note:
See TracChangeset
for help on using the changeset viewer.