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

Function actionlist

v2/engine/rules.c:310–320  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

308 */
309
310ACTIONS * actionlist( ACTIONS * chain, ACTION * action )
311{
312 ACTIONS * const actions = (ACTIONS *)BJAM_MALLOC( sizeof( ACTIONS ) );
313 actions->action = action;
314 ++action->refs;
315 if ( !chain ) chain = actions;
316 else chain->tail->next = actions;
317 chain->tail = actions;
318 actions->next = 0;
319 return chain;
320}
321
322static SETTINGS * settings_freelist;
323

Callers 1

evaluate_ruleFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected