Commit cf78d2c9 authored by Ben Avison's avatar Ben Avison Committed by ROOL
Browse files

Add symbols for access privileges to Hdr:OSMem

These are the 4 common access privilege values in bits 0-3 of OS_DynamicArea 0
and word 3 of the entries used with OS_Read/SetMemMapEntries. They are
equivalent to the kernel's internal OSAP_* symbols.

Version 6.59. Not tagged
parent 322fd3a6
......@@ -12,9 +12,9 @@
Module_MajorVersion SETS "6.59"
Module_Version SETA 659
Module_MinorVersion SETS ""
Module_Date SETS "07 Aug 2021"
Module_ApplicationDate SETS "07-Aug-21"
Module_Date SETS "01 Jun 2022"
Module_ApplicationDate SETS "01-Jun-22"
Module_ComponentName SETS "Kernel"
Module_FullVersion SETS "6.59"
Module_HelpVersion SETS "6.59 (07 Aug 2021)"
Module_HelpVersion SETS "6.59 (01 Jun 2022)"
END
......@@ -5,17 +5,17 @@
*/
#define Module_MajorVersion_CMHG 6.59
#define Module_MinorVersion_CMHG
#define Module_Date_CMHG 07 Aug 2021
#define Module_Date_CMHG 01 Jun 2022
#define Module_MajorVersion "6.59"
#define Module_Version 659
#define Module_MinorVersion ""
#define Module_Date "07 Aug 2021"
#define Module_Date "01 Jun 2022"
#define Module_ApplicationDate "07-Aug-21"
#define Module_ApplicationDate "01-Jun-22"
#define Module_ComponentName "Kernel"
#define Module_FullVersion "6.59"
#define Module_HelpVersion "6.59 (07 Aug 2021)"
#define Module_HelpVersion "6.59 (01 Jun 2022)"
#define Module_LibraryVersionInfo "6:59"
......@@ -69,6 +69,10 @@ DAReason_Limit * 29 ;end of defined DA reasons
; Dynamic area / page flags
DynAreaFlags_APFull * 0 :SHL: 0 ; user r/w/x, priv r/w/x
DynAreaFlags_APRead * 1 :SHL: 0 ; user r/x, priv r/w/x
DynAreaFlags_APNone * 2 :SHL: 0 ; user none, priv r/w/x
DynAreaFlags_APROM * 3 :SHL: 0 ; user r/x, priv r/x
DynAreaFlags_APBits * 15 :SHL: 0
DynAreaFlags_NotBufferable * 1 :SHL: 4
DynAreaFlags_NotCacheable * 1 :SHL: 5
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment