Skip to content
Snippets Groups Projects
Select Git revision
  • 9b0714b24cb140ea630ea6176ae68b2ec6945c6b
  • wip-bootstrap default
  • dualcore
  • ch3/leds
  • ch3/time
  • master
6 results

mpconfigport.h

Blame
  • api_dispatcher.c 253 B
    #include "api_dispatcher.h"
    
    int
    api_init (sys_cfg_sema_t *sys_cfg)
    {
    	int ret;
    
    	ret = SEMA_Init (sys_cfg);
    	/* Set the status of the flag to a valid initial state (right before
    	 * api-calls are made) */
    	ApiCallSpace->returning = 1;
    
    	return ret;
    }