News:

Download Pelles C here: http://www.smorgasbordet.com/pellesc/

Main Menu

What means ODS ?

Started by Alessio, June 09, 2005, 09:15:37 PM

Previous topic - Next topic

Alessio

Hi,

after I've debbuging my app I've seen the following text on debug tab:
    ODS: HEAP[ANAG.exe]:
    ODS: Number of free blocks in arena (47561) does not match number in the free lists (47560)
What means ?

Thanks.

Pelle

ODS = OutputDebugString.

A program (or one of it's libraries) can send "trace output" to the debugger through the Windows API function OutputDebugString. The debugger will just print the string - what the string means is probably best explained by the person who wrote the OutputDebugString call... ;-)

Pelle
/Pelle