MCPcopy Create free account
hub / github.com/boostorg/build / function_run_actions

Function function_run_actions

src/engine/function.c:3745–3751  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3743static char check_ptr_size2[ sizeof(char *) <= sizeof(void *) ? 1 : -1 ];
3744
3745void function_run_actions( FUNCTION * function, FRAME * frame, STACK * s,
3746 string * out )
3747{
3748 *(string * *)stack_allocate( s, sizeof( string * ) ) = out;
3749 list_free( function_run( function, frame, s ) );
3750 stack_deallocate( s, sizeof( string * ) );
3751}
3752
3753/*
3754 * WARNING: The instruction set is tuned for Jam and is not really generic. Be

Callers 1

cmd_newFunction · 0.85

Calls 4

stack_allocateFunction · 0.85
list_freeFunction · 0.85
function_runFunction · 0.85
stack_deallocateFunction · 0.85

Tested by

no test coverage detected