Click here to Skip to main content
15,885,366 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionRe: Disable All Breakpoints In Visual C++ 6.0 Pin
bleedingfingers7-Oct-10 2:36
bleedingfingers7-Oct-10 2:36 
AnswerRe: Disable All Breakpoints In Visual C++ 6.0 Pin
Moak7-Oct-10 4:15
Moak7-Oct-10 4:15 
QuestionMemory usage Pin
sonualex6-Oct-10 21:15
sonualex6-Oct-10 21:15 
AnswerRe: Memory usage Pin
Cedric Moonen6-Oct-10 21:29
Cedric Moonen6-Oct-10 21:29 
AnswerRe: Memory usage [modified] Pin
Aescleal6-Oct-10 22:51
Aescleal6-Oct-10 22:51 
QuestionRe: Memory usage Pin
sonualex12-Oct-10 23:37
sonualex12-Oct-10 23:37 
QuestionProgram crashes, log entries and map files Pin
Interrobang6-Oct-10 6:58
Interrobang6-Oct-10 6:58 
AnswerRe: Program crashes, log entries and map files Pin
Stephen Hewitt6-Oct-10 18:27
Stephen Hewitt6-Oct-10 18:27 
Forget map files. Change the compiler and linker settings so that debug information (a .pdb file) is generated for the release version in addition to the debug version. From memory, in MSVC6 the steps are something like this:

  1. Go the project settings.
  2. Select the "Release" configuration.
  3. In the project settings on the "C++" tab choose "Debug" from the "Category" combo.
  4. Select the option to generate debug information (choose the option that doesn't include "Edit and Continue", that's used in the release build).
  5. Select the "Link" tab.
  6. Choose "Debug" from the "Category" combo.
  7. Select generate debug information (.pdb) and make sure "Separate Types" is NOT ticked (as it causes problems).


Now when you build keep the generated .pdb file (or user Microsoft's Symbol Server[^] to keep them for you), it's like a map file except useful. Using map files is common but misguided advice. You can use WinDBG[^] to extract information from the .pdb file or, more to the point, to process a crash dump file from your clients or that you get from Windows Error Reporting[^]
 
Steve

QuestionSOLVED memcpy size over 1 MB fails - unhandled exeption / access violation ( VC++ 6.0 ) [modified] Pin
Vaclav_6-Oct-10 2:56
Vaclav_6-Oct-10 2:56 
QuestionRe: memcpy size over 1 MB fails - unhandled exeption / access violation ( VC++ 6.0 ) Pin
David Crow6-Oct-10 3:25
David Crow6-Oct-10 3:25 
AnswerRe: memcpy size over 1 MB fails - unhandled exeption / access violation ( VC++ 6.0 ) Pin
Vaclav_6-Oct-10 3:33
Vaclav_6-Oct-10 3:33 
GeneralRe: memcpy size over 1 MB fails - unhandled exeption / access violation ( VC++ 6.0 ) PinPopular
David Crow6-Oct-10 4:00
David Crow6-Oct-10 4:00 
GeneralRe: memcpy size over 1 MB fails - unhandled exeption / access violation ( VC++ 6.0 ) Pin
Vaclav_6-Oct-10 4:41
Vaclav_6-Oct-10 4:41 
AnswerRe: memcpy size over 1 MB fails - unhandled exeption / access violation ( VC++ 6.0 ) Pin
David Crow6-Oct-10 4:42
David Crow6-Oct-10 4:42 
GeneralRe: memcpy size over 1 MB fails - unhandled exeption / access violation ( VC++ 6.0 ) Pin
Luc Pattyn6-Oct-10 4:44
sitebuilderLuc Pattyn6-Oct-10 4:44 
GeneralRe: memcpy size over 1 MB fails - unhandled exeption / access violation ( VC++ 6.0 ) Pin
Moak6-Oct-10 6:45
Moak6-Oct-10 6:45 
GeneralRe: memcpy size over 1 MB fails - unhandled exeption / access violation ( VC++ 6.0 ) Pin
Vaclav_6-Oct-10 7:40
Vaclav_6-Oct-10 7:40 
QuestionRe: memcpy size over 1 MB fails - unhandled exeption / access violation ( VC++ 6.0 ) Pin
David Crow6-Oct-10 8:20
David Crow6-Oct-10 8:20 
AnswerRe: memcpy size over 1 MB fails - unhandled exeption / access violation ( VC++ 6.0 ) Pin
Luc Pattyn6-Oct-10 8:39
sitebuilderLuc Pattyn6-Oct-10 8:39 
GeneralRe: memcpy size over 1 MB fails - unhandled exeption / access violation ( VC++ 6.0 ) Pin
Moak6-Oct-10 9:10
Moak6-Oct-10 9:10 
GeneralRe: memcpy size over 1 MB fails - unhandled exeption / access violation ( VC++ 6.0 ) Pin
Richard MacCutchan6-Oct-10 9:25
mveRichard MacCutchan6-Oct-10 9:25 
GeneralRe: memcpy size over 1 MB fails - unhandled exeption / access violation ( VC++ 6.0 ) Pin
Luc Pattyn6-Oct-10 9:54
sitebuilderLuc Pattyn6-Oct-10 9:54 
GeneralRe: memcpy size over 1 MB fails - unhandled exeption / access violation ( VC++ 6.0 ) SOLVED Pin
Vaclav_6-Oct-10 11:17
Vaclav_6-Oct-10 11:17 
GeneralRe: memcpy size over 1 MB fails - unhandled exeption / access violation ( VC++ 6.0 ) SOLVED Pin
Richard MacCutchan6-Oct-10 11:51
mveRichard MacCutchan6-Oct-10 11:51 
GeneralRe: memcpy size over 1 MB fails - unhandled exeption / access violation ( VC++ 6.0 ) Pin
Richard MacCutchan6-Oct-10 11:52
mveRichard MacCutchan6-Oct-10 11:52 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.