libostd/src/concurrency.cc

16 lines
357 B
C++
Raw Normal View History

/* Concurrency C implementation bits.
*
2017-04-06 20:14:52 +02:00
* This file is part of libostd. See COPYING.md for futher information.
*/
#include "ostd/concurrency.hh"
namespace ostd {
namespace detail {
OSTD_EXPORT scheduler *current_scheduler = nullptr;
OSTD_EXPORT thread_local csched_task *current_csched_task = nullptr;
} /* namespace detail */
} /* namespace ostd */