stas        2003/05/04 19:43:49

  Modified:    src/docs/2.0/user/troubleshooting troubleshooting.pod
  Log:
  a few wording tweaks
  
  Revision  Changes    Path
  1.8       +6 -5      
modperl-docs/src/docs/2.0/user/troubleshooting/troubleshooting.pod
  
  Index: troubleshooting.pod
  ===================================================================
  RCS file: 
/home/cvs/modperl-docs/src/docs/2.0/user/troubleshooting/troubleshooting.pod,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- troubleshooting.pod       5 May 2003 02:41:40 -0000       1.7
  +++ troubleshooting.pod       5 May 2003 02:43:49 -0000       1.8
  @@ -51,18 +51,19 @@
   
     % ipcrm -s 2719745
   
  -Instead of manually removing each, and if you know that none of listed
  -the semaphores is really used (all leaked), you can do:
  +Instead of manually removing each (and sometimes there can be many of
  +them), and if you know that none of listed the semaphores is really
  +used (all leaked), you can try to remove them all:
   
     % ipcs -s | perl -ane '`ipcrm -s $F[1]`'
   
  -httpd-2.0 seems to use key C<0x00000000> for its semaphores, so to
  -remove only those you can use:
  +httpd-2.0 seems to use the key C<0x00000000> for its semaphores on
  +Linux, so to remove only those that match that key you can use:
   
     % ipcs -s | perl -ane '/^0x00000000/ && `ipcrm -s $F[1]`'
   
   Notice that on other platforms the output of C<ipcs -s> might be
  -different, so you may need to apply a different one liner.
  +different, so you may need to apply a different Perl one-liner.
   
   
   =head2 Segmentation Fault when Using DBI
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to