diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2020-05-22 23:10:52 +0300 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2020-05-22 23:10:52 +0300 |
commit | 51f0fa4eb375334857f9e03b5262e9cda57f92d2 (patch) | |
tree | 9aa5702f14adecd8441393e91690aa1b2e77fce7 /storage | |
parent | afdd6b1da102d5cef2dcc24ea0636381285d7899 (diff) | |
download | mariadb-git-51f0fa4eb375334857f9e03b5262e9cda57f92d2.tar.gz |
Cleanup: Remove a startup messagebb-10.5-MDEV-22669
The GCC __atomic_ functions were removed already in
commit 2b47f8ff03845f7ffe2fa3bd583dd4123dae2b61,
and starting with MariaDB Server 10.4, InnoDB relies mostly
on C++11 std::atomic.
Diffstat (limited to 'storage')
-rw-r--r-- | storage/innobase/srv/srv0start.cc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/storage/innobase/srv/srv0start.cc b/storage/innobase/srv/srv0start.cc index c234a3c8782..62206fff0cb 100644 --- a/storage/innobase/srv/srv0start.cc +++ b/storage/innobase/srv/srv0start.cc @@ -1160,11 +1160,6 @@ dberr_t srv_start(bool create_new_db) ib::info() << "!!!!!!!! UNIV_IBUF_DEBUG switched on !!!!!!!!!"; #endif -#ifdef _WIN32 - ib::info() << "Mutexes and rw_locks use Windows interlocked functions"; -#else - ib::info() << "Mutexes and rw_locks use GCC atomic builtins"; -#endif ib::info() << MUTEX_TYPE; ib::info() << "Compressed tables use zlib " ZLIB_VERSION |