mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
Merge mysqldev@bk-internal.mysql.com:/tmp/jonas/save
into mysql.com:/home/jonas/src/mysql-4.1
This commit is contained in:
commit
a2255169d7
9 changed files with 6 additions and 19 deletions
|
@ -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
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -35,8 +35,6 @@
|
|||
#include <NdbSleep.h>
|
||||
#include <new>
|
||||
|
||||
#include <signal.h> // For process signals
|
||||
|
||||
extern "C" {
|
||||
extern void (* ndb_new_handler)();
|
||||
}
|
||||
|
|
|
@ -24,8 +24,6 @@
|
|||
|
||||
#include "CommandInterpreter.hpp"
|
||||
|
||||
#include <signal.h>
|
||||
|
||||
const char *progname = "ndb_mgm";
|
||||
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue