Re: [Vala] FileStream not closed after going out of scope

2012-09-24 Thread tomw
ok, here's a bit more meat. Hopefully this help to tackle the issue: currently I'm using Vala 0.17.6. Obviously some files are left open as the open file count is increasing (checking with lsof | wc -l ) until I get the span error: Error spawning Uptime process - Failed to create pipe for

Re: [Vala] FileStream not closed after going out of scope

2012-09-24 Thread mar...@saepia.net
try something like this (it is only a demonstration, not working code!) key to solve problem you've encountered are io_stdout = null; io_stderr = null; it unrefs io channel, and releases descriptors private IOChannel io_stderr; private IOChannel

[Vala] [ANNOUNCE] Vala 0.18.0 - Compiler for the GObject type system

2012-09-24 Thread Jürg Billeter
We are pleased to announce version 0.18.0 of Vala, a compiler for the GObject type system. Vala 0.18.0 is now available for download at: http://download.gnome.org/sources/vala/0.18/ Changes since 0.17.7 * Bug fixes. Vala is a programming language that aims to bring modern programming

[Vala] Gee [ANNOUNCE] Libgee 0.8.0 - GObject collection library

2012-09-24 Thread Maciej Piechotka
We are very pleased to announce version 0.8.0 of Libgee, the GObject collection library. Libgee 0.8.0 is now available for download at: http://download.gnome.org/sources/libgee/0.8/ Also please note that now Libgee has its own mailing-list

Re: [Vala] Gee [ANNOUNCE] Libgee 0.8.0 - GObject collection library

2012-09-24 Thread Maciej Piechotka
On Mon, 2012-09-24 at 22:14 +0200, Maciej Piechotka wrote: We are very pleased to announce version 0.8.0 of Libgee, the GObject collection library. Libgee 0.8.0 is now available for download at: http://download.gnome.org/sources/libgee/0.8/ Also please note that now Libgee has its

Re: [Vala] FileStream not closed after going out of scope

2012-09-24 Thread Nor Jaidi Tuah
bool res = Process.spawn_async_with_pipes (null, runme, null,