Changeset 101825 in vbox
- Timestamp:
- Nov 5, 2023 1:08:58 PM (15 months ago)
- Location:
- trunk/src/libs/xpcom18a4
- Files:
-
- 7 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/Config.kmk
r101824 r101825 442 442 xpcom/threads/nsIRunnable.idl \ 443 443 xpcom/threads/nsIThread.idl \ 444 xpcom/threads/nsITimer.idl \445 444 xpcom/threads/nsIEnvironment.idl \ 446 xpcom/threads/nsITimerInternal.idl \447 xpcom/threads/nsITimerManager.idl \448 445 xpcom/threads/nsIProcess.idl \ 449 446 xpcom/reflect/xptinfo/public/nsIInterfaceInfo.idl \ -
trunk/src/libs/xpcom18a4/Makefile.kmk
r101824 r101825 695 695 xpcom/threads/nsEventQueueService.cpp \ 696 696 xpcom/threads/nsThread.cpp \ 697 xpcom/threads/nsTimerImpl.cpp \ 698 xpcom/threads/nsProcessCommon.cpp \ 699 xpcom/threads/TimerThread.cpp 697 xpcom/threads/nsProcessCommon.cpp 700 698 $(evalcall VBOX_XPCOM_X86,VBox-xpcom-threads) 701 699 … … 1207 1205 nsICategoryManager.xpt \ 1208 1206 nsIThread.xpt \ 1209 nsITimer.xpt \1210 nsITimerInternal.xpt \1211 nsITimerManager.xpt \1212 1207 nsIRunnable.xpt \ 1213 1208 nsIEventTarget.xpt \ -
trunk/src/libs/xpcom18a4/xpcom/build/nsXPComInit.cpp
r101824 r101825 80 80 #include "nsIInterfaceInfoManager.h" 81 81 82 #include "nsTimerImpl.h"83 #include "TimerThread.h"84 85 82 #include "nsThread.h" 86 83 #include "nsProcess.h" … … 183 180 NS_GENERIC_FACTORY_CONSTRUCTOR(nsAtomService) 184 181 NS_GENERIC_FACTORY_CONSTRUCTOR(nsExceptionService) 185 NS_GENERIC_FACTORY_CONSTRUCTOR(nsTimerImpl)186 NS_GENERIC_FACTORY_CONSTRUCTOR(nsTimerManager)187 182 NS_GENERIC_FACTORY_CONSTRUCTOR(nsBinaryOutputStream) 188 183 NS_GENERIC_FACTORY_CONSTRUCTOR(nsBinaryInputStream) … … 366 361 #define NS_XPCOMPROXY_CID NS_PROXYEVENT_MANAGER_CID 367 362 COMPONENT(XPCOMPROXY, nsProxyObjectManager::Create), 368 369 COMPONENT(TIMER, nsTimerImplConstructor),370 COMPONENT(TIMERMANAGER, nsTimerManagerConstructor),371 363 372 364 #define COMPONENT_SUPPORTS(TYPE, Type) \ … … 516 508 if (NS_FAILED(rv)) return rv; 517 509 518 // Set up the timer globals/timer thread519 rv = nsTimerImpl::Startup();520 NS_ENSURE_SUCCESS(rv, rv);521 522 510 // Startup the memory manager 523 511 rv = nsMemoryImpl::Startup(); … … 896 884 NS_ShutdownNativeCharsetUtils(); 897 885 #endif 898 899 // Shutdown the timer thread and all timers that might still be alive before900 // shutting down the component manager901 nsTimerImpl::Shutdown();902 886 903 887 CallExitRoutines();
Note:
See TracChangeset
for help on using the changeset viewer.