Re: Help Please

2006-07-06 Thread Jeff Trawick
On 7/4/06, Tiago Semprebom [EMAIL PROTECTED] wrote: ap_log_error(APLOG_MARK, APLOG_NOTICE, 0, ap_server_conf,IP value: %d,csd-connected); Why the csd don't appear to me like a structure allow-me to access their filds like connected, remote_addr, etc? The structure definition is available only

Help Please

2006-07-04 Thread Tiago Semprebom
Hello,Apache 2.2 / Linux 2.6I'm trying to execute the follow line in the function *listener_thread in worker mpm: ap_log_error(APLOG_MARK, APLOG_NOTICE, 0, ap_server_conf,"IP value: %d",csd-connected);Why the csd don't appear to me like a structure allow-me to access their filds like connected,

Doubt - Help Please

2006-06-28 Thread Tiago Semprebom
Hello,I'm changing the mpm prefork. I'm trying to use the cache_pqueue functions for create a priority queue. But after that I create a pqueue and I trying to insert a intem in my queue, an apache error in run time return to me: child pid 9827 exit signal Segmentation fault (11)I'm using the

Debugging help, please?

2002-01-02 Thread Bruce Korb
Hi, I'm trying to figure out how to use GDB or any debugger from within a cgi program started by Apache under Linux. I tried the obvious: #! /bin/sh DISPLAY=:0.0 xterm -e gdb /path/to/bin/exe to no avail, so I was hoping for a hint here :-). The more simplistic approach of cloning the

Re: Debugging help, please?

2002-01-02 Thread Thomas Eibner
On Wed, Jan 02, 2002 at 02:07:24PM -0800, Bruce Korb wrote: Hi, I'm trying to figure out how to use GDB or any debugger from within a cgi program started by Apache under Linux. I tried the obvious: #! /bin/sh DISPLAY=:0.0 xterm -e gdb /path/to/bin/exe to no avail, so I was

Re: Debugging help, please?

2002-01-02 Thread Bruce Korb
Thomas Eibner wrote: Try recompiling Apache with CFLAGS=-g and then start it in single child mode in gdb: $ gdb /path/to/bin/httpd (gdb) run -X .. does it help? I'll see what I can do tonight, when I get home. Thanks. I'm not really sure I've ever been able to capture a child with

Re: Debugging help, please?

2002-01-02 Thread Thomas Eibner
On Wed, Jan 02, 2002 at 02:24:41PM -0800, Bruce Korb wrote: I'll see what I can do tonight, when I get home. Thanks. I'm not really sure I've ever been able to capture a child with gdb, though. It's easy with UnixWare's Debug, but I'll see what I can do. Thanks! - Bruce That's why you

Re: Debugging help, please?

2002-01-02 Thread Bruce Korb
Thomas Eibner wrote: On Wed, Jan 02, 2002 at 02:24:41PM -0800, Bruce Korb wrote: I'll see what I can do tonight, when I get home. Thanks. I'm not really sure I've ever been able to capture a child with gdb, though. It's easy with UnixWare's Debug, but I'll see what I can do. Thanks!