mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2025-05-10 18:05:44 +02:00
Also update actions versions to Node 20. This change allows dragonfly to be built on MacOs. However, we still have multiple failing tests on MacOS. Signed-off-by: Roman Gershman <roman@dragonflydb.io>
19 lines
363 B
C++
19 lines
363 B
C++
// Copyright 2023, Roman Gershman. All rights reserved.
|
|
// See LICENSE for licensing terms.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#ifdef __linux__
|
|
#include "util/fibers/uring_file.h"
|
|
#include "util/fibers/uring_proactor.h"
|
|
namespace dfly {
|
|
|
|
using util::fb2::FiberCall;
|
|
using util::fb2::LinuxFile;
|
|
using util::fb2::OpenLinux;
|
|
using util::fb2::OpenRead;
|
|
|
|
} // namespace dfly
|
|
|
|
#endif
|