blob: f36f4f7955eb5ba2510d26542bd4ec982f3f0e83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/**
* @file
* Multiprocessing
* ===============
*
* smp_start should be entered by the application processors and calls
* the C-function: smp_main() in turn.
* */
void smp_start();
void asm_smp_unlock();
|