Overview | Namespace | Class | Index | Help |
::
struct _rtl_ModuleCount
- Base Classes
- None.
- Known Derived Classes
- None.
virtual | abstract | interface | template |
NO | NO | NO | NO |
- Description
- Pointers to
rtl_ModuleCount
are passed as arguments to the default factory creator functions:createSingleComponentFactory
,createSingleFactory
,createOneInstanceFactory
. The factory implementation is callingrtl_ModuleCount.acquire
when it is being constructed and it is callingrtl_ModuleCount.release
. The implementations ofacquire
andrelease
should influence the return value ofcomponent_canUnload
in a way that it returnssal_False
afteracquire
has been called. That is the module will not be unloaded once a default factory has been created. A call torelease
may causecomponent_canUnload
to returnsal_False
, but only if there are no object alive which originated from the module. These objects are factory instances and the service instances which have been created by these factories.It is not necessary to synchronize
acquire
andrelease
as a whole. Simply sychronize the access to a counter variable, e.g. thertl_moduleCount_release
implementation:extern "C" void rtl_moduleCount_acquire(rtl_ModuleCount * that ) { rtl_StandardModuleCount* pMod= (rtl_StandardModuleCount*)that; osl_incrementInterlockedCount( &pMod->counter); }
The SAL library offers functions that can be used foracquire
andrelease
. See struct_rtl_StandardModuleCount
.
- File
- unload.h
Top of Page
Copyright © 2012, The Apache Software Foundation, Licensed under the Apache License, Version 2.0. Apache, the Apache feather logo, Apache OpenOffice and OpenOffice.org are trademarks of The Apache Software Foundation. Other names may be trademarks of their respective owners.