<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/book.sem.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'uk',
  ),
  'this' => 
  array (
    0 => 'intro.sem.php',
    1 => 'Вступ',
    2 => 'Вступ',
  ),
  'up' => 
  array (
    0 => 'book.sem.php',
    1 => 'Semaphore',
  ),
  'prev' => 
  array (
    0 => 'book.sem.php',
    1 => 'Semaphore',
  ),
  'next' => 
  array (
    0 => 'sem.setup.php',
    1 => 'Встановлення/налаштування',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/sem/book.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="intro.sem" class="preface">
  <h1 class="title">Вступ</h1>
  <p class="para">
   These modules provide wrappers for the System V IPC family of functions.
   It includes semaphores, shared memory and inter-process messaging (IPC).
  </p>
  <p class="para">
   Semaphores may be used to provide exclusive access to
   resources on the current machine, or to limit the number of
   processes that may simultaneously use a resource.
  </p>
  <p class="para">
   This module provides also shared memory functions using System V
   shared memory. Shared memory may be used to provide access to
   global variables. Different httpd-daemons and even other programs
   (such as Perl, C, ...) are able to access this data to provide a
   global data-exchange. Remember, that shared memory is NOT safe
   against simultaneous access. Use semaphores for synchronization.
   <table class="doctable table">
    <caption><strong>Limits of Shared Memory by the Unix OS</strong></caption>
    
     <tbody class="tbody">
      <tr>
       <td>SHMMAX</td> 
       <td>max size of shared memory, normally 131072 bytes</td>
      </tr>

      <tr>
       <td>SHMMIN</td>
       <td>minimum size of shared memory, normally 1 byte</td>
      </tr>

      <tr>
       <td>SHMMNI</td> 
       <td>
        max amount of shared memory segments on a system,
        normally 100
       </td>
      </tr>

      <tr>
       <td>SHMSEG</td>
       <td>
        max amount of shared memory segments per process, normally 6
       </td>
      </tr>

     </tbody>
    
   </table>

  </p>
  <p class="para">
   The messaging functions may be used to send and receive messages to/from
   other processes. They provide a simple and effective means of exchanging
   data between processes, without the need for setting up an alternative
   using Unix domain sockets.
  </p>
  <blockquote class="note"><p><strong class="note">Зауваження</strong>: 
   <span class="simpara">
    Only the shared memory functions and <span class="function"><a href="function.ftok.php" class="function">ftok()</a></span> are available
    on Windows. Neither semaphores nor inter-process messaging functions are
    supported on that platform.
   </span>
  </p></blockquote>
 </div><?php manual_footer($setup); ?>