Rev 1702 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1702 | Rev 1780 | ||
|---|---|---|---|
| Line 38... | Line 38... | ||
| 38 | #include <arch/types.h> |
38 | #include <arch/types.h> |
| 39 | 39 | ||
| 40 | /* |
40 | /* |
| 41 | * On SPARC, Context means the same thing as ASID trough out the kernel. |
41 | * On SPARC, Context means the same thing as ASID trough out the kernel. |
| 42 | */ |
42 | */ |
| 43 | typedef __u16 asid_t; |
43 | typedef uint16_t asid_t; |
| 44 | 44 | ||
| 45 | #define ASID_MAX_ARCH 8191 /* 2^13 - 1 */ |
45 | #define ASID_MAX_ARCH 8191 /* 2^13 - 1 */ |
| 46 | 46 | ||
| 47 | #endif |
47 | #endif |
| 48 | 48 | ||