Regarding mod_wsgi and fastcgi modules

2013-07-12 Thread kalyan sita
Hi All, I would like to work on mod_wsgi and fastcgi modules of Apache source code But using configure I cannot enable these modules while building the httdp 2.2.22 source code. Can anyone please help me out ? Thanks, kalyan

How to check in code in apache source control

2013-06-18 Thread kalyan sita
Hi all, Can anyone please tell me the steps in checking in my code changes in apache source control. Thanks, kalyan

profiling an apache httpd -X process

2013-05-27 Thread kalyan sita
Hi all, I am able to debug the httpd -X process using eclipse gdb debugger But I am not able to profile the same. I am able to profile only a command line application . Can anyone pl help me out in profile the application with httpd -X process. Thanks, kalyan

apr_atomic functions usage

2013-05-27 Thread kalyan sita
I see that the below functions have specific assembly implementations for os32,ia32 architectures: apr_atomic_add32 apr_atomic_sub32 apr_atomic_inc32 apr_atomic_dec32 apr_atomic_set32 apr_atomic_cas32 apr_atomic_casptr apr_atomic_xchg32 apr_atomic_xchgptr How frequently are these functions used.

Unused files in Apache

2013-05-23 Thread kalyan sita
Hi all, I just came to know that sha2.c is no longer used from Jan Kaluža. Can anyone tell me the list of files that are not used in apache source code. Thanks, kalyan

apr__SHA384_Data invocation

2013-05-22 Thread kalyan sita
Hi all, Can anyone tell me in what case apr__SHA384_Data in sha2.c will be invoked. I am trying to make some optimizations in it. Thanks, kalyan

ap_rgetline_core in protocol.c

2013-05-14 Thread kalyan sita
Hi Chris, Can you please tell me in what way we can debug the ap_rgetline_core in protocol.c. I would like to know how you are calling ap_rgetline_core in protocol.c. Thanks in advance, Kalyan

optimization of apache httpd source code for arm processor

2013-05-14 Thread kalyan sita
Hi All, I am working on optimizing the apache httpd source code for arm processor. Can anyone give me hints of how to do it? Right now I am thinking to optimize assembly level code that is apr_arch_atomic.h etc Thanks, kalyan

Re: Regarding apache server debugging source code

2013-05-14 Thread kalyan sita
perl script is run ? I want to debug other core modules of apache like http_protocol.c , http_request.c , http_main.c. What is the best way of debugging the above modules? Thanks, Kalyan On Sat, May 11, 2013 at 9:04 AM, William A. Rowe Jr. wrote: > On Thu, 9 May 2013 14:08:45 +0530 >

apache Binary called when php is run

2013-05-09 Thread kalyan sita
can you please tell what is the apache binary which gets invoked when we run a php script because I need to debug the source apache modules Thanks, kalyan

Regarding apache server debugging source code

2013-05-09 Thread kalyan sita
I am trying to attach the eclipse debugger to find how different modules of apache source code are invoked. But I could only debug httpd binary and others present in bin directory. What I want is what exactly happens when a php script is deployed in apache server How are different apache handler mo