Subversion Repositories HelenOS

Rev

Rev 1787 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1787 Rev 1888
Line 30... Line 30...
30
 * @{
30
 * @{
31
 */
31
 */
32
/** @file
32
/** @file
33
 */
33
 */
34
 
34
 
35
 
-
 
36
#ifndef __amd64_PTL_H_
35
#ifndef KERN_amd64_PTL_H_
37
#define __amd64_PTL_H_
36
#define KERN_amd64_PTL_H_
38
 
37
 
39
#define PTL_NO_EXEC       (1<<63)
38
#define PTL_NO_EXEC       (1<<63)
40
#define PTL_ACCESSED      (1<<5)
39
#define PTL_ACCESSED      (1<<5)
41
#define PTL_CACHE_DISABLE (1<<4)
40
#define PTL_CACHE_DISABLE (1<<4)
42
#define PTL_CACHE_THROUGH (1<<3)
41
#define PTL_CACHE_THROUGH (1<<3)
Line 48... Line 47...
48
 
47
 
49
#endif
48
#endif
50
 
49
 
51
 /** @}
50
/** @}
52
 */
51
 */
53
 
-