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
6f1db965
Commit
6f1db965
authored
Jun 07, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
merge
parents
e90b64cd
e3dc3db6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
7 deletions
+11
-7
BUILD/check-cpu
BUILD/check-cpu
+8
-5
ndb/src/ndbapi/DictCache.cpp
ndb/src/ndbapi/DictCache.cpp
+2
-1
ndb/src/ndbapi/DictCache.hpp
ndb/src/ndbapi/DictCache.hpp
+1
-1
No files found.
BUILD/check-cpu
View file @
6f1db965
...
...
@@ -28,7 +28,7 @@ if test -r /proc/cpuinfo ; then
fi
# parse CPU flags
for
flag
in
`
$cpuinfo
|
grep
'flags'
|
sed
-e
's/^flags.*: //'
`
;
do
for
flag
in
`
$cpuinfo
|
grep
'
^
flags'
|
sed
-e
's/^flags.*: //'
`
;
do
eval
cpu_flag_
$flag
=
yes
done
else
...
...
@@ -52,7 +52,6 @@ fi
# detect CPU shortname as used by gcc options
# this list is not complete, feel free to add further entries
cpu_arg
=
""
case
"
$cpu_family
--
$model_name
"
in
# DEC Alpha
Alpha
*
EV6
*
)
...
...
@@ -98,9 +97,13 @@ case "$cpu_family--$model_name" in
cpu_arg
=
""
;
;;
#
#
*
ppc
*
)
cpu_arg
=
'powerpc'
;;
*
powerpc
*
)
cpu_arg
=
`
echo
$model_name
|
sed
-e
"s/ppc//g"
`
cpu_arg
=
'powerpc'
;;
# unknown
...
...
@@ -111,7 +114,7 @@ esac
if
test
-z
"
$cpu_arg
"
;
then
echo
"BUILD/check-cpu: Oops, could not findout what kind of cpu this machine is using."
echo
"BUILD/check-cpu: Oops, could not find
out what kind of cpu this machine is using."
check_cpu_cflags
=
""
return
fi
...
...
ndb/src/ndbapi/DictCache.cpp
View file @
6f1db965
...
...
@@ -24,7 +24,8 @@
Ndb_local_table_info
*
Ndb_local_table_info
::
create
(
NdbTableImpl
*
table_impl
,
Uint32
sz
)
{
Uint32
tot_size
=
sizeof
(
NdbTableImpl
*
)
+
((
sz
+
7
)
&
~
7
);
// round to Uint64
Uint32
tot_size
=
sizeof
(
Ndb_local_table_info
)
-
sizeof
(
Uint64
)
+
((
sz
+
7
)
&
~
7
);
// round to Uint64
void
*
data
=
malloc
(
tot_size
);
if
(
data
==
0
)
return
0
;
...
...
ndb/src/ndbapi/DictCache.hpp
View file @
6f1db965
...
...
@@ -33,7 +33,7 @@ public:
static
Ndb_local_table_info
*
create
(
NdbTableImpl
*
table_impl
,
Uint32
sz
=
0
);
static
void
destroy
(
Ndb_local_table_info
*
);
NdbTableImpl
*
m_table_impl
;
Uint64
m_local_data
[
1
];
Uint64
m_local_data
[
1
];
// Must be last member. Used to access extra space.
private:
Ndb_local_table_info
(
NdbTableImpl
*
table_impl
);
~
Ndb_local_table_info
();
...
...
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