Re: [Gambas-user] Circular references and allocations non freed

2015-09-15 Thread Benoît Minisini
Le 15/09/2015 16:35, martin p cristia a écrit : > How? Can it be sent to the farm? Its huge and has help files, images, > and a .so library > > 'No idea... Can you send your project? > The goal is to reproduce the errors on my system. So send me the project archive, and explain me how to reproduc

Re: [Gambas-user] Circular references and allocations non freed

2015-09-15 Thread martin p cristia
How? Can it be sent to the farm? Its huge and has help files, images, and a .so library 'No idea... Can you send your project? -- Saludos Ing. Martin P Cristia -- ___ Gamba

Re: [Gambas-user] Circular references and allocations non freed

2015-09-14 Thread Benoît Minisini
Le 14/09/2015 20:34, martin p cristia a écrit : > Me neither. > > Can't isolate it. It's a strange errror because those structs are > created only once as global variables. > In example: > ' Gambas module file > ' modEstru > > Public Struct datosSTRUCT > magic As String > proyecto As St

[Gambas-user] Circular references and allocations non freed

2015-09-14 Thread martin p cristia
Me neither. Can't isolate it. It's a strange errror because those structs are created only once as global variables. In example: ' Gambas module file ' modEstru Public Struct datosSTRUCT magic As String proyecto As String descripcion As String totalnudos As Integer total

Re: [Gambas-user] Circular references and allocations non freed

2015-09-12 Thread Jussi Lahtinen
I can't reproduce the problem with that code. Please try to isolate the problem in small runnable project. Jussi On Sat, Sep 12, 2015 at 5:23 PM, martin p cristia wrote: > I hope so: It's like when I ask my wife to prepare breakfast and she > tells me she'll do that after I set the bed, and I

[Gambas-user] Circular references and allocations non freed

2015-09-12 Thread martin p cristia
I hope so: It's like when I ask my wife to prepare breakfast and she tells me she'll do that after I set the bed, and I allways set the bed after breakfast. Still don't know why that comes out. Public Struct unidadesSTRUCT ' TODO long_nombre As String ' metr , cmtr, inch, feet

Re: [Gambas-user] Circular references and allocations non freed

2015-09-11 Thread Benoît Minisini
Le 11/09/2015 19:32, martin p cristia a écrit : > Hi: > > this shows up in the debugger after program ends with me.Close() in the > main window: > > gbx3: warning: circular references detected: > gbx3: 8 flagsSTRUCT > gbx3: 47896 settingsSTRUCT > gbx3: 13038 datosSTRUCT > gbx3: 262848 zoomST

[Gambas-user] Circular references and allocations non freed

2015-09-11 Thread martin p cristia
Hi: this shows up in the debugger after program ends with me.Close() in the main window: gbx3: warning: circular references detected: gbx3: 8 flagsSTRUCT gbx3: 47896 settingsSTRUCT gbx3: 13038 datosSTRUCT gbx3: 262848 zoomSTRUCT gbx3: warning: 323790 allocation(s) non freed. The total al

Re: [Gambas-user] Circular references with latest revision

2015-01-02 Thread Ron
The issue is already present in this revision: $ gbx3 --version 3.6.90 r6754 We do need to go back further in revisions, any suggestions? Is seems to occur when I'm writing some text (log) to an textarea on another form than FMain while closing The very last command in Form_Close Not isolated.

Re: [Gambas-user] Circular references with latest revision

2015-01-02 Thread Benoît Minisini
Le 02/01/2015 11:56, Ron a écrit : > No I didn't de-install it, thinking it will overwrite everything.. like it > did in the past ;P > > There was indeed an older gb.net.smtp.so* set under /usr/lib/gambas3 > After delete and sudo make install of trunk it works ok. > The sudo install was needed othe

Re: [Gambas-user] Circular references with latest revision

2015-01-02 Thread Ron
Btw, my cli DomotiGaServer3 project doesn't display any circular refrences issues anymore with this smtp lib deleted. So it seems circular references are caused (or can be) by crashing of other components? (in this case smtp) The GUI version still has them, maybe cause by another component having

Re: [Gambas-user] Circular references with latest revision

2015-01-02 Thread Ron
No I didn't de-install it, thinking it will overwrite everything.. like it did in the past ;P There was indeed an older gb.net.smtp.so* set under /usr/lib/gambas3 After delete and sudo make install of trunk it works ok. The sudo install was needed otherwise the project couldn't find the component.

Re: [Gambas-user] Circular references with latest revision

2015-01-02 Thread Benoît Minisini
Le 02/01/2015 11:39, Ron a écrit : > It's in gb.net.smtp, I think! > See bug report I just filled, if you de-select gb.net.smtp crash stops.. > > Ron. > Did you carefully uninstall Gambas 3.6.2 before compiling the development version? Because gb.net.smtp is now written entirely in Gambas. So if

Re: [Gambas-user] Circular references with latest revision

2015-01-02 Thread Ron
It's in gb.net.smtp, I think! See bug report I just filled, if you de-select gb.net.smtp crash stops.. Ron. 2015-01-02 11:32 GMT+01:00 Benoît Minisini : > Le 02/01/2015 11:14, Ron a écrit : > > I have the same issue, trying to get it isolated, but didn't succeed yet, > > will let you know when.

Re: [Gambas-user] Circular references with latest revision

2015-01-02 Thread Benoît Minisini
Le 02/01/2015 11:14, Ron a écrit : > I have the same issue, trying to get it isolated, but didn't succeed yet, > will let you know when. > > In 3.6.2 no issue, but with trunk (some revisions ago already) > > $ ./DomotiGa3.gambas > gbx3: warning: circular references detected: > gbx3: 1 FMusic >

Re: [Gambas-user] Circular references with latest revision

2015-01-02 Thread Ron
I have the same issue, trying to get it isolated, but didn't succeed yet, will let you know when. In 3.6.2 no issue, but with trunk (some revisions ago already) $ ./DomotiGa3.gambas gbx3: warning: circular references detected: gbx3: 1 FMusic gbx3: 1 FLogfiles gbx3: 2 FToolBar gbx3:

[Gambas-user] Circular references with latest revision

2014-12-31 Thread Jussi Lahtinen
One of my projects reports circular references when shutdown, but it works perfectly. I haven't get these messages with earlier revisions (not sure from what revision this started exactly). Part of the messages: gbx3: 1 GridViewSelection gbx3: 1 _TreeView_Item gbx3: 1 _GridView_Rows gb

Re: [Gambas-user] Circular references

2011-02-08 Thread Daniel Fuchs
Hello, >ParamDef --> Options --> StopFile --> ParamDef > >Starts from here: > >STATIC PUBLIC SUB Init() > ParamDef.Load(Options.Standard) <--- Comment out and you wont get error message. >END > >Jussi Ok, I've overlooked this. So there is a circular reference between the static parts

Re: [Gambas-user] Circular references

2011-02-08 Thread Daniel Fuchs
Hello, > I won't suppress these messages, because they mean that there is a bug in > the > program, or a bug in Gambas. They just don't prevent the program from > running. > > I just need to be able to reproduce the bug to fix it. So can I run the > project you send without needing extra files?

Re: [Gambas-user] Circular references

2011-02-07 Thread Benoît Minisini
> Hello everybody, > > Sorry, I've added the wrong version. Here's the correct one. (The name has > changed, but never mind.) It is a command-line tool that is part of a > larger project, namely an editor for data related to additive sound > synthesis with the Aeolus organ emulator (see > www.kokk

Re: [Gambas-user] Circular references

2011-02-04 Thread Jussi Lahtinen
el > > ----- original Nachricht > > Betreff: Re: [Gambas-user] Circular references > Gesendet: Mi, 02. Feb 2011 > Von: Benoît Minisini > > > >Hello everybody, > > >is there a way to turn off the messages on circular references > Gambas >

Re: [Gambas-user] Circular references

2011-02-04 Thread Jussi Lahtinen
Strange... I have same system, so I tried again, now it works. Jussi On Fri, Feb 4, 2011 at 16:18, Kevin Fishburne < kevinfishbu...@eightvirtues.com> wrote: > On 02/04/2011 08:56 AM, Jussi Lahtinen wrote: > > I cannot open your project, tar ball seems to be corrupted. > > The attachment extract

Re: [Gambas-user] Circular references

2011-02-04 Thread Kevin Fishburne
On 02/04/2011 08:56 AM, Jussi Lahtinen wrote: > I cannot open your project, tar ball seems to be corrupted. The attachment extracted for me under Ubuntu 10.10. -- Kevin Fishburne Eight Virtues www: http://sales.eightvirtues.com e-mail: sa...@eightvirtues.com phone: (770) 853-6271 -

Re: [Gambas-user] Circular references

2011-02-04 Thread Jussi Lahtinen
> > Daniel > > - original Nachricht ---- > > Betreff: Re: [Gambas-user] Circular references > Gesendet: Mi, 02. Feb 2011 > Von: Benoît Minisini > > > >Hello everybody, > > >is there a way to turn off the messages on circular references > Gambas &

Re: [Gambas-user] Circular references

2011-02-04 Thread Daniel Fuchs
that message appears. It' s the same with other projects I have tried. Maybe you can throw a light on it? Regards, Daniel - original Nachricht Betreff: Re: [Gambas-user] Circular references Gesendet: Mi, 02. Feb 2011 Von: Benoît Minisini > >Hello everybody, > >

Re: [Gambas-user] Circular references

2011-02-02 Thread Benoît Minisini
>Hello everybody, >is there a way to turn off the messages on circular references Gambas > issues on terminating a program? They are very disturbing when you > write a command-line application whose output must be read by other > programs. Regards, >Daniel This message means that th

[Gambas-user] Circular references

2011-02-02 Thread Daniel Fuchs
Hello everybody, is there a way to turn off the messages on circular references Gambas issues on terminating a program? They are very disturbing when you write a command-line application whose output must be read by other programs. Regards, Daniel -