0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-29 20:28:52 +02:00

ircd::ctx: Remove local typedef to use outer ircd:: typedef.

This commit is contained in:
Jason Volk 2018-12-07 10:12:29 -08:00
parent 0866cf4f7f
commit 4e01d2c0a4
2 changed files with 10 additions and 11 deletions

View file

@ -34,9 +34,6 @@
///
namespace ircd::ctx
{
using std::chrono::steady_clock;
using time_point = steady_clock::time_point;
struct ctx;
IRCD_EXCEPTION(ircd::error, error)

View file

@ -33,12 +33,12 @@ inline namespace this_ctx
template<class E = timeout, class duration> throw_overload<E, duration> wait(const duration &);
// Returns false if notified; true if time point reached, timeout thrown on throw_overloads
bool wait_until(const time_point &tp, const std::nothrow_t &);
template<class E> nothrow_overload<E, bool> wait_until(const time_point &tp);
template<class E = timeout> throw_overload<E> wait_until(const time_point &tp);
bool wait_until(const steady_point &tp, const std::nothrow_t &);
template<class E> nothrow_overload<E, bool> wait_until(const steady_point &tp);
template<class E = timeout> throw_overload<E> wait_until(const steady_point &tp);
// Ignores notes. Throws if interrupted.
void sleep_until(const time_point &tp);
void sleep_until(const steady_point &tp);
template<class duration> void sleep(const duration &);
void sleep(const int &secs);
}}
@ -74,10 +74,10 @@ ircd::ctx::this_ctx::sleep(const duration &d)
/// interruption point.
template<class E>
ircd::throw_overload<E>
ircd::ctx::this_ctx::wait_until(const time_point &tp)
ircd::ctx::this_ctx::wait_until(const steady_point &tp)
{
if(wait_until<std::nothrow_t>(tp))
throw E();
throw E{};
}
/// Wait for a notification until a point in time. If there is a notification
@ -85,7 +85,7 @@ ircd::ctx::this_ctx::wait_until(const time_point &tp)
/// interruption point. this is not noexcept.
template<class E>
ircd::nothrow_overload<E, bool>
ircd::ctx::this_ctx::wait_until(const time_point &tp)
ircd::ctx::this_ctx::wait_until(const steady_point &tp)
{
return wait_until(tp, std::nothrow);
}
@ -100,7 +100,9 @@ ircd::throw_overload<E, duration>
ircd::ctx::this_ctx::wait(const duration &d)
{
const auto ret(wait<std::nothrow_t>(d));
return ret <= duration(0)? throw E() : ret;
return ret <= duration(0)?
throw E{}:
ret;
}
/// Wait for a notification for some amount of time. This function returns