fiber
Loading...
Searching...
No Matches
memory.hpp File Reference

Go to the source code of this file.

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.
 
void fiber::memcpy_s (void *dest, size_t destSize, const void *source, size_t sourceSize)
 copies from source to dest so that no more bytes than destSize or sourceSize are written
 
void fiber::memcpy_s (void *destFirst, void *destLast, const void *sourceFirst, const void *sourceLast)
 Copies data from source to dest, without leaving the closed open range [first, last)
 
void fiber::async_memcpy_s (void *dest, size_t destSize, const void *source, size_t sourceSize, Promise< int > promise)
 
void fiber::async_memcpy_s (void *destFirst, void *destLast, const void *sourceFirst, const void *sourceLast, Promise< int > promise)