This also may be of interest: there is a peropen address created about halfway
down the list
that never gets destroyed.
Andrew Fleckenstein
On Fri, Aug 10, 2012 at 12:49:05AM +0200, Richard Braun wrote:
> Hello,
>
> While investigating an issue in the term server, I think I came across
> a weir
Hi!
libpthread applies some caching of data structures
(cf. __pthread_free_threads; »state == PTHREAD_TERMINATED«) which after a
thread has exited can be re-used for a new one. This also applies to
kernel resources (cf. have_kernel_resources), that may also be re-used.
That is, on Mach, instead o
On Fri, Aug 10, 2012 at 12:49:05AM +0200, Richard Braun wrote:
> The GDB traced I've obtained [1] shows a couple of matching
> create/destroy hooks, but the first (create) call, which trivfs control
> matches ptyctl (po->cntl == ptyctl), is never destroyed. At the same
> time, the last call shows a
Hello,
While investigating an issue in the term server, I think I came across
a weird problem. The issue is that, after logging in and out through
ssh, a pty master will still consider itself open and refuse new
sessions, leading to the exhaustion of all the precreated pairs after
some time.
The