summaryrefslogtreecommitdiff
path: root/doc/html/interprocess/quick_guide.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/interprocess/quick_guide.html')
-rw-r--r--[-rwxr-xr-x]doc/html/interprocess/quick_guide.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/html/interprocess/quick_guide.html b/doc/html/interprocess/quick_guide.html
index 8d6110ce13..38e3e1b377 100755..100644
--- a/doc/html/interprocess/quick_guide.html
+++ b/doc/html/interprocess/quick_guide.html
@@ -76,7 +76,7 @@
<span class="keyword">if</span><span class="special">(</span><span class="identifier">free_memory</span> <span class="special">&lt;=</span> <span class="identifier">segment</span><span class="special">.</span><span class="identifier">get_free_memory</span><span class="special">())</span>
<span class="keyword">return</span> <span class="number">1</span><span class="special">;</span>
- <span class="comment">//An handle from the base address can identify any byte of the shared </span>
+ <span class="comment">//An handle from the base address can identify any byte of the shared</span>
<span class="comment">//memory segment even if it is mapped in different base addresses</span>
<span class="identifier">managed_shared_memory</span><span class="special">::</span><span class="identifier">handle_t</span> <span class="identifier">handle</span> <span class="special">=</span> <span class="identifier">segment</span><span class="special">.</span><span class="identifier">get_handle_from_address</span><span class="special">(</span><span class="identifier">shptr</span><span class="special">);</span>
<span class="identifier">std</span><span class="special">::</span><span class="identifier">stringstream</span> <span class="identifier">s</span><span class="special">;</span>
@@ -93,7 +93,7 @@
<span class="comment">//Open managed segment</span>
<span class="identifier">managed_shared_memory</span> <span class="identifier">segment</span><span class="special">(</span><span class="identifier">open_only</span><span class="special">,</span> <span class="string">"MySharedMemory"</span><span class="special">);</span>
- <span class="comment">//An handle from the base address can identify any byte of the shared </span>
+ <span class="comment">//An handle from the base address can identify any byte of the shared</span>
<span class="comment">//memory segment even if it is mapped in different base addresses</span>
<span class="identifier">managed_shared_memory</span><span class="special">::</span><span class="identifier">handle_t</span> <span class="identifier">handle</span> <span class="special">=</span> <span class="number">0</span><span class="special">;</span>