Lindenii Project Forge
Login

hare-aio

Asynchronous I/O event loops for Hare

Warning: Due to various recent migrations, viewing non-HEAD refs may be broken.

/aio/errors.ha (raw)

use errors;

// There are no available submission queue entries on the submission queue.
// You should probably create a larger loop.
export type full = !void;

// Buffer pool use was configured for a [[submission]], but there are no buffers
// available.
export type nobuffers = !void;

// All errors which may be returned by this module.
export type error = !(errors::error | nobuffers | full);