Click here to Skip to main content
15,886,873 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: memory allocation failure Pin
CPallini11-Jan-24 1:38
mveCPallini11-Jan-24 1:38 
QuestionHow to read a specified amount bytes from a binary-file with a offset (C++) Pin
P. Mehroof Abid7-Jan-24 3:24
P. Mehroof Abid7-Jan-24 3:24 
AnswerRe: How to read a specified amount bytes from a binary-file with a offset (C++) PinPopular
Mircea Neacsu7-Jan-24 4:13
Mircea Neacsu7-Jan-24 4:13 
GeneralRe: How to read a specified amount bytes from a binary-file with a offset (C++) Pin
Daniel Pfeffer8-Jan-24 9:28
professionalDaniel Pfeffer8-Jan-24 9:28 
Questioncatching a divide-by-zero error Pin
mike74115-Jan-24 6:52
mike74115-Jan-24 6:52 
AnswerRe: catching a divide-by-zero error Pin
Maximilien5-Jan-24 6:54
Maximilien5-Jan-24 6:54 
AnswerRe: catching a divide-by-zero error Pin
jeron15-Jan-24 7:00
jeron15-Jan-24 7:00 
AnswerRe: catching a divide-by-zero error Pin
Greg Utas7-Jan-24 5:45
professionalGreg Utas7-Jan-24 5:45 
The article mentioned in the previous post does it by doing divisions in a function that checks for a zero divisor and throws an exception if it detects one. If you don't want to use such a function, it gets rather complicated.

If you're running on Windows, you need to handle the structured exception STATUS_FLOAT_DIVIDE_BY_ZERO or STATUS_INT_DIVIDE_BY_ZERO. If you're running on Linux, you need to handle the POSIX signal SIGFPE. You can also handle the use of a bad pointer with these techniques. The handler that receives the structured exception or POSIX signal can throw a C++ exception, which you can then catch in the usual way.

The following article goes into the details. But because it also describes a thread framework, you'll have to sift through it to extract the specific code that you need. In particular, see the sections "Receiving a Windows Structured Exception" and "Receiving a POSIX Signal".

Robust C++: Safety Net[^]
Robust Services Core | Software Techniques for Lemmings | Articles
The fox knows many things, but the hedgehog knows one big thing.

AnswerRe: catching a divide-by-zero error Pin
jschell8-Jan-24 5:51
jschell8-Jan-24 5:51 
AnswerRe: catching a divide-by-zero error Pin
Daniel Pfeffer8-Jan-24 9:33
professionalDaniel Pfeffer8-Jan-24 9:33 
Question!file trickiness Pin
mike74114-Jan-24 1:45
mike74114-Jan-24 1:45 
AnswerRe: !file trickiness Pin
Maximilien4-Jan-24 2:12
Maximilien4-Jan-24 2:12 
GeneralRe: !file trickiness Pin
mike74114-Jan-24 2:41
mike74114-Jan-24 2:41 
Questionoutputting Δέλτα Pin
mike74112-Jan-24 16:34
mike74112-Jan-24 16:34 
AnswerRe: outputting Δέλτα Pin
Dave Kreskowiak2-Jan-24 17:56
mveDave Kreskowiak2-Jan-24 17:56 
Questionsizeof not working Pin
mike74111-Jan-24 1:31
mike74111-Jan-24 1:31 
AnswerRe: sizeof not working Pin
Richard MacCutchan1-Jan-24 2:28
mveRichard MacCutchan1-Jan-24 2:28 
AnswerRe: sizeof not working Pin
jeron12-Jan-24 5:38
jeron12-Jan-24 5:38 
GeneralRe: sizeof not working Pin
jschell2-Jan-24 6:34
jschell2-Jan-24 6:34 
GeneralRe: sizeof not working Pin
jeron12-Jan-24 7:11
jeron12-Jan-24 7:11 
QuestionPlease - explain the C++ code / function Pin
Salvatore Terress28-Dec-23 6:09
Salvatore Terress28-Dec-23 6:09 
AnswerRe: Please - explain the C++ code / function Pin
Graham Breach28-Dec-23 8:59
Graham Breach28-Dec-23 8:59 
GeneralRe: Please - explain the C++ code / function Pin
Salvatore Terress29-Dec-23 2:56
Salvatore Terress29-Dec-23 2:56 
GeneralRe: Please - explain the C++ code / function Pin
Graham Breach29-Dec-23 3:50
Graham Breach29-Dec-23 3:50 
GeneralMessage Closed Pin
31-Dec-23 8:49
Salvatore Terress31-Dec-23 8:49 

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.