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
48f1ee6a
Commit
48f1ee6a
authored
Oct 22, 2004
by
tomas@poseidon.ndb.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
AIX compile fixes
parent
c21b4754
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
23 additions
and
18 deletions
+23
-18
ndb/include/kernel/signaldata/UpgradeStartup.hpp
ndb/include/kernel/signaldata/UpgradeStartup.hpp
+2
-0
ndb/include/ndb_global.h
ndb/include/ndb_global.h
+3
-0
ndb/include/ndb_types.h
ndb/include/ndb_types.h
+1
-1
ndb/include/ndbapi/Ndb.hpp
ndb/include/ndbapi/Ndb.hpp
+1
-0
ndb/include/ndbapi/NdbReceiver.hpp
ndb/include/ndbapi/NdbReceiver.hpp
+2
-0
ndb/include/ndbapi/NdbScanOperation.hpp
ndb/include/ndbapi/NdbScanOperation.hpp
+1
-0
ndb/src/common/util/ConfigValues.cpp
ndb/src/common/util/ConfigValues.cpp
+2
-5
ndb/src/kernel/blocks/backup/restore/Restore.hpp
ndb/src/kernel/blocks/backup/restore/Restore.hpp
+1
-1
ndb/src/kernel/blocks/dbtup/Dbtup.hpp
ndb/src/kernel/blocks/dbtup/Dbtup.hpp
+8
-8
ndb/src/mgmsrv/SignalQueue.cpp
ndb/src/mgmsrv/SignalQueue.cpp
+1
-2
ndb/tools/waiter.cpp
ndb/tools/waiter.cpp
+1
-1
No files found.
ndb/include/kernel/signaldata/UpgradeStartup.hpp
View file @
48f1ee6a
#ifndef NDB_UPGRADE_STARTUP
#define NDB_UPGRADE_STARTUP
class
Ndbcntr
;
struct
UpgradeStartup
{
static
void
installEXEC
(
SimulatedBlock
*
);
...
...
ndb/include/ndb_global.h
View file @
48f1ee6a
...
...
@@ -13,6 +13,9 @@
#undef NDB_WIN32
#endif
#ifdef _AIX
#undef _H_STRINGS
#endif
#include <m_string.h>
#include <m_ctype.h>
#include <ndb_types.h>
...
...
ndb/include/ndb_types.h
View file @
48f1ee6a
...
...
@@ -33,7 +33,7 @@ typedef unsigned int UintR;
#ifdef __SIZE_TYPE__
typedef
__SIZE_TYPE__
UintPtr
;
#else
#include <
my
_global.h>
#include <
ndb
_global.h>
#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif
...
...
ndb/include/ndbapi/Ndb.hpp
View file @
48f1ee6a
...
...
@@ -881,6 +881,7 @@ class Table;
class
BaseString
;
class
NdbEventOperation
;
class
NdbBlob
;
class
NdbReceiver
;
typedef
void
(
*
NdbEventCallback
)(
NdbEventOperation
*
,
Ndb
*
,
void
*
);
...
...
ndb/include/ndbapi/NdbReceiver.hpp
View file @
48f1ee6a
...
...
@@ -22,6 +22,8 @@
#include <ndb_global.h>
class
Ndb
;
class
NdbConnection
;
class
NdbReceiver
{
friend
class
Ndb
;
...
...
ndb/include/ndbapi/NdbScanOperation.hpp
View file @
48f1ee6a
...
...
@@ -32,6 +32,7 @@
#include <NdbOperation.hpp>
class
NdbBlob
;
class
NdbResultSet
;
/**
* @class NdbScanOperation
...
...
ndb/src/common/util/ConfigValues.cpp
View file @
48f1ee6a
#include <ndb_global.h>
#include <ConfigValues.hpp>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <new>
#include <NdbOut.hpp>
#include <NdbTCP.h>
...
...
ndb/src/kernel/blocks/backup/restore/Restore.hpp
View file @
48f1ee6a
...
...
@@ -91,7 +91,7 @@ class TupleS {
private:
friend
class
RestoreDataIterator
;
TableS
*
m_currentTable
;
class
TableS
*
m_currentTable
;
AttributeData
*
allAttrData
;
bool
prepareRecord
(
TableS
&
);
...
...
ndb/src/kernel/blocks/dbtup/Dbtup.hpp
View file @
48f1ee6a
...
...
@@ -35,14 +35,6 @@
#define ZMIN_PAGE_LIMIT_TUPKEYREQ 5
#define ZTUP_VERSION_BITS 15
typedef
bool
(
Dbtup
::*
ReadFunction
)(
Uint32
*
,
AttributeHeader
*
,
Uint32
,
Uint32
);
typedef
bool
(
Dbtup
::*
UpdateFunction
)(
Uint32
*
,
Uint32
,
Uint32
);
#ifdef DBTUP_C
//------------------------------------------------------------------
// Jam Handling:
...
...
@@ -351,6 +343,14 @@ typedef bool (Dbtup::* UpdateFunction)(Uint32*,
class
Dbtup
:
public
SimulatedBlock
{
public:
typedef
bool
(
Dbtup
::*
ReadFunction
)(
Uint32
*
,
AttributeHeader
*
,
Uint32
,
Uint32
);
typedef
bool
(
Dbtup
::*
UpdateFunction
)(
Uint32
*
,
Uint32
,
Uint32
);
// State values
enum
State
{
NOT_INITIALIZED
=
0
,
...
...
ndb/src/mgmsrv/SignalQueue.cpp
View file @
48f1ee6a
...
...
@@ -14,8 +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 "SignalQueue.hpp"
SignalQueue
::
SignalQueue
()
{
...
...
ndb/tools/waiter.cpp
View file @
48f1ee6a
...
...
@@ -15,8 +15,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include <ndb_global.h>
#include <mgmapi.h>
#include <string.h>
#include <NdbMain.h>
#include <NdbOut.hpp>
#include <NdbSleep.h>
...
...
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