You are viewing a plain text version of this content. The canonical link for it is here.
Posted to docs-cvs@perl.apache.org by st...@apache.org on 2002/06/13 13:14:18 UTC

cvs commit: modperl-docs/src/docs/2.0/devel/debug_c/code .debug-modperl-init .debug-modperl-xs

stas        2002/06/13 04:14:18

  Modified:    src/docs/2.0/devel/debug_c debug_c.pod
               src/docs/2.0/devel/debug_c/code .debug-modperl-init
                        .debug-modperl-xs
  Log:
  'set auto-solib-add 0' must come before 'run' in gdb command files
  
  Revision  Changes    Path
  1.9       +1 -1      modperl-docs/src/docs/2.0/devel/debug_c/debug_c.pod
  
  Index: debug_c.pod
  ===================================================================
  RCS file: /home/cvs/modperl-docs/src/docs/2.0/devel/debug_c/debug_c.pod,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- debug_c.pod	15 May 2002 06:49:19 -0000	1.8
  +++ debug_c.pod	13 Jun 2002 11:14:18 -0000	1.9
  @@ -67,7 +67,7 @@
   
     set auto-solib-add 0
   
  -in I<~/.gdbinit> file.
  +as early as possible in I<~/.gdbinit> file.
   
   With this setting in effect, you can load only the needed dynamic
   libraries with I<sharedlibrary> command. Remember that in order to set
  
  
  
  1.4       +1 -1      modperl-docs/src/docs/2.0/devel/debug_c/code/.debug-modperl-init
  
  Index: .debug-modperl-init
  ===================================================================
  RCS file: /home/cvs/modperl-docs/src/docs/2.0/devel/debug_c/code/.debug-modperl-init,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- .debug-modperl-init	18 Mar 2002 07:27:35 -0000	1.3
  +++ .debug-modperl-init	13 Jun 2002 11:14:18 -0000	1.4
  @@ -10,6 +10,7 @@
   file ~/httpd/worker/bin/httpd
   handle SIGPIPE nostop
   handle SIGPIPE pass
  +set auto-solib-add 0
   
   define myrun
       tbreak main
  @@ -17,7 +18,6 @@
       #  ADJUST: the httpd.conf file's path if needed
       #  ADJUST: add -DPERL_USEITHREADS to debug threaded mpms
       run -d `pwd`/t -f `pwd`/t/conf/httpd.conf -DONE_PROCESS -DAPACHE2
  -    set auto-solib-add 0
       continue
   end
   
  
  
  
  1.4       +1 -1      modperl-docs/src/docs/2.0/devel/debug_c/code/.debug-modperl-xs
  
  Index: .debug-modperl-xs
  ===================================================================
  RCS file: /home/cvs/modperl-docs/src/docs/2.0/devel/debug_c/code/.debug-modperl-xs,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- .debug-modperl-xs	18 Mar 2002 16:58:38 -0000	1.3
  +++ .debug-modperl-xs	13 Jun 2002 11:14:18 -0000	1.4
  @@ -13,6 +13,7 @@
   file /home/stas/httpd/worker/bin/httpd
   handle SIGPIPE nostop
   handle SIGPIPE pass
  +set auto-solib-add 0
   
   define myrun
       tbreak main
  @@ -21,7 +22,6 @@
       # ADJUST: add -DPERL_USEITHREADS to debug threaded mpms
       run -d `pwd`/t -f `pwd`/t/conf/httpd.conf \
       -DONE_PROCESS -DNO_DETATCH -DAPACHE2
  -    set auto-solib-add 0
       continue
   end
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: docs-cvs-unsubscribe@perl.apache.org
For additional commands, e-mail: docs-cvs-help@perl.apache.org