2016-09-05 17:53:36 +02:00
|
|
|
/*
|
|
|
|
* charybdis: oh just a little chat server
|
|
|
|
* ctx.h: userland context switching (stackful coroutines)
|
|
|
|
*
|
|
|
|
* Copyright (C) 2016 Charybdis Development Team
|
|
|
|
* Copyright (C) 2016 Jason Volk <jason@zemos.net>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice is present in all copies.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
|
|
|
|
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
|
|
|
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#define HAVE_IRCD_CTX_H
|
|
|
|
|
2016-10-21 01:56:16 +02:00
|
|
|
//
|
|
|
|
// This is the public interface to the userspace context system. No 3rd party
|
|
|
|
// symbols are included from here. This file is included automatically in stdinc.h
|
|
|
|
// and you do not have to include it manually.
|
|
|
|
//
|
|
|
|
// There are two primary objects at work in the context system:
|
|
|
|
//
|
|
|
|
// `struct context` <ircd/ctx/context.h>
|
|
|
|
// Public interface emulating std::thread; included automatically from here.
|
|
|
|
// To spawn and manipulate contexts, deal with this object.
|
|
|
|
//
|
2016-11-29 16:23:38 +01:00
|
|
|
// `struct ctx` (ircd/ctx.cc)
|
|
|
|
// Internal implementation of the context. This is not included here.
|
2016-10-21 01:56:16 +02:00
|
|
|
// Several low-level functions are exposed for library creators. This file is usually
|
|
|
|
// included when boost/asio.hpp is also included and calls are actually made into boost.
|
|
|
|
//
|
|
|
|
|
2016-09-05 17:53:36 +02:00
|
|
|
namespace ircd {
|
|
|
|
namespace ctx {
|
|
|
|
|
2016-09-10 07:23:07 +02:00
|
|
|
using std::chrono::steady_clock;
|
|
|
|
using time_point = steady_clock::time_point;
|
|
|
|
|
2016-09-05 17:53:36 +02:00
|
|
|
IRCD_EXCEPTION(ircd::error, error)
|
|
|
|
IRCD_EXCEPTION(error, interrupted)
|
2016-09-07 23:39:41 +02:00
|
|
|
IRCD_EXCEPTION(error, timeout)
|
|
|
|
|
2016-10-21 01:56:16 +02:00
|
|
|
} // namespace ctx
|
|
|
|
} // namespace ircd
|
2016-09-05 17:53:36 +02:00
|
|
|
|
2016-11-29 16:23:38 +01:00
|
|
|
#include "ctx/ctx.h"
|
2016-10-21 01:56:16 +02:00
|
|
|
#include "ctx/context.h"
|
|
|
|
#include "ctx/prof.h"
|
|
|
|
#include "ctx/dock.h"
|
2016-11-01 11:56:31 +01:00
|
|
|
#include "ctx/queue.h"
|
2016-10-21 01:56:16 +02:00
|
|
|
#include "ctx/mutex.h"
|
|
|
|
#include "ctx/shared_state.h"
|
|
|
|
#include "ctx/promise.h"
|
|
|
|
#include "ctx/future.h"
|
|
|
|
#include "ctx/async.h"
|
|
|
|
#include "ctx/pool.h"
|
|
|
|
#include "ctx/ole.h"
|
2016-09-05 17:53:36 +02:00
|
|
|
|
2016-11-29 16:23:38 +01:00
|
|
|
namespace ircd {
|
2016-09-10 07:23:07 +02:00
|
|
|
|
2016-11-29 16:23:38 +01:00
|
|
|
using ctx::timeout;
|
|
|
|
using ctx::context;
|
2017-04-03 05:51:47 +02:00
|
|
|
using ctx::sleep;
|
2016-09-05 17:53:36 +02:00
|
|
|
|
2016-11-29 16:23:38 +01:00
|
|
|
} // namespace ircd
|