Author: randyk Date: Sat Apr 2 14:55:54 2005 New Revision: 159842 URL: http://svn.apache.org/viewcvs?view=rev&rev=159842 Log: s/Apache/Apache2/
Modified: perl/modperl/docs/trunk/src/docs/2.0/devel/debug/c.pod Modified: perl/modperl/docs/trunk/src/docs/2.0/devel/debug/c.pod URL: http://svn.apache.org/viewcvs/perl/modperl/docs/trunk/src/docs/2.0/devel/debug/c.pod?view=diff&r1=159841&r2=159842 ============================================================================== --- perl/modperl/docs/trunk/src/docs/2.0/devel/debug/c.pod (original) +++ perl/modperl/docs/trunk/src/docs/2.0/devel/debug/c.pod Sat Apr 2 14:55:54 2005 @@ -310,8 +310,8 @@ =item * Debugging mod_perl XS Extensions The F<code/.debug-modperl-xs> startup script breaks at the -C<mpxs_Apache__Filter_print()> function implemented in -I<xs/Apache/Filter/Apache__Filter.h>. This is an example of debugging +C<mpxs_Apache2__Filter_print()> function implemented in +I<xs/Apache2/Filter/Apache2__Filter.h>. This is an example of debugging code in XS Extensions. For this particular example the complete test case is: @@ -319,7 +319,7 @@ t/TEST -v -run -ping=block filter/api When I<filter/api> test is running it calls -mpxs_Apache__Filter_print() which is when the breakpoint is reached. +mpxs_Apache2__Filter_print() which is when the breakpoint is reached. =item * Debugging code in shared objects created by C<Inline.pm> @@ -525,8 +525,8 @@ use strict; use warnings FATAL => 'all'; - use Apache::RequestRec (); - use Apache::RequestIO (); + use Apache2::RequestRec (); + use Apache2::RequestIO (); use Debug::DumpCore (); use Cwd; @@ -539,8 +539,8 @@ Debug::DumpCore::segv(); -In this script we load the C<Apache::RequestRec>, -C<Apache::RequestIO>, C<Debug::DumpCore> and C<Cwd> modules, then we +In this script we load the C<Apache2::RequestRec>, +C<Apache2::RequestIO>, C<Debug::DumpCore> and C<Cwd> modules, then we acquire the Apache request object and set the HTTP response header. Now we come to the real part -- we get the current working directory, print out the location of the F<core> file that we are --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]