Click here to Skip to main content
15,890,186 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: how to delete arrays to save memery space c++ Pin
CPallini4-May-10 9:40
mveCPallini4-May-10 9:40 
GeneralRe: how to delete arrays to save memery space c++ Pin
mrby1234-May-10 9:50
mrby1234-May-10 9:50 
GeneralRe: how to delete arrays to save memery space c++ Pin
CPallini4-May-10 10:25
mveCPallini4-May-10 10:25 
GeneralRe: how to delete arrays to save memery space c++ Pin
mrby1234-May-10 10:53
mrby1234-May-10 10:53 
GeneralRe: how to delete arrays to save memery space c++ Pin
mrby1234-May-10 10:33
mrby1234-May-10 10:33 
AnswerOpenMP dilemma Pin
Chesnokov Yuriy3-May-10 5:17
professionalChesnokov Yuriy3-May-10 5:17 
GeneralRe: OpenMP dilemma Pin
Chris Losinger3-May-10 5:39
professionalChris Losinger3-May-10 5:39 
GeneralRe: For critical sections, #pragma omp single can be used as barriers. Pin
Software_Developer3-May-10 6:09
Software_Developer3-May-10 6:09 
For critical sections, #pragma omp single can be used as barriers.
In a parallel region, there are often sections of code where limiting access to a single thread is desired,
such as when writing to a file in the middle of a parallel region.
In many of these cases it does not matter which thread executes this code,
as long as it is just one thread. OpenMP has #pragma omp single to do this.
#pragma omp parallel
{
    if(omp_get_thread_num() > 3) 
    {
        #pragma omp single    // May not be accessed by all threads
        x++;
    }
}


OpenMP features for multithreaded applications

http://msdn.microsoft.com/en-us/magazine/cc163717.aspx
QuestionHow to get my Application's coordinates? Pin
Software20073-May-10 4:25
Software20073-May-10 4:25 
AnswerRe: How to get my Application's coordinates? Pin
Rajesh R Subramanian3-May-10 4:29
professionalRajesh R Subramanian3-May-10 4:29 
GeneralRe: How to get my Application's coordinates? Pin
Software20073-May-10 4:46
Software20073-May-10 4:46 
QuestionResize controls in c++ win 32 Pin
arun_pk3-May-10 3:44
arun_pk3-May-10 3:44 
AnswerRe: Resize controls in c++ win 32 Pin
Cedric Moonen3-May-10 4:18
Cedric Moonen3-May-10 4:18 
GeneralRe: Resize controls in c++ win 32 Pin
arun_pk3-May-10 4:29
arun_pk3-May-10 4:29 
AnswerRe: Automatic resizing controls Pin
Software_Developer3-May-10 5:13
Software_Developer3-May-10 5:13 
AnswerRe: Resize controls in c++ win 32 Pin
David Crow3-May-10 5:46
David Crow3-May-10 5:46 
AnswerRe: Resize controls in c++ win 32 Pin
Randor 3-May-10 6:34
professional Randor 3-May-10 6:34 
GeneralRe: Resize controls in c++ win 32 Pin
Maximilien3-May-10 7:07
Maximilien3-May-10 7:07 
GeneralRe: Resize controls in c++ win 32 Pin
Randor 3-May-10 8:04
professional Randor 3-May-10 8:04 
GeneralRe: Resize controls in c++ win 32 Pin
David Crow3-May-10 8:37
David Crow3-May-10 8:37 
GeneralRe: Resize controls in c++ win 32 Pin
Randor 3-May-10 9:03
professional Randor 3-May-10 9:03 
GeneralRe: Resize controls in c++ win 32 Pin
David Crow3-May-10 9:11
David Crow3-May-10 9:11 
GeneralRe: Resize controls in c++ win 32 Pin
Randor 3-May-10 9:30
professional Randor 3-May-10 9:30 
GeneralRe: Resize controls in c++ win 32 Pin
David Crow3-May-10 10:29
David Crow3-May-10 10:29 
QuestionI want to display a Images or Icons on second column using CListCtrl Pin
D.Manivelan3-May-10 3:18
D.Manivelan3-May-10 3:18 

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.