Some context
In Boost 1.57 f_context
& make_fcontext
looks like this
// fcontext.hpp:
typedef void* fcontext_t;
fcontext_t BOOST_CONTEXT_CALLDECL make_fcontext( void * sp, std::size_t size, void (* fn)( intptr_t) );
How should I manage the resource returned by make_fcontext()
?
I have read the docs, asked on IRC and looked at the examples, but could not find anything. Is there a need to release/delete/close this resource?