diff options
author | Kartik Agaram <vc@akkartik.com> | 2019-02-18 22:43:01 -0800 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2019-02-18 22:43:01 -0800 |
commit | e99038ea514a8703b170689d5a0730c8d2e542e7 (patch) | |
tree | 841f1bb5b26c8110ba272dcae9d6a84d083c783e /html/subx/examples/ex12.subx.html | |
parent | 8188bbbc9408322c18cdc2d1049126900abf793c (diff) | |
download | mu-e99038ea514a8703b170689d5a0730c8d2e542e7.tar.gz |
4982
Diffstat (limited to 'html/subx/examples/ex12.subx.html')
-rw-r--r-- | html/subx/examples/ex12.subx.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/html/subx/examples/ex12.subx.html b/html/subx/examples/ex12.subx.html index 88e939cb..02792b12 100644 --- a/html/subx/examples/ex12.subx.html +++ b/html/subx/examples/ex12.subx.html @@ -86,17 +86,17 @@ if ('onhashchange' in window) { <span id="L29" class="LineNr">29 </span><span class="subxComment"># various constants used here were found in the Linux sources (search for file mman-common.h)</span> <span id="L30" class="LineNr">30 </span><span class="SpecialChar">Mmap-new-segment</span>: <span class="subxComment"># type mmap_arg_struct</span> <span id="L31" class="LineNr">31 </span> <span class="subxComment"># addr</span> -<span id="L32" class="LineNr">32 </span> 00 00 00 00 <span class="subxComment"># null</span> +<span id="L32" class="LineNr">32 </span> 0/imm32 <span id="L33" class="LineNr">33 </span> <span class="subxComment"># len</span> -<span id="L34" class="LineNr">34 </span> 00 01 00 00 <span class="subxComment"># 0x1000</span> +<span id="L34" class="LineNr">34 </span> 0x100/imm32 <span id="L35" class="LineNr">35 </span> <span class="subxComment"># protection flags</span> -<span id="L36" class="LineNr">36 </span> 03 00 00 00 <span class="subxComment"># PROT_READ | PROT_WRITE</span> +<span id="L36" class="LineNr">36 </span> 3/imm32 <span class="subxComment"># PROT_READ | PROT_WRITE</span> <span id="L37" class="LineNr">37 </span> <span class="subxComment"># sharing flags</span> -<span id="L38" class="LineNr">38 </span> 22 00 00 00 <span class="subxComment"># MAP_PRIVATE | MAP_ANONYMOUS</span> +<span id="L38" class="LineNr">38 </span> 0x22/imm32 <span class="subxComment"># MAP_PRIVATE | MAP_ANONYMOUS</span> <span id="L39" class="LineNr">39 </span> <span class="subxComment"># fd</span> -<span id="L40" class="LineNr">40 </span> ff ff ff ff <span class="subxComment"># -1 since MAP_ANONYMOUS is specified</span> +<span id="L40" class="LineNr">40 </span> -1/imm32 <span class="subxComment"># since MAP_ANONYMOUS is specified</span> <span id="L41" class="LineNr">41 </span> <span class="subxComment"># offset</span> -<span id="L42" class="LineNr">42 </span> 00 00 00 00 <span class="subxComment"># 0 since MAP_ANONYMOUS is specified</span> +<span id="L42" class="LineNr">42 </span> 0/imm32 <span class="subxComment"># since MAP_ANONYMOUS is specified</span> <span id="L43" class="LineNr">43 </span> <span id="L44" class="LineNr">44 </span><span class="subxS2Comment"># . . vim:nowrap:textwidth=0</span> </pre> |