framework: cleanup redundant comments
Change-Id: Id4cb444a1e21ec0ee94a2604c15bc43220a7b571
This commit is contained in:
parent
30af3971d8
commit
ec47e78fee
1 changed files with 5 additions and 15 deletions
|
@ -24,29 +24,19 @@
|
|||
|
||||
namespace framework{
|
||||
|
||||
/*-************************************************************************************************************
|
||||
@descr We need this interface to support using of different mutex implementations in a generic way.
|
||||
*//*-*************************************************************************************************************/
|
||||
/// Interface to support different mutex implementations in a generic way.
|
||||
class SAL_NO_VTABLE IMutex
|
||||
{
|
||||
|
||||
// public methods
|
||||
|
||||
public:
|
||||
|
||||
/*-****************************************************************************************************
|
||||
@descr These functions must be supported by a derived class!
|
||||
acquire() -try to register thread
|
||||
release() -unregister thread
|
||||
*//*-*****************************************************************************************************/
|
||||
/// try to register thread
|
||||
virtual void acquire() = 0;
|
||||
/// unregister thread
|
||||
virtual void release() = 0;
|
||||
|
||||
protected:
|
||||
~IMutex() {}
|
||||
}; // class IMutex
|
||||
|
||||
} // namespace framework
|
||||
};
|
||||
}
|
||||
|
||||
#endif // INCLUDED_FRAMEWORK_IMUTEX_HXX
|
||||
|
||||
|
|
Loading…
Reference in a new issue