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
9e1117c3
Commit
9e1117c3
authored
May 08, 2005
by
mskold@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge
parents
c216278a
6f38bd93
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
2 deletions
+10
-2
BitKeeper/etc/logging_ok
BitKeeper/etc/logging_ok
+1
-0
ndb/src/cw/cpcd/Process.cpp
ndb/src/cw/cpcd/Process.cpp
+4
-1
ndb/src/kernel/blocks/ndbfs/AsyncFile.cpp
ndb/src/kernel/blocks/ndbfs/AsyncFile.cpp
+4
-0
sql/ha_blackhole.cc
sql/ha_blackhole.cc
+1
-1
No files found.
BitKeeper/etc/logging_ok
View file @
9e1117c3
...
...
@@ -181,6 +181,7 @@ mwagner@cash.mwagner.org
mwagner@evoq.mwagner.org
mwagner@here.mwagner.org
mwagner@mysql.com
mwagner@ultrafly.mysql.com
mwagner@work.mysql.com
mydev@mysql.com
mysql@home.(none)
...
...
ndb/src/cw/cpcd/Process.cpp
View file @
9e1117c3
...
...
@@ -220,8 +220,11 @@ set_ulimit(const BaseString & pair){
if
(
!
(
list
[
1
].
trim
()
==
"unlimited"
)){
value
=
atoi
(
list
[
1
].
c_str
());
}
#if defined(__INTEL_COMPILER)
struct
rlimit64
rlp
;
#else
struct
rlimit
rlp
;
#endif
#define _RLIMIT_FIX(x) { res = getrlimit(x,&rlp); if(!res){ rlp.rlim_cur = value; res = setrlimit(x, &rlp); }}
if
(
list
[
0
].
trim
()
==
"c"
){
...
...
ndb/src/kernel/blocks/ndbfs/AsyncFile.cpp
View file @
9e1117c3
...
...
@@ -799,7 +799,11 @@ AsyncFile::rmrfReq(Request * request, char * path, bool removePath){
request
->
error
=
errno
;
return
;
}
#if defined(__INTEL_COMPILER)
struct
dirent64
*
dp
;
#else
struct
dirent
*
dp
;
#endif
while
((
dp
=
readdir
(
dirp
))
!=
NULL
){
if
((
strcmp
(
"."
,
dp
->
d_name
)
!=
0
)
&&
(
strcmp
(
".."
,
dp
->
d_name
)
!=
0
))
{
BaseString
::
snprintf
(
path_add
,
(
size_t
)
path_max_copy
,
"%s%s"
,
...
...
sql/ha_blackhole.cc
View file @
9e1117c3
...
...
@@ -19,7 +19,7 @@
#pragma implementation // gcc: Class implementation
#endif
#include
<mysql_priv.h>
#include
"mysql_priv.h"
#ifdef HAVE_BLACKHOLE_DB
#include "ha_blackhole.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