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
954542b0
Commit
954542b0
authored
Aug 03, 2004
by
joreland@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more 4.1 to irix merge
parent
20c86363
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
12 deletions
+20
-12
ndb/src/kernel/main.cpp
ndb/src/kernel/main.cpp
+8
-4
ndb/src/mgmsrv/MgmtSrvr.cpp
ndb/src/mgmsrv/MgmtSrvr.cpp
+4
-2
ndb/src/ndbapi/TransporterFacade.cpp
ndb/src/ndbapi/TransporterFacade.cpp
+8
-4
ndb/test/src/HugoOperations.cpp
ndb/test/src/HugoOperations.cpp
+0
-2
No files found.
ndb/src/kernel/main.cpp
View file @
954542b0
...
...
@@ -175,11 +175,15 @@ NDB_MAIN(ndb_kernel){
globalTransporterRegistry
.
startSending
();
globalTransporterRegistry
.
startReceiving
();
if
(
!
globalTransporterRegistry
.
start_service
(
socket_server
))
NDB_ASSERT
(
0
,
"globalTransporterRegistry.start_service() failed"
);
if
(
!
globalTransporterRegistry
.
start_service
(
socket_server
)){
ndbout_c
(
"globalTransporterRegistry.start_service() failed"
);
exit
(
-
1
);
}
if
(
!
globalTransporterRegistry
.
start_clients
())
NDB_ASSERT
(
0
,
"globalTransporterRegistry.start_clients() failed"
);
if
(
!
globalTransporterRegistry
.
start_clients
()){
ndbout_c
(
"globalTransporterRegistry.start_clients() failed"
);
exit
(
-
1
);
}
globalEmulatorData
.
theWatchDog
->
doStart
();
...
...
ndb/src/mgmsrv/MgmtSrvr.cpp
View file @
954542b0
...
...
@@ -587,8 +587,10 @@ MgmtSrvr::MgmtSrvr(NodeId nodeId,
_ownNodeId
=
0
;
// did not get nodeid requested
}
m_allocated_resources
.
reserve_node
(
_ownNodeId
);
}
else
NDB_ASSERT
(
0
,
"Unable to retrieve own node id"
);
}
else
{
ndbout_c
(
"Unable to retrieve own node id"
);
exit
(
-
1
);
}
}
...
...
ndb/src/ndbapi/TransporterFacade.cpp
View file @
954542b0
...
...
@@ -463,11 +463,15 @@ void TransporterFacade::threadMainSend(void)
SocketServer
socket_server
;
theTransporterRegistry
->
startSending
();
if
(
!
theTransporterRegistry
->
start_service
(
socket_server
))
NDB_ASSERT
(
0
,
"Unable to start theTransporterRegistry->start_service"
);
if
(
!
theTransporterRegistry
->
start_service
(
socket_server
)){
ndbout_c
(
"Unable to start theTransporterRegistry->start_service"
);
exit
(
0
);
}
if
(
!
theTransporterRegistry
->
start_clients
())
NDB_ASSERT
(
0
,
"Unable to start theTransporterRegistry->start_clients"
);
if
(
!
theTransporterRegistry
->
start_clients
()){
ndbout_c
(
"Unable to start theTransporterRegistry->start_clients"
);
exit
(
0
);
}
socket_server
.
startServer
();
...
...
ndb/test/src/HugoOperations.cpp
View file @
954542b0
...
...
@@ -703,5 +703,3 @@ HugoOperations::indexUpdateRecord(Ndb*,
}
return
NDBT_OK
;
}
template
class
Vector
<
HugoOperations
::
ScanTmp
>;
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