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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
c8875d56
Commit
c8875d56
authored
May 11, 2004
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Inverted #ifdef on HAVE_MLOCKALL
BitKeeper/etc/logging_ok: Logging to logging@openlogging.org accepted
parent
23b50837
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
BitKeeper/etc/logging_ok
BitKeeper/etc/logging_ok
+1
-0
ndb/src/common/portlib/unix/NdbMem.c
ndb/src/common/portlib/unix/NdbMem.c
+2
-2
No files found.
BitKeeper/etc/logging_ok
View file @
c8875d56
...
...
@@ -112,6 +112,7 @@ mwagner@work.mysql.com
mydev@mysql.com
mysql@home.(none)
mysqldev@build.mysql2.com
ndbdev@ndbmaster.mysql.com
nick@mysql.com
nick@nick.leippe.com
papa@gbichot.local
...
...
ndb/src/common/portlib/unix/NdbMem.c
View file @
c8875d56
...
...
@@ -54,7 +54,7 @@ void NdbMem_Free(void* ptr)
int
NdbMem_MemLockAll
(){
#ifdef HAVE_MLOCKALL
#if
n
def HAVE_MLOCKALL
return
-
1
;
#else
return
mlockall
(
MCL_CURRENT
);
...
...
@@ -62,7 +62,7 @@ int NdbMem_MemLockAll(){
}
int
NdbMem_MemUnlockAll
(){
#ifdef HAVE_MLOCKALL
#if
n
def HAVE_MLOCKALL
return
-
1
;
#else
return
munlockall
();
...
...
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