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
c54d36b0
Commit
c54d36b0
authored
Nov 02, 2004
by
tomas@poseidon.ndb.mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge tulin@bk-internal.mysql.com:/home/bk/mysql-4.1
into poseidon.ndb.mysql.com:/home/tomas/mysql-4.1
parents
383bfc4f
ded5595c
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
20 additions
and
23 deletions
+20
-23
configure.in
configure.in
+2
-2
ndb/src/common/editline/sysunix.c
ndb/src/common/editline/sysunix.c
+1
-1
ndb/src/common/util/basestring_vsnprintf.c
ndb/src/common/util/basestring_vsnprintf.c
+6
-2
ndb/src/kernel/vm/Emulator.hpp
ndb/src/kernel/vm/Emulator.hpp
+1
-0
ndb/src/mgmsrv/Services.cpp
ndb/src/mgmsrv/Services.cpp
+8
-14
ndb/src/ndbapi/NdbDictionaryImpl.cpp
ndb/src/ndbapi/NdbDictionaryImpl.cpp
+2
-4
No files found.
configure.in
View file @
c54d36b0
...
...
@@ -1039,8 +1039,8 @@ case $SYSTEM_TYPE in
;;
*
hpux11.
*
)
echo
"Enabling workarounds for hpux 11"
CFLAGS
=
"
$CFLAGS
-DHPUX11 -DHAVE_BROKEN_PREAD -DDONT_USE_FINITE -DHAVE_BROKEN_GETPASS -DNO_FCNTL_NONBLOCK -DDO_NOT_REMOVE_THREAD_WRAPPERS -DHAVE_BROKEN_PTHREAD_COND_TIMEDWAIT"
CXXFLAGS
=
"
$CXXFLAGS
-DHPUX11 -DHAVE_BROKEN_PREAD -DDONT_USE_FINITE -D_INCLUDE_LONGLONG -DNO_FCNTL_NONBLOCK -DDO_NOT_REMOVE_THREAD_WRAPPERS -DHAVE_BROKEN_PTHREAD_COND_TIMEDWAIT"
CFLAGS
=
"
$CFLAGS
-DHPUX11
-DSNPRINTF_RETURN_TRUNC
-DHAVE_BROKEN_PREAD -DDONT_USE_FINITE -DHAVE_BROKEN_GETPASS -DNO_FCNTL_NONBLOCK -DDO_NOT_REMOVE_THREAD_WRAPPERS -DHAVE_BROKEN_PTHREAD_COND_TIMEDWAIT"
CXXFLAGS
=
"
$CXXFLAGS
-DHPUX11
-DSNPRINTF_RETURN_TRUNC
-DHAVE_BROKEN_PREAD -DDONT_USE_FINITE -D_INCLUDE_LONGLONG -DNO_FCNTL_NONBLOCK -DDO_NOT_REMOVE_THREAD_WRAPPERS -DHAVE_BROKEN_PTHREAD_COND_TIMEDWAIT"
if
test
"
$with_named_thread
"
=
"no"
then
echo
"Using --with-named-thread=-lpthread"
...
...
ndb/src/common/editline/sysunix.c
View file @
c54d36b0
...
...
@@ -139,7 +139,7 @@ rl_add_slash(char *path, char *p, size_t p_len)
struct
stat
Sb
;
if
(
stat
(
path
,
&
Sb
)
>=
0
)
{
in
t
len
=
strlen
(
p
);
size_
t
len
=
strlen
(
p
);
if
(
len
+
1
<
p_len
)
{
p
[
len
]
=
S_ISDIR
(
Sb
.
st_mode
)
?
'/'
:
' '
;
p
[
len
+
1
]
=
0
;
...
...
ndb/src/common/util/basestring_vsnprintf.c
View file @
c54d36b0
...
...
@@ -35,7 +35,11 @@ basestring_snprintf(char *str, size_t size, const char *format, ...)
#define BASESTRING_VSNPRINTF_FUNC(a,b,c,d) vsnprintf(a,b,c,d)
#else
#define SNPRINTF_RETURN_TRUNC
#define BASESTRING_VSNPRINTF_FUNC(a,b,c,d) my_vsnprintf(a,b,c,d)
/* #define BASESTRING_VSNPRINTF_FUNC(a,b,c,d) my_vsnprintf(a,b,c,d)
* we would like to use my_vsnprintf but it does not have enough features
* Let's hope vsnprintf works anyways
*/
#define BASESTRING_VSNPRINTF_FUNC(a,b,c,d) vsnprintf(a,b,c,d)
extern
int
my_vsnprintf
(
char
*
str
,
size_t
size
,
const
char
*
format
,
va_list
ap
);
#endif
#ifdef SNPRINTF_RETURN_TRUNC
...
...
@@ -46,7 +50,7 @@ basestring_vsnprintf(char *str, size_t size, const char *format, va_list ap)
{
int
ret
=
BASESTRING_VSNPRINTF_FUNC
(
str
,
size
,
format
,
ap
);
#ifdef SNPRINTF_RETURN_TRUNC
if
(
ret
==
size
-
1
)
{
if
(
ret
==
size
-
1
||
ret
==
-
1
)
{
ret
=
BASESTRING_VSNPRINTF_FUNC
(
basestring_vsnprintf_buf
,
sizeof
(
basestring_vsnprintf_buf
),
format
,
ap
);
...
...
ndb/src/kernel/vm/Emulator.hpp
View file @
c54d36b0
...
...
@@ -25,6 +25,7 @@
//
//===========================================================================
#include <kernel_types.h>
#include <TransporterRegistry.hpp>
extern
class
JobTable
globalJobTable
;
extern
class
TimeQueue
globalTimeQueue
;
...
...
ndb/src/mgmsrv/Services.cpp
View file @
c54d36b0
...
...
@@ -773,8 +773,10 @@ MgmApiSession::setClusterLogLevel(Parser<MgmApiSession>::Context &,
/* XXX should use constants for this value */
if
(
level
>
15
)
{
errorString
.
assign
(
"Invalied loglevel"
);
goto
error
;
m_output
->
println
(
"set cluster loglevel reply"
);
m_output
->
println
(
"result: Invalid loglevel"
);
m_output
->
println
(
""
);
return
;
}
EventSubscribeReq
req
;
...
...
@@ -786,11 +788,6 @@ MgmApiSession::setClusterLogLevel(Parser<MgmApiSession>::Context &,
m_output
->
println
(
"set cluster loglevel reply"
);
m_output
->
println
(
"result: Ok"
);
m_output
->
println
(
""
);
return
;
error:
m_output
->
println
(
"set cluster loglevel reply"
);
m_output
->
println
(
"result: %s"
,
errorString
.
c_str
());
m_output
->
println
(
""
);
}
void
...
...
@@ -807,8 +804,10 @@ MgmApiSession::setLogLevel(Parser<MgmApiSession>::Context &,
/* XXX should use constants for this value */
if
(
level
>
15
)
{
errorString
.
assign
(
"Invalied loglevel"
);
goto
error
;
m_output
->
println
(
"set loglevel reply"
);
m_output
->
println
(
"result: Invalid loglevel"
,
errorString
.
c_str
());
m_output
->
println
(
""
);
return
;
}
EventSubscribeReq
req
;
...
...
@@ -820,11 +819,6 @@ MgmApiSession::setLogLevel(Parser<MgmApiSession>::Context &,
m_output
->
println
(
"set loglevel reply"
);
m_output
->
println
(
"result: Ok"
);
m_output
->
println
(
""
);
return
;
error:
m_output
->
println
(
"set loglevel reply"
);
m_output
->
println
(
"result: %s"
,
errorString
.
c_str
());
m_output
->
println
(
""
);
}
void
...
...
ndb/src/ndbapi/NdbDictionaryImpl.cpp
View file @
c54d36b0
...
...
@@ -47,15 +47,13 @@
* Column
*/
NdbColumnImpl
::
NdbColumnImpl
()
:
NdbDictionary
::
Column
(
*
this
),
m_facade
(
this
),
m_attrId
(
-
1
)
:
NdbDictionary
::
Column
(
*
this
),
m_attrId
(
-
1
),
m_facade
(
this
)
{
init
();
}
NdbColumnImpl
::
NdbColumnImpl
(
NdbDictionary
::
Column
&
f
)
:
NdbDictionary
::
Column
(
*
this
),
m_facade
(
&
f
),
m_attrId
(
-
1
)
:
NdbDictionary
::
Column
(
*
this
),
m_attrId
(
-
1
),
m_facade
(
&
f
)
{
init
();
}
...
...
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