home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _fe9ce0aaf21c98596ec947e9afed86a9 < prev    next >
Text File  |  2000-03-23  |  4KB  |  101 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>Thread::Semaphore - thread-safe semaphores</TITLE>
  5. <LINK REL="stylesheet" HREF="../../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> Thread::Semaphore - thread-safe semaphores</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <LI><A HREF="#functions and methods">FUNCTIONS AND METHODS</A></LI>
  26. </UL>
  27. <!-- INDEX END -->
  28.  
  29. <HR>
  30. <P>
  31. <H1><A NAME="name">NAME</A></H1>
  32. <P>Thread::Semaphore - thread-safe semaphores</P>
  33. <P>
  34. <HR>
  35. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  36. <UL>
  37. <LI>Windows</LI>
  38. </UL>
  39. <HR>
  40. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  41. <PRE>
  42.     use Thread::Semaphore;
  43.     my $s = new Thread::Semaphore;
  44.     $s->up;     # Also known as the semaphore V -operation.
  45.     # The guarded section is here
  46.     $s->down;   # Also known as the semaphore P -operation.</PRE>
  47. <PRE>
  48.     # The default semaphore value is 1.
  49.     my $s = new Thread::Semaphore($initial_value);
  50.     $s->up($up_value);
  51.     $s->down($up_value);</PRE>
  52. <P>
  53. <HR>
  54. <H1><A NAME="description">DESCRIPTION</A></H1>
  55. <P>Semaphores provide a mechanism to regulate access to resources. Semaphores,
  56. unlike locks, aren't tied to particular scalars, and so may be used to
  57. control access to anything you care to use them for.</P>
  58. <P>Semaphores don't limit their values to zero or one, so they can be used to
  59. control access to some resource that may have more than one of. (For
  60. example, filehandles) Increment and decrement amounts aren't fixed at one
  61. either, so threads can reserve or return multiple resources at once.</P>
  62. <P>
  63. <HR>
  64. <H1><A NAME="functions and methods">FUNCTIONS AND METHODS</A></H1>
  65. <DL>
  66. <DT><STRONG><A NAME="item_new">new</A></STRONG><BR>
  67. <DD>
  68. <DT><STRONG>new NUMBER</STRONG><BR>
  69. <DD>
  70. <A HREF="#item_new"><CODE>new</CODE></A> creates a new semaphore, and initializes its count to the passed
  71. number. If no number is passed, the semaphore's count is set to one.
  72. <P></P>
  73. <DT><STRONG><A NAME="item_down">down</A></STRONG><BR>
  74. <DD>
  75. <DT><STRONG>down NUMBER</STRONG><BR>
  76. <DD>
  77. The <A HREF="#item_down"><CODE>down</CODE></A> method decreases the semaphore's count by the specified number,
  78. or one if no number has been specified. If the semaphore's count would drop
  79. below zero, this method will block until such time that the semaphore's
  80. count is equal to or larger than the amount you're <A HREF="#item_down"><CODE>down</CODE></A>ing the
  81. semaphore's count by.
  82. <P></P>
  83. <DT><STRONG><A NAME="item_up">up</A></STRONG><BR>
  84. <DD>
  85. <DT><STRONG>up NUMBER</STRONG><BR>
  86. <DD>
  87. The <A HREF="#item_up"><CODE>up</CODE></A> method increases the semaphore's count by the number specified,
  88. or one if no number's been specified. This will unblock any thread blocked
  89. trying to <A HREF="#item_down"><CODE>down</CODE></A> the semaphore if the <A HREF="#item_up"><CODE>up</CODE></A> raises the semaphore count
  90. above what the <A HREF="#item_down"><CODE>down</CODE></A>s are trying to decrement it by.
  91. <P></P></DL>
  92. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  93. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  94. <STRONG><P CLASS=block> Thread::Semaphore - thread-safe semaphores</P></STRONG>
  95. </TD></TR>
  96. </TABLE>
  97.  
  98. </BODY>
  99.  
  100. </HTML>
  101.