Jump to content

EurekaLog - MemoryLeak - Unigui


masterdeveloper

Recommended Posts

Good afternoon to everyone in the community,

I'm writing from Brazil.

My Unigui version is "uni-1.0.0.1410".

I need to scan my system, I need to find all the places where there is a memory leak.

To do this, I thought about using EurekaLog.

I ran the test using the UNIGUI demo, located at: ..uniGUI \ Utils \ EurekaLog \ Demos \ Standalone \ test.dproj

To configure EurekaLog, I used the recommended settings at: "..uniGUI \ Utils \ EurekaLog \ uniGUI.eof"

My doubt is:

 

- Is EurekaLog able to find 'MemoryLeak' in an application made in UNIGUI?

So far the conclusion I got was: EurekaLog is able to write 'Acess Violation' log, but not 'MemoryLeak'.

 

Has anyone used EurekaLog + UNIGUI to detect "MemoryLeak"?

 

I got in touch with EurekaLog support, and got the following response:

 

"Is EurekaLog capable of capturing 'MemoryLeak' in systems made in Framework Unigui?

 

Isn't that a Web Services framework like IntraWeb? In such an application it is difficult to measure leaks. This is because web service applications are never shut down. This makes it difficult to tell if a memory allocation is legitimate or if it is an unfreed leak.

 

In a normal EXE we store information about each heap allocation in a database located in RAM. As blocks of heap memory are freed, they are removed from the database. At shutdown we simply make a list of each un-freed memory allocations and the stack trace that produced each one.

 

You will not see a leaks report if there were no actual leaks or the leaks were known ones in the RTL or other places."

 

I thank the attention.

 

att Lucas

Link to comment
Share on other sites

I don't know about EurekaLog, but I use FastMM4

 

 http://sourceforge.net/projects/fastmm/

unzip and add to tools->options

 

 

in project:

uses
  {$IFDEF DEBUG}
  FastMM4 in 'Helper\FastMM4.pas',
  {$ENDIF }
somewhere early in your program. I put it in UniLoginFormCreate:
  System.ReportMemoryLeaksOnShutdown := True;
When you shut down it pops up a report if there is a leak.
  • Upvote 1
Link to comment
Share on other sites

 

Eu não sei sobre EurekaLog, mas eu uso FastMM4

 

 http://sourceforge.net/projects/fastmm/

Descompacte e adicione ferramentas-> opções

 

 

em projeto:

usa
  {$ IFDEF DEBUG}
  FastMM4 em 'Helper \ FastMM4.pas',
  {$ ENDIF}
Em algum lugar no início do seu programa. Coloquei no UniLoginFormCreate:
  System.ReportMemoryLeaksOnShutdown: = True;
Quando você desliga, ele exibe um relatório se houver um vazamento.

 

 

 

 

Hello RobYost, thank you very much for the response. I'll try FastMM4, I'll give you some feedback soon. att Lucas.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...