Changeset 101982 in vbox for trunk/src/libs/xpcom18a4/ipc/ipcd
- Timestamp:
- Nov 8, 2023 3:04:09 PM (15 months ago)
- Location:
- trunk/src/libs/xpcom18a4/ipc/ipcd
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/ipc/ipcd/daemon/src/ipcdUnix.cpp
r101933 r101982 67 67 #include "ipcdPrivate.h" 68 68 #include "ipcd.h" 69 70 #if 071 static void72 IPC_Sleep(int seconds)73 {74 while (seconds > 0) {75 LOG(("\rsleeping for %d seconds...", seconds));76 PR_Sleep(PR_SecondsToInterval(1));77 --seconds;78 }79 LOG(("\ndone sleeping\n"));80 }81 #endif82 69 83 70 //----------------------------------------------------------------------------- -
trunk/src/libs/xpcom18a4/ipc/ipcd/extensions/dconnect/src/ipcDConnectService.cpp
r101966 r101982 3549 3549 3550 3550 // Yield the cpu so a worker can get a chance to start working without too much fuss. 3551 PR_Sleep(PR_INTERVAL_NO_WAIT);3551 RTThreadYield(); 3552 3552 mon.Enter(); 3553 3553 // examine the queue
Note:
See TracChangeset
for help on using the changeset viewer.