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
a2255169
Commit
a2255169
authored
Aug 17, 2004
by
joreland@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysqldev@bk-internal.mysql.com:/tmp/jonas/save
into mysql.com:/home/jonas/src/mysql-4.1
parents
1fc56217
f05b70cf
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
6 additions
and
19 deletions
+6
-19
ndb/include/ndb_global.h
ndb/include/ndb_global.h
+3
-1
ndb/src/cw/cpcd/Process.cpp
ndb/src/cw/cpcd/Process.cpp
+0
-2
ndb/src/cw/cpcd/main.cpp
ndb/src/cw/cpcd/main.cpp
+0
-1
ndb/src/kernel/main.cpp
ndb/src/kernel/main.cpp
+0
-4
ndb/src/kernel/vm/Emulator.cpp
ndb/src/kernel/vm/Emulator.cpp
+0
-2
ndb/src/mgmclient/main.cpp
ndb/src/mgmclient/main.cpp
+0
-2
ndb/src/mgmsrv/Services.cpp
ndb/src/mgmsrv/Services.cpp
+1
-1
ndb/src/ndbapi/NdbOperationInt.cpp
ndb/src/ndbapi/NdbOperationInt.cpp
+2
-2
ndb/src/ndbapi/TransporterFacade.cpp
ndb/src/ndbapi/TransporterFacade.cpp
+0
-4
No files found.
ndb/include/ndb_global.h
View file @
a2255169
...
...
@@ -3,9 +3,11 @@
#define NDBGLOBAL_H
#include <my_global.h>
#define NDB_BASE_PORT 2200
/** signal & SIG_PIPE */
#include <my_alarm.h>
#if defined(_WIN32) || defined(_WIN64) || defined(__WIN32__) || defined(WIN32)
#define NDB_WIN32
#else
...
...
ndb/src/cw/cpcd/Process.cpp
View file @
a2255169
...
...
@@ -15,8 +15,6 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include <ndb_global.h>
#include <signal.h>
#include <BaseString.hpp>
#include <InputStream.hpp>
...
...
ndb/src/cw/cpcd/main.cpp
View file @
a2255169
...
...
@@ -15,7 +15,6 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include <ndb_global.h>
/* Needed for mkdir(2) */
#include <signal.h>
#include "CPCD.hpp"
#include "APIService.hpp"
...
...
ndb/src/kernel/main.cpp
View file @
a2255169
...
...
@@ -38,10 +38,6 @@
#include <sys/processor.h> // For system informatio
#endif
#if !defined NDB_SOFTOSE && !defined NDB_OSE
#include <signal.h> // For process signals
#endif
extern
EventLogger
g_eventLogger
;
void
catchsigs
(
bool
ignore
);
// for process signal handling
...
...
ndb/src/kernel/vm/Emulator.cpp
View file @
a2255169
...
...
@@ -35,8 +35,6 @@
#include <NdbSleep.h>
#include <new>
#include <signal.h> // For process signals
extern
"C"
{
extern
void
(
*
ndb_new_handler
)();
}
...
...
ndb/src/mgmclient/main.cpp
View file @
a2255169
...
...
@@ -24,8 +24,6 @@
#include "CommandInterpreter.hpp"
#include <signal.h>
const
char
*
progname
=
"ndb_mgm"
;
...
...
ndb/src/mgmsrv/Services.cpp
View file @
a2255169
...
...
@@ -14,7 +14,7 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include <
string
.h>
#include <
ndb_global
.h>
#include <ctype.h>
#include <uucode.h>
...
...
ndb/src/ndbapi/NdbOperationInt.cpp
View file @
a2255169
...
...
@@ -699,8 +699,8 @@ NdbOperation::load_const_u64(Uint32 RegDest, Uint64 Constant)
setErrorCodeAbort
(
4229
);
return
-
1
;
}
tTemp1
=
(
Uint32
)(
Constant
&
0xFFFFFFFF
);
tTemp2
=
(
Uint32
)(
Constant
>>
32
);
tTemp1
=
(
Uint32
)(
Constant
>>
32
);
tTemp2
=
(
Uint32
)(
Constant
&
0xFFFFFFFF
);
// 64 bit value
if
(
insertATTRINFO
(
Interpreter
::
LoadConst64
(
RegDest
))
==
-
1
)
...
...
ndb/src/ndbapi/TransporterFacade.cpp
View file @
a2255169
...
...
@@ -34,10 +34,6 @@
#include <ndb_version.h>
#include <SignalLoggerManager.hpp>
#if !defined NDB_OSE && !defined NDB_SOFTOSE
#include <signal.h>
#endif
//#define REPORT_TRANSPORTER
//#define API_TRACE;
...
...
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