Lines Matching refs:cpuid
65 …rr_t esp_register_freertos_idle_hook_for_cpu(esp_freertos_idle_cb_t new_idle_cb, UBaseType_t cpuid) in esp_register_freertos_idle_hook_for_cpu() argument
67 if(cpuid >= portNUM_PROCESSORS){ in esp_register_freertos_idle_hook_for_cpu()
72 if (idle_cb[cpuid][n]==NULL) { in esp_register_freertos_idle_hook_for_cpu()
73 idle_cb[cpuid][n]=new_idle_cb; in esp_register_freertos_idle_hook_for_cpu()
87 …rr_t esp_register_freertos_tick_hook_for_cpu(esp_freertos_tick_cb_t new_tick_cb, UBaseType_t cpuid) in esp_register_freertos_tick_hook_for_cpu() argument
89 if(cpuid >= portNUM_PROCESSORS){ in esp_register_freertos_tick_hook_for_cpu()
94 if (tick_cb[cpuid][n]==NULL) { in esp_register_freertos_tick_hook_for_cpu()
95 tick_cb[cpuid][n]=new_tick_cb; in esp_register_freertos_tick_hook_for_cpu()
109 …id esp_deregister_freertos_idle_hook_for_cpu(esp_freertos_idle_cb_t old_idle_cb, UBaseType_t cpuid) in esp_deregister_freertos_idle_hook_for_cpu() argument
111 if(cpuid >= portNUM_PROCESSORS){ in esp_deregister_freertos_idle_hook_for_cpu()
116 if(idle_cb[cpuid][n] == old_idle_cb) idle_cb[cpuid][n] = NULL; in esp_deregister_freertos_idle_hook_for_cpu()
130 …id esp_deregister_freertos_tick_hook_for_cpu(esp_freertos_tick_cb_t old_tick_cb, UBaseType_t cpuid) in esp_deregister_freertos_tick_hook_for_cpu() argument
132 if(cpuid >= portNUM_PROCESSORS){ in esp_deregister_freertos_tick_hook_for_cpu()
137 if(tick_cb[cpuid][n] == old_tick_cb) tick_cb[cpuid][n] = NULL; in esp_deregister_freertos_tick_hook_for_cpu()