Re: [Vala] Need help in debugging async code

2016-03-20 Thread mar...@saepia.net
Felipe, SIGSTOP is real signal issued by the OS that has stopped the execution. Michele, it seems you were right. I've changed all callback() calls to Idle.add(myfunc.callback) so I am 100% sure that they are async and crashes stopped to occur. I must admit that it was one of the weirdest bugs

[Vala] request to add another example to Projects/Vala/ListExample

2016-03-20 Thread MohanR
Hi, I'm a beginner in vala. I would like to add the following example to this wiki link to make other beginners understand important thing about List. https://wiki.gnome.org/Projects/Vala/ListSample int main(string[] args) { List mylist = new List(); mylist.append("hi");

Re: [Vala] request to add another example to Projects/Vala/ListExample

2016-03-20 Thread MohanR
HI, I screwed-up that comment. sorry for that. I tried to upload a new version of that page, but wiki says I'm not allowed. Please help to update that page. int main(string[] args) { List list0 = new List(); List list1 = new List(); list0.append("helloworld"); /* g_strdup() takes place