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
22edd66d
Commit
22edd66d
authored
Feb 06, 2008
by
Rich Prohaska
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix some global namespace pollution
git-svn-id:
file:///svn/tokudb@2118
c7de825b-a66e-492c-adef-691d508d4ae1
parent
cb266238
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/range_tree/linear.c
src/range_tree/linear.c
+1
-1
src/tokuglobals.py
src/tokuglobals.py
+1
-1
No files found.
src/range_tree/linear.c
View file @
22edd66d
...
@@ -17,7 +17,7 @@
...
@@ -17,7 +17,7 @@
#include <stdlib.h>
#include <stdlib.h>
#include <string.h>
#include <string.h>
const
u_int32_t
minlen
=
64
;
static
const
u_int32_t
minlen
=
64
;
/*
/*
* Returns:
* Returns:
...
...
src/tokuglobals.py
View file @
22edd66d
...
@@ -21,7 +21,7 @@ def checkglobals(libname, exceptsymbols, verbose):
...
@@ -21,7 +21,7 @@ def checkglobals(libname, exceptsymbols, verbose):
type = match.group(2)
type = match.group(2)
symbol = match.group(3)
symbol = match.group(3)
if verbose: print type, symbol
if verbose: print type, symbol
match = re.match("
^
toku_
", symbol)
match = re.match("
^
toku_
|^
__toku
", symbol)
if match == None and not exceptsymbols.has_key(symbol):
if match == None and not exceptsymbols.has_key(symbol):
print "
non
toku
symbol
=
", symbol
print "
non
toku
symbol
=
", symbol
badglobals = 1
badglobals = 1
...
...
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