Changeset 384 for trunk/hal


Ignore:
Timestamp:
Aug 16, 2017, 1:34:30 PM (7 years ago)
Author:
max@…
Message:

Fix a pretty dumb mistake I made in my last commit.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/hal/generic/hal_gpt.h

    r383 r384  
    4848 ***************************************************************************************/
    4949
    50 #define GPT_MAPPED      0x0000  /*! PTE is mapped                                 */
    51 #define GPT_SMALL       0x0001  /*! PTE is a small page                           */
    52 #define GPT_READABLE    0x0002  /*! PTE is readable                               */
    53 #define GPT_WRITABLE    0x0004  /*! PTE is writable                               */
    54 #define GPT_EXECUTABLE  0x0008  /*! PTE is executable                             */
    55 #define GPT_CACHABLE    0x0010  /*! PTE can be cached                             */
    56 #define GPT_USER        0x0020  /*! PTE is user accessible                        */
    57 #define GPT_DIRTY       0x0040  /*! PTE has been "recently" written               */
    58 #define GPT_ACCESSED    0x0080  /*! PTE has been "recently" accessed              */
    59 #define GPT_GLOBAL      0x0100  /*! PTE is kept in TLB at context switch          */
    60 #define GPT_COW         0x0200  /*! PTE must be copied on write                   */
    61 #define GPT_SWAP        0x0400  /*! PTE swapped on disk (not implemented yet)     */
    62 #define GPT_LOCKED      0x0800  /*! PTE is protected against concurrent access    */
     50#define GPT_MAPPED      0x0001  /*! PTE is mapped                                 */
     51#define GPT_SMALL       0x0002  /*! PTE is a small page                           */
     52#define GPT_READABLE    0x0004  /*! PTE is readable                               */
     53#define GPT_WRITABLE    0x0008  /*! PTE is writable                               */
     54#define GPT_EXECUTABLE  0x0010  /*! PTE is executable                             */
     55#define GPT_CACHABLE    0x0020  /*! PTE can be cached                             */
     56#define GPT_USER        0x0040  /*! PTE is user accessible                        */
     57#define GPT_DIRTY       0x0080  /*! PTE has been "recently" written               */
     58#define GPT_ACCESSED    0x0100  /*! PTE has been "recently" accessed              */
     59#define GPT_GLOBAL      0x0200  /*! PTE is kept in TLB at context switch          */
     60#define GPT_COW         0x0400  /*! PTE must be copied on write                   */
     61#define GPT_SWAP        0x0800  /*! PTE swapped on disk (not implemented yet)     */
     62#define GPT_LOCKED      0x1000  /*! PTE is protected against concurrent access    */
    6363
    6464/****************************************************************************************
Note: See TracChangeset for help on using the changeset viewer.