asio C++ library

PrevUpHomeNext

asio_handler_deallocate

Default deallocation function for handlers.

void asio_handler_deallocate(
    void * pointer,
    std::size_t size,
    ... );

Implement asio_handler_allocate and asio_handler_deallocate for your own handlers to provide custom allocation for the associated temporary objects.

The default implementation of these allocation hooks uses operator new and operator delete.

Requirements

Header: asio/handler_alloc_hook.hpp

Convenience header: asio.hpp


PrevUpHomeNext