en:docs:fapi:dosallocshrseg

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
en:docs:fapi:dosallocshrseg [2021/09/16 14:03] prokusheven:docs:fapi:dosallocshrseg [2021/09/18 15:05] (current) prokushev
Line 30: Line 30:
 DosAllocShrSeg allocates a named segment of up to 64KB in size, which is movable and swappable. The segment can be shared by any process that knows the name of the segment. DosAllocShrSeg allocates a named segment of up to 64KB in size, which is movable and swappable. The segment can be shared by any process that knows the name of the segment.
  
-To access the shared segment, another process issues [[DosGetShrSeg]], specifying the segment name. The selector returned by [[DosGetShrSeg]] is the same as the one returned by [[DosAllocShrSeg]].+To access the shared segment, another process issues [[DosGetShrSeg]], specifying the segment name. The selector returned by [[DosGetShrSeg]] is the same as the one returned by DosAllocShrSeg.
  
 The maximum number of segments a process can define with DosAllocShrSeg or access with [[DosGetShrSeg]] is 256. The maximum number of segments a process can define with DosAllocShrSeg or access with [[DosGetShrSeg]] is 256.
Line 66: Line 66:
 </code> </code>
  
-==== Example Code ====+===== Example Code =====
  
 This example requests a segment of memory with 27 bytes named "stock.dat" This example requests a segment of memory with 27 bytes named "stock.dat"