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
90e6e892
Commit
90e6e892
authored
Aug 24, 2004
by
joreland@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Compile fix sol9x86
parent
908ff049
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
11 additions
and
17 deletions
+11
-17
ndb/src/kernel/blocks/grep/Grep.hpp
ndb/src/kernel/blocks/grep/Grep.hpp
+1
-14
ndb/src/kernel/blocks/grep/GrepInit.cpp
ndb/src/kernel/blocks/grep/GrepInit.cpp
+1
-1
ndb/src/mgmsrv/MgmtSrvr.cpp
ndb/src/mgmsrv/MgmtSrvr.cpp
+2
-0
ndb/src/ndbapi/NdbEventOperation.cpp
ndb/src/ndbapi/NdbEventOperation.cpp
+1
-1
ndb/src/ndbapi/NdbScanFilter.cpp
ndb/src/ndbapi/NdbScanFilter.cpp
+2
-1
ndb/src/ndbapi/TransporterFacade.hpp
ndb/src/ndbapi/TransporterFacade.hpp
+2
-0
ndb/test/ndbapi/testIndex.cpp
ndb/test/ndbapi/testIndex.cpp
+2
-0
No files found.
ndb/src/kernel/blocks/grep/Grep.hpp
View file @
90e6e892
...
...
@@ -148,7 +148,7 @@ private:
*/
class
Grep
:
public
SimulatedBlock
//GrepParticipant
{
//
BLOCK_DEFINES(Grep);
BLOCK_DEFINES
(
Grep
);
public:
Grep
(
const
Configuration
&
conf
);
...
...
@@ -519,19 +519,6 @@ public:
typedef
void
(
Grep
::*
ExecSignalLocal1
)
(
Signal
*
signal
);
typedef
void
(
Grep
::
PSCoord
::*
ExecSignalLocal2
)
(
Signal
*
signal
);
typedef
void
(
Grep
::
PSPart
::*
ExecSignalLocal4
)
(
Signal
*
signal
);
void
addRecSignal
(
GlobalSignalNumber
gsn
,
ExecSignalLocal1
f
,
bool
force
=
false
){
addRecSignalImpl
(
gsn
,
(
ExecFunction
)
f
,
force
);
}
void
addRecSignal
(
GlobalSignalNumber
gsn
,
ExecSignalLocal2
f
,
bool
force
=
false
){
addRecSignalImpl
(
gsn
,
(
ExecFunction
)
f
,
force
);
}
void
addRecSignal
(
GlobalSignalNumber
gsn
,
ExecSignalLocal4
f
,
bool
force
=
false
){
addRecSignalImpl
(
gsn
,
(
ExecFunction
)
f
,
force
);
}
};
...
...
ndb/src/kernel/blocks/grep/GrepInit.cpp
View file @
90e6e892
...
...
@@ -132,7 +132,7 @@ Grep::~Grep()
{
}
//
BLOCK_FUNCTIONS(Grep);
BLOCK_FUNCTIONS
(
Grep
);
Grep
::
PSPart
::
PSPart
(
Grep
*
sb
)
:
BlockComponent
(
sb
),
...
...
ndb/src/mgmsrv/MgmtSrvr.cpp
View file @
90e6e892
...
...
@@ -2885,4 +2885,6 @@ MgmtSrvr::setDbParameter(int node, int param, const char * value,
}
template
class
Vector
<
SigMatch
>;
#if __SUNPRO_CC != 0x560
template
bool
SignalQueue
::
waitFor
<
SigMatch
>(
Vector
<
SigMatch
>&
,
SigMatch
*&
,
NdbApiSignal
*&
,
unsigned
);
#endif
ndb/src/ndbapi/NdbEventOperation.cpp
View file @
90e6e892
...
...
@@ -37,7 +37,7 @@
NdbEventOperation
::
NdbEventOperation
(
Ndb
*
theNdb
,
const
char
*
eventName
,
const
int
bufferLength
)
int
bufferLength
)
:
m_impl
(
*
new
NdbEventOperationImpl
(
*
this
,
theNdb
,
eventName
,
bufferLength
))
...
...
ndb/src/ndbapi/NdbScanFilter.cpp
View file @
90e6e892
...
...
@@ -778,7 +778,8 @@ main(void){
#endif
template
class
Vector
<
NdbScanFilterImpl
::
State
>;
#if __SUNPRO_CC != 0x560
template
int
NdbScanFilterImpl
::
cond_col_const
(
Interpreter
::
BinaryCondition
,
Uint32
attrId
,
Uint32
);
template
int
NdbScanFilterImpl
::
cond_col_const
(
Interpreter
::
BinaryCondition
,
Uint32
attrId
,
Uint64
);
#endif
ndb/src/ndbapi/TransporterFacade.hpp
View file @
90e6e892
...
...
@@ -161,7 +161,9 @@ private:
/**
* Block number handling
*/
public:
static
const
unsigned
MAX_NO_THREADS
=
4711
;
private:
struct
ThreadData
{
static
const
Uint32
ACTIVE
=
(
1
<<
16
)
|
1
;
...
...
ndb/test/ndbapi/testIndex.cpp
View file @
90e6e892
...
...
@@ -386,6 +386,7 @@ sync_down(NDBT_Context* ctx){
if
(
threads
){
ctx
->
decProperty
(
"PauseThreads"
);
}
return
0
;
}
int
...
...
@@ -397,6 +398,7 @@ sync_up_and_wait(NDBT_Context* ctx){
if
(
threads
){
ndbout_c
(
"wait completed"
);
}
return
0
;
}
int
...
...
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