diff options
author | Sergei Golubchik <serg@mariadb.org> | 2015-05-05 00:06:23 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2015-05-05 00:06:23 +0200 |
commit | 70a3fec4008dffa68493996e83e56c7786fd0bdf (patch) | |
tree | d2a9feae1a89298a1a15ccb865b1d77f4de04c9f /storage/innobase/os | |
parent | 0b4f5060bbdccea4d9a3c04437aa7e97fbfc1b30 (diff) | |
parent | 085297a1214814cd7eacbab2afb24c7a08bfc40e (diff) | |
download | mariadb-git-70a3fec4008dffa68493996e83e56c7786fd0bdf.tar.gz |
InnoDB-5.6.24
Diffstat (limited to 'storage/innobase/os')
-rw-r--r-- | storage/innobase/os/os0sync.cc | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/storage/innobase/os/os0sync.cc b/storage/innobase/os/os0sync.cc index 451ba5285e3..03c53848832 100644 --- a/storage/innobase/os/os0sync.cc +++ b/storage/innobase/os/os0sync.cc @@ -1,6 +1,6 @@ /***************************************************************************** -Copyright (c) 1995, 2011, Oracle and/or its affiliates. All Rights Reserved. +Copyright (c) 1995, 2015, Oracle and/or its affiliates. All Rights Reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software @@ -234,24 +234,6 @@ os_cond_broadcast( } /*********************************************************//** -Wakes one thread waiting for condition variable */ -UNIV_INLINE -void -os_cond_signal( -/*==========*/ - os_cond_t* cond) /*!< in: condition variable. */ -{ - ut_a(cond); - -#ifdef __WIN__ - ut_a(wake_condition_variable != NULL); - wake_condition_variable(cond); -#else - ut_a(pthread_cond_signal(cond) == 0); -#endif -} - -/*********************************************************//** Destroys condition variable */ UNIV_INLINE void |