git.ucc.asn.au
/
tpg
/
acess2.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Added ProcDev/SysFS + Cleanup
[tpg/acess2.git]
/
Kernel
/
arch
/
x86
/
include
/
mp.h
1
/*
2
*/
3
#ifndef _MP_H
4
#define _MP_H
5
6
#define MPTABLE_IDENT ('_'|('M'<<8)|('P'<<16)|('_'<<24))
7
8
typedef struct sMPInfo {
9
Uint Sig; // '_MP_'
10
Uint MPConfig;
11
Uint8 Length;
12
Uint8 Version;
13
Uint8 Checksum;
14
Uint8 Features[5]; // 2-4 are unused
15
} tMPInfo;
16
17
#endif
UCC
git Repository :: git.ucc.asn.au