-
Notifications
You must be signed in to change notification settings - Fork 0
/
smp.h
21 lines (16 loc) · 968 Bytes
/
smp.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*****************************************************************************/
/* File: smp.h */
/* */
/* Description: Header file SMP related code. */
/* */
/* Author: Shoily O Rahman <shoily@gmail.com> */
/* */
/* Date: Aug 9, 2020 */
/* */
/*****************************************************************************/
#ifndef SMP_H
#define SMP_H
#define AP_INIT_PHYS_TEXT 0x7c00
//#define DEFINE_PER_CPU_VAR(type, var) type (per_cpu_)##(var)[MAX_NUM_SMPS]
void smp_start();
#endif