|
fiber
|
#include <fiber/Memory/memory.hpp>Namespaces | |
| namespace | fiber |
Functions | |
| void | fiber::_memcpy (void *dest, const void *source, size_t count) |
Copies count many bytes from source to dest in a blocking behaviour. | |
| void | fiber::_async_memcpy (void *dest, const void *source, size_t count, Promise< int > promise) |
Copies count many bytes from source to dest in a blocking behaviour. | |
Variables | |
| void(* | fiber::memcpy )(void *dest, const void *source, size_t count) = _memcpy |
| Function that the fiber:: library uses to copy memory. | |
| void(* | fiber::async_memcpy )(void *dest, const void *source, size_t count, Promise< int > promise) = _async_memcpy |
| Function that the fiber library uses to copy memory. | |