Post-merge fix: Rdb_io_watchdog doesn't support windows

So disable it there for now.
This commit is contained in:
Sergei Petrunia 2017-07-31 17:34:47 +00:00
commit 61ca3cf524
3 changed files with 26 additions and 3 deletions

View file

@ -34,6 +34,9 @@
namespace myrocks {
// Rdb_io_watchdog does not support Windows ATM.
#ifndef _WIN32
class Rdb_io_watchdog {
const int RDB_IO_WRITE_BUFFER_SIZE = 4096;
const char *const RDB_IO_DUMMY_FILE_NAME = "myrocks_io_watchdog_write_file";
@ -110,4 +113,5 @@ class Rdb_io_watchdog {
Rdb_io_watchdog &operator=(const Rdb_io_watchdog &) = delete;
};
#endif
} // namespace myrocks