ClickHouse/src/Common/Fiber.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
264 B
C++
Raw Normal View History

2020-12-10 09:30:43 +00:00
#pragma once
2021-09-01 13:46:23 +00:00
/// defines.h should be included before fiber.hpp
/// BOOST_USE_ASAN, BOOST_USE_TSAN and BOOST_USE_UCONTEXT should be correctly defined for sanitizers.
2021-10-02 07:13:14 +00:00
#include <base/defines.h>
2020-12-10 09:30:43 +00:00
#include <boost/context/fiber.hpp>
using Fiber = boost::context::fiber;