Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
7c69afaf
Commit
7c69afaf
authored
Aug 18, 2004
by
tomas@poseidon.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added some explicit templates
parent
8706d60b
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
18 additions
and
0 deletions
+18
-0
ndb/src/cw/cpcd/APIService.cpp
ndb/src/cw/cpcd/APIService.cpp
+2
-0
ndb/src/cw/cpcd/CPCD.cpp
ndb/src/cw/cpcd/CPCD.cpp
+2
-0
ndb/src/cw/cpcd/Monitor.cpp
ndb/src/cw/cpcd/Monitor.cpp
+2
-0
ndb/src/kernel/blocks/backup/restore/Restore.cpp
ndb/src/kernel/blocks/backup/restore/Restore.cpp
+5
-0
ndb/src/kernel/blocks/backup/restore/main.cpp
ndb/src/kernel/blocks/backup/restore/main.cpp
+1
-0
ndb/src/kernel/blocks/ndbfs/Ndbfs.cpp
ndb/src/kernel/blocks/ndbfs/Ndbfs.cpp
+1
-0
ndb/src/mgmclient/CommandInterpreter.cpp
ndb/src/mgmclient/CommandInterpreter.cpp
+2
-0
ndb/src/mgmclient/CpcClient.cpp
ndb/src/mgmclient/CpcClient.cpp
+1
-0
ndb/tools/waiter.cpp
ndb/tools/waiter.cpp
+2
-0
No files found.
ndb/src/cw/cpcd/APIService.cpp
View file @
7c69afaf
...
@@ -382,3 +382,5 @@ CPCDAPISession::listProcesses(Parser_t::Context & /* unused */,
...
@@ -382,3 +382,5 @@ CPCDAPISession::listProcesses(Parser_t::Context & /* unused */,
m_cpcd
.
m_processes
.
unlock
();
m_cpcd
.
m_processes
.
unlock
();
}
}
template
class
Vector
<
ParserRow
<
CPCDAPISession
>
const
*>
;
ndb/src/cw/cpcd/CPCD.cpp
View file @
7c69afaf
...
@@ -431,3 +431,5 @@ CPCD::report(int id, CPCEvent::EventType t){
...
@@ -431,3 +431,5 @@ CPCD::report(int id, CPCEvent::EventType t){
}
}
m_subscribers
.
unlock
();
m_subscribers
.
unlock
();
}
}
template
class
MutexVector
<
EventSubscriber
*
>;
ndb/src/cw/cpcd/Monitor.cpp
View file @
7c69afaf
...
@@ -75,3 +75,5 @@ void
...
@@ -75,3 +75,5 @@ void
CPCD
::
Monitor
::
signal
()
{
CPCD
::
Monitor
::
signal
()
{
NdbCondition_Signal
(
m_changeCondition
);
NdbCondition_Signal
(
m_changeCondition
);
}
}
template
class
MutexVector
<
CPCD
::
Process
*
>;
ndb/src/kernel/blocks/backup/restore/Restore.cpp
View file @
7c69afaf
...
@@ -937,3 +937,8 @@ operator<<(NdbOut& ndbout, const TableS & table){
...
@@ -937,3 +937,8 @@ operator<<(NdbOut& ndbout, const TableS & table){
}
// for
}
// for
return
ndbout
;
return
ndbout
;
}
}
template
class
Vector
<
TableS
*
>;
template
class
Vector
<
AttributeS
*
>;
template
class
Vector
<
AttributeDesc
*
>;
ndb/src/kernel/blocks/backup/restore/main.cpp
View file @
7c69afaf
...
@@ -353,3 +353,4 @@ main(int argc, const char** argv)
...
@@ -353,3 +353,4 @@ main(int argc, const char** argv)
return
1
;
return
1
;
}
// main
}
// main
template
class
Vector
<
BackupConsumer
*
>;
ndb/src/kernel/blocks/ndbfs/Ndbfs.cpp
View file @
7c69afaf
...
@@ -1013,3 +1013,4 @@ BLOCK_FUNCTIONS(Ndbfs);
...
@@ -1013,3 +1013,4 @@ BLOCK_FUNCTIONS(Ndbfs);
template
class
Vector
<
AsyncFile
*
>;
template
class
Vector
<
AsyncFile
*
>;
template
class
Vector
<
OpenFiles
::
OpenFileItem
>;
template
class
Vector
<
OpenFiles
::
OpenFileItem
>;
template
class
MemoryChannel
<
Request
>;
template
class
MemoryChannel
<
Request
>;
template
class
Pool
<
Request
>;
ndb/src/mgmclient/CommandInterpreter.cpp
View file @
7c69afaf
...
@@ -2023,3 +2023,5 @@ CmdBackupCallback(const MgmtSrvr::BackupEvent & event){
...
@@ -2023,3 +2023,5 @@ CmdBackupCallback(const MgmtSrvr::BackupEvent & event){
ndbout << str << endl;
ndbout << str << endl;
}
}
#endif
#endif
template
class
Vector
<
char
const
*
>;
ndb/src/mgmclient/CpcClient.cpp
View file @
7c69afaf
...
@@ -559,3 +559,4 @@ SimpleCpcClient::ParserDummy::ParserDummy(NDB_SOCKET_TYPE sock)
...
@@ -559,3 +559,4 @@ SimpleCpcClient::ParserDummy::ParserDummy(NDB_SOCKET_TYPE sock)
}
}
template
class
Vector
<
SimpleCpcClient
::
Process
>;
template
class
Vector
<
SimpleCpcClient
::
Process
>;
template
class
Vector
<
ParserRow
<
SimpleCpcClient
::
ParserDummy
>
const
*>
;
ndb/tools/waiter.cpp
View file @
7c69afaf
...
@@ -307,3 +307,5 @@ waitClusterStatus(const char* _addr,
...
@@ -307,3 +307,5 @@ waitClusterStatus(const char* _addr,
}
}
return
0
;
return
0
;
}
}
template
class
Vector
<
ndb_mgm_node_state
>;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment