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
a0048378
Commit
a0048378
authored
May 15, 2018
by
Sergei Petrunia
Committed by
GitHub
May 15, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #753 from shinnok/10.3-macfixes
MDEV-15778: 10.3 macOS build fixes
parents
9ee5406e
6620fbd6
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
storage/innobase/include/sync0policy.h
storage/innobase/include/sync0policy.h
+2
-2
storage/rocksdb/CMakeLists.txt
storage/rocksdb/CMakeLists.txt
+1
-1
No files found.
storage/innobase/include/sync0policy.h
View file @
a0048378
...
...
@@ -50,7 +50,7 @@ class MutexDebug {
m_mutex
(),
m_filename
(),
m_line
(),
m_thread_id
(
os_thread_id_t
(
ULINT_UNDEFINED
)
)
m_thread_id
(
ULINT_UNDEFINED
)
{
/* No op */
}
...
...
@@ -76,7 +76,7 @@ class MutexDebug {
{
m_mutex
=
mutex
;
my_atomic_storelint
(
&
m_thread_id
,
os_thread_get_curr_id
(
));
my_atomic_storelint
(
&
m_thread_id
,
reinterpret_cast
<
ulint
>
(
os_thread_get_curr_id
()
));
m_filename
=
filename
;
...
...
storage/rocksdb/CMakeLists.txt
View file @
a0048378
...
...
@@ -210,7 +210,7 @@ MYSQL_ADD_EXECUTABLE(sst_dump rocksdb/tools/sst_dump.cc COMPONENT rocksdb-engine
TARGET_LINK_LIBRARIES
(
sst_dump rocksdblib
)
MYSQL_ADD_EXECUTABLE
(
mysql_ldb tools/mysql_ldb.cc COMPONENT rocksdb-engine
)
TARGET_LINK_LIBRARIES
(
mysql_ldb rocksdb_tools rocksdb_aux_lib
)
TARGET_LINK_LIBRARIES
(
mysql_ldb rocksdb_tools rocksdb_aux_lib
dbug
)
INSTALL_SCRIPT
(
myrocks_hotbackup COMPONENT rocksdb-engine
)
...
...
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