diff options
author | unknown <tomas@poseidon.(none)> | 2004-08-18 14:26:39 +0000 |
---|---|---|
committer | unknown <tomas@poseidon.(none)> | 2004-08-18 14:26:39 +0000 |
commit | 992ff0a27274c0c95da2f4ea1496bb9356201f89 (patch) | |
tree | ccbaf8913fc053a358104f1fc0c3a7f725737305 /ndb/src/cw | |
parent | e9995b300fe59c8f72ee05740f019339b26c37dc (diff) | |
download | mariadb-git-992ff0a27274c0c95da2f4ea1496bb9356201f89.tar.gz |
Added some explicit templates
Diffstat (limited to 'ndb/src/cw')
-rw-r--r-- | ndb/src/cw/cpcd/APIService.cpp | 2 | ||||
-rw-r--r-- | ndb/src/cw/cpcd/CPCD.cpp | 2 | ||||
-rw-r--r-- | ndb/src/cw/cpcd/Monitor.cpp | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/ndb/src/cw/cpcd/APIService.cpp b/ndb/src/cw/cpcd/APIService.cpp index caf19ddba0e..46b043c7004 100644 --- a/ndb/src/cw/cpcd/APIService.cpp +++ b/ndb/src/cw/cpcd/APIService.cpp @@ -382,3 +382,5 @@ CPCDAPISession::listProcesses(Parser_t::Context & /* unused */, m_cpcd.m_processes.unlock(); } + +template class Vector<ParserRow<CPCDAPISession> const*>; diff --git a/ndb/src/cw/cpcd/CPCD.cpp b/ndb/src/cw/cpcd/CPCD.cpp index 40a5fd49493..44db10422b9 100644 --- a/ndb/src/cw/cpcd/CPCD.cpp +++ b/ndb/src/cw/cpcd/CPCD.cpp @@ -431,3 +431,5 @@ CPCD::report(int id, CPCEvent::EventType t){ } m_subscribers.unlock(); } + +template class MutexVector<EventSubscriber*>; diff --git a/ndb/src/cw/cpcd/Monitor.cpp b/ndb/src/cw/cpcd/Monitor.cpp index 2935cd0a648..141de926d4d 100644 --- a/ndb/src/cw/cpcd/Monitor.cpp +++ b/ndb/src/cw/cpcd/Monitor.cpp @@ -75,3 +75,5 @@ void CPCD::Monitor::signal() { NdbCondition_Signal(m_changeCondition); } + +template class MutexVector<CPCD::Process*>; |