Click here to Skip to main content
15,922,894 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Win. Task Manager question for VC++. HELP! Pin
Blake Miller6-May-05 10:40
Blake Miller6-May-05 10:40 
GeneralIntegrating a VC++ project with Windows XP Pin
Anonymous6-May-05 9:38
Anonymous6-May-05 9:38 
GeneralRe: Integrating a VC++ project with Windows XP Pin
Maximilien6-May-05 9:50
Maximilien6-May-05 9:50 
GeneralRe: Integrating a VC++ project with Windows XP Pin
Blake Miller6-May-05 10:14
Blake Miller6-May-05 10:14 
GeneralRe: Integrating a VC++ project with Windows XP Pin
Anonymous6-May-05 10:45
Anonymous6-May-05 10:45 
GeneralSending e-mail through VC++ lotus notes client Pin
NLMurthy6-May-05 9:11
NLMurthy6-May-05 9:11 
Generalperforming calculations faster Pin
Mridang Agarwalla6-May-05 9:06
Mridang Agarwalla6-May-05 9:06 
GeneralRe: performing calculations faster Pin
Blake Miller6-May-05 10:18
Blake Miller6-May-05 10:18 
What is it your program does that it does not consume more CPU time? If you had a tight loop performing only math, then your program should be using a LOT of the CPU time as the foreground process. In this case it does not make sense to split into multiple threads, you would just be wasting more time switching the context. Do you output to screen or wait for user or something? Typically you only multiple thread if you need to handle user input while calculating something, or your program responds to user input while checking mail, or waiting for characters from the modem, or reading and writing to the files on the hard drive or something else like that, where there are distinct different actions, some of which involve 'waiting' for soemthing. Your program seems very straight forward and should probably remain single threaded.

GeneralRe: performing calculations faster Pin
Mridang Agarwalla6-May-05 17:07
Mridang Agarwalla6-May-05 17:07 
GeneralRe: performing calculations faster Pin
PJ Arends6-May-05 11:17
professionalPJ Arends6-May-05 11:17 
Generalstatus of FTP Pin
NLMurthy6-May-05 9:02
NLMurthy6-May-05 9:02 
GeneralRe: status of FTP Pin
RaajaOfSelf6-May-05 9:29
RaajaOfSelf6-May-05 9:29 
GeneralRe: status of FTP Pin
Ravi Bhavnani7-May-05 3:57
professionalRavi Bhavnani7-May-05 3:57 
Generalfunction returning CRecordset Pin
scoroop6-May-05 8:27
scoroop6-May-05 8:27 
GeneralRe: function returning CRecordset Pin
David Crow6-May-05 10:02
David Crow6-May-05 10:02 
GeneralRe: function returning CRecordset Pin
scoroop6-May-05 15:31
scoroop6-May-05 15:31 
GeneralRe: function returning CRecordset Pin
David Crow6-May-05 16:33
David Crow6-May-05 16:33 
GeneralRe: function returning CRecordset Pin
scoroop7-May-05 0:34
scoroop7-May-05 0:34 
GeneralRe: function returning CRecordset Pin
David Crow7-May-05 7:59
David Crow7-May-05 7:59 
GeneralRe: function returning CRecordset Pin
scoroop7-May-05 8:20
scoroop7-May-05 8:20 
GeneralRe: function returning CRecordset Pin
David Crow7-May-05 10:47
David Crow7-May-05 10:47 
GeneralRe: function returning CRecordset Pin
scoroop7-May-05 11:28
scoroop7-May-05 11:28 
GeneralRe: function returning CRecordset Pin
David Crow9-May-05 2:17
David Crow9-May-05 2:17 
GeneralRe: function returning CRecordset Pin
scoroop9-May-05 5:49
scoroop9-May-05 5:49 
Generalpassing a callback function pointer to a DLL within an MFC application Pin
DKaiser6-May-05 6:47
DKaiser6-May-05 6:47 

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.