search for: anon_fil

Displaying 2 results from an estimated 2 matches for "anon_fil".

Did you mean: anon_file
2016 Nov 13
1
Memory leak with tons of closed connections
...void file_close(Rconnection con) { Rfileconn this = con->private; - if(con->isopen && strcmp(con->description, "stdin")) - con->status = fclose(this->fp); + con->status = fclose(this->fp); con->isopen = FALSE; #ifdef Win32 if(this->anon_file) unlink(this->name); On Fri, Nov 11, 2016 at 1:12 PM, G?bor Cs?rdi <csardi.gabor at gmail.com> wrote: > On Fri, Nov 11, 2016 at 12:46 PM, Gergely Dar?czi > <daroczig at rapporter.net> wrote: > [...] >>> I've changed the above to *print* the gc() result every 1...
2016 Nov 11
2
Memory leak with tons of closed connections
On Fri, Nov 11, 2016 at 12:08 PM, Martin Maechler <maechler at stat.math.ethz.ch> wrote: >>>>>> Gergely Dar?czi <daroczig at rapporter.net> >>>>>> on Thu, 10 Nov 2016 16:48:12 +0100 writes: > > > Dear All, > > I'm developing an R application running inside of a Java daemon on > > multiple threads, and