Questions tagged [eoutofresources]

Exception raised when the system is out of resources.

A Delphi exception raised when the system is out of resources.

4 questions
12
votes
8 answers

Hunting down EOutOfResources

Question: Is there an easy way to get a list of types of resources that leak in a running application? IOW by connecting to an application ? I know memproof can do it, but it slows down so much that the application won't even last a minute. Most…
Marco van de Voort
  • 25,628
  • 5
  • 56
  • 89
3
votes
2 answers

Delphi EOutOfResources (GDIError)

I have written an application in which I find ocasionally EOutofResources errors raised by GDIError method of Graphics unit when saving TBitmap32 to a stream. As far as I know it can come from gdi limits or heap limits. i know that for the process…
Paul
  • 219
  • 3
  • 10
0
votes
0 answers

Binary search tree code giving out of resources error

I was trying to create a binary search tree with insert, search and remove functions but when run, the program throwing an error " Killed exit status 137 -- Out Of Resources --" , #include using namespace std; class BST { public: int…
0
votes
0 answers

EOutOfResource RichEdit which change my policy?

I'm working on an multiThreaded server with a VCL form used for maintenance of the system. Each thread can write on a RichEdit of the MainForm to show what it does in real time (If an issue occurs, we must fix this quickly). But, when a thread…
Guillaume
  • 85
  • 9