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

Function function_run_actions

v2/engine/function.c:3646–3652  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3644static char check_ptr_size2[ sizeof(char *) <= sizeof(void *) ? 1 : -1 ];
3645
3646void function_run_actions( FUNCTION * function, FRAME * frame, STACK * s,
3647 string * out )
3648{
3649 *(string * *)stack_allocate( s, sizeof( string * ) ) = out;
3650 list_free( function_run( function, frame, s ) );
3651 stack_deallocate( s, sizeof( string * ) );
3652}
3653
3654/*
3655 * 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