Displaying 4 results from an estimated 4 matches for "child_exit".
2017 Nov 07
2
Problem with getting restapi up&running
...n: False
user: 0
limit_request_line: 4094
access_log_format: %(h)s %(l)s %(u)s %(t)s "%(r)s" %(s)s %(b)s "%(f)s"
"%(a)s"
certfile: None
on_starting: <function on_starting at 0x2842aa0>
post_worker_init: <function post_worker_init at 0x2847230>
child_exit: <function child_exit at 0x2847a28>
worker_exit: <function worker_exit at 0x2847b90>
paste: None
default_proc_name: main:app
syslog_addr: udp://localhost:514
syslog_prefix: None
ciphers: TLSv1
worker_abort: <function worker_abort at 0x2847500>
loglevel: debug
bin...
2024 Sep 06
9
[Bug 3729] New: the new sshd does not work under the supervision of inetd
https://bugzilla.mindrot.org/show_bug.cgi?id=3729
Bug ID: 3729
Summary: the new sshd does not work under the supervision of
inetd
Product: Portable OpenSSH
Version: 9.8p1
Hardware: ARM
OS: Linux
Status: NEW
Severity: major
Priority: P5
Component: sshd
2003 Apr 18
0
[Fwd: Xinetd 2.3.10 Memory Leaks]
...> conn_free( cp, 1 );
>
> return;
>
> }
>
> CONN_CLOSE(cp);
>
> }
>
> }
>
>
>
> The above code has several problems. One background piece of information
>
> is that the sigchld handler in xinetd (child_exit->server_end->
>
> svc_postmortem) normally frees the connection's data. If the ret_code is
>
> not OK, the connection was only closed. This is little more than close(cp-
>
> >co_descriptor); This does not free cp since sigchld will not be called.
>
> It w...
2013 Jan 03
20
[PATCH] Switch to poll in xenconsoled's io loop.
The original implementation utilies select(). In Linux select() typically
supports up to 1024 file descriptors. This can be a problem when user tries to
boot up many guests. Switching to poll() has minimum impact on existing code
and has better scalibility.
Up to 8192 file descriptors are supported in the current implementation.
Signed-off-by: Wei Liu <wei.liu2@citrix.com>
---