Click here to Skip to main content
15,902,032 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: About RUNTIME_CLASS Pin
Tom Archer19-Jul-03 17:35
Tom Archer19-Jul-03 17:35 
GeneralRe: About RUNTIME_CLASS Pin
FlyingDancer19-Jul-03 18:56
FlyingDancer19-Jul-03 18:56 
QuestionWhen to use Critical Sections in Threads? Pin
Aidman19-Jul-03 12:00
Aidman19-Jul-03 12:00 
AnswerRe: When to use Critical Sections in Threads? Pin
Rickard Andersson2019-Jul-03 12:35
Rickard Andersson2019-Jul-03 12:35 
GeneralRe: When to use Critical Sections in Threads? Pin
peterchen19-Jul-03 23:00
peterchen19-Jul-03 23:00 
GeneralRe: When to use Critical Sections in Threads? Pin
Rickard Andersson2020-Jul-03 0:43
Rickard Andersson2020-Jul-03 0:43 
AnswerRe: When to use Critical Sections in Threads? Pin
Ted Ferenc19-Jul-03 12:58
Ted Ferenc19-Jul-03 12:58 
AnswerRe: When to use Critical Sections in Threads? Pin
Neville Franks19-Jul-03 13:03
Neville Franks19-Jul-03 13:03 
Whenever > 1 thread needs read or write access to a resource (memory/disk/database record whatever) you typically need to synchronize the access. Depending on the resource it may be possible for > 1 thread to have simultaneous read access, but there may be a bigger picture issue such as one thread writing to the resource when others are reading it. You then need to go a level higher and see whether transactions are needed etc.

Bottom line is you need to go read a good book or two on multithreaded design and implementation and all that entails. Multithreading is a whole world unto itself where deadlocks occur at the blink of an eye. And debuging multithreaded apps is way harder than single threaded apps.

Neville Franks, Author of ED for Windows. Free Trial at www.getsoft.com
AnswerRe: When to use Critical Sections in Threads? Pin
Ryan_Roberts19-Jul-03 13:18
Ryan_Roberts19-Jul-03 13:18 
AnswerRe: When to use Critical Sections in Threads? Pin
Aidman19-Jul-03 14:13
Aidman19-Jul-03 14:13 
QuestionSaving progress in ListCtrl? Pin
spaced_out19-Jul-03 10:19
spaced_out19-Jul-03 10:19 
AnswerRe: Saving progress in ListCtrl? Pin
Tom Archer19-Jul-03 11:48
Tom Archer19-Jul-03 11:48 
AnswerRe: Saving progress in ListCtrl? Pin
wb19-Jul-03 21:16
wb19-Jul-03 21:16 
AnswerRe: Saving progress in ListCtrl? Pin
Michael P Butler20-Jul-03 4:32
Michael P Butler20-Jul-03 4:32 
QuestionHow to display "Properties" system dialog for multiple files? Pin
s_k19-Jul-03 9:48
s_k19-Jul-03 9:48 
AnswerRe: How to display "Properties" system dialog for multiple files? Pin
s_k26-Jul-03 1:36
s_k26-Jul-03 1:36 
GeneralDynamic set of QuickInfo Pin
Kristian Kratzenstein19-Jul-03 8:51
Kristian Kratzenstein19-Jul-03 8:51 
GeneralTooltip messages for CPropertySheet Pin
haritadala19-Jul-03 8:50
haritadala19-Jul-03 8:50 
GeneralRe: Tooltip messages for CPropertySheet Pin
John R. Shaw20-Jul-03 11:52
John R. Shaw20-Jul-03 11:52 
GeneralDialog Boxes in Classes Pin
Zak_19-Jul-03 8:36
Zak_19-Jul-03 8:36 
GeneralRe: Dialog Boxes in Classes Pin
John R. Shaw19-Jul-03 9:26
John R. Shaw19-Jul-03 9:26 
GeneralRe: Dialog Boxes in Classes Pin
Bob Stanneveld20-Jul-03 7:21
Bob Stanneveld20-Jul-03 7:21 
GeneralArrays of buttons on a dialogue box Pin
Trollslayer19-Jul-03 6:28
mentorTrollslayer19-Jul-03 6:28 
GeneralFound an article that does it Pin
Trollslayer19-Jul-03 6:41
mentorTrollslayer19-Jul-03 6:41 
GeneralRe: Arrays of buttons on a dialogue box Pin
Ryan Binns19-Jul-03 20:03
Ryan Binns19-Jul-03 20:03 

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.