aboutsummaryrefslogtreecommitdiff
path: root/kern/smp.h
Commit message (Collapse)AuthorAgeFilesLines
* smp: Add generic smp pseudoclassAlmudena Garcia2020-09-191-0/+24
This pseudoclass generalize the initialization and access of SMP data, allowing expands it to other architectures. In x86, the functions calls to apic functions. *kern/smp.c: Source file. Implements a interface to load the SMP functions for the current architecture. *kern/smp.h: Header file. Add declaration for smp_data structure. *i386/i386/smp.c: Source file. Implements a set of functions to manage the SMP actions in i386 *i386/i386/smp.h: Header file. Add declarations for SMP functions in i386.