Dr. Dobb's is part of the Informa Tech Division of Informa PLC

This site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC's registered office is 5 Howick Place, London SW1P 1WG. Registered in England and Wales. Number 8860726.


Channels ▼
RSS

Configuring VC++ Multithreaded Memory Management


May 2000/Configuring VC++ Multithreaded Memory Management/Listing 1

Listing 1: heaptest.c — Multithreaded memory tester.

#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <process.h>
#include <stdio.h>
#include <stdlib.h>

/* compile with cl /MT heaptest.c */

/* to switch to the system heap issue the following command
   before starting heaptest from the same command line
   set __MSVCRT_HEAP_SELECT=__GLOBAL_HEAP_SELECTED,1 */

/* structure transfers variables to the worker threads */
typedef struct tData
{
    int maximumLength;
    int allocCount;
} threadData;

void printUsage(char** argv)
{
    fprintf(stderr,"Wrong number of parameters.\nUsage:\n");
    fprintf(stderr,"%s threadCount maxAllocLength allocCount\n\n",
        argv[0]);
    exit(1);
}

unsigned __stdcall workerThread(void* myThreadData)
{
    int count;
    threadData* myData;
    char* dummy;

    srand(GetTickCount()*GetCurrentThreadId());
    myData=(threadData*)myThreadData;

    /* now let us do the real work */
    for(count=0;count<myData->allocCount;count++)
    {
        dummy=(char*)malloc((rand()%myData->maximumLength)+1);
        free(dummy);
    }
    _endthreadex(0);

    /* to satisfy compiler */
    return 0;
}

int main(int argc,char** argv)
{
    int threadCount;
    int count;
    threadData actData;
    HANDLE* threadHandles;
    DWORD startTime;
    DWORD stopTime;
    DWORD retValue;
    unsigned dummy;

    /* check parameters */
    if(argc<4 || argc>4)
        printUsage(argv);

    /* get parameters for this run */
    threadCount=atoi(argv[1]);
    if(threadCount>64)
        threadCount=64;
    actData.maximumLength=atoi(argv[2])-1;
    actData.allocCount=atoi(argv[3]);

    threadHandles=(HANDLE*)malloc(threadCount*sizeof(HANDLE));

    printf("Test run with %d simultaneous threads:\n",threadCount);
    startTime=GetTickCount();
    for(count=0;count<threadCount;count++)
    {
        threadHandles[count]=(HANDLE)_beginthreadex(0,0,
            &workerThread, (void*)&actData,0,&dummy);
        if(threadHandles[count]==(HANDLE)-1)
        {
            fprintf(stderr,"Error starting worker threads.\n");
            exit(2);
        }
    }

    /* wait until all threads are done */
    retValue=WaitForMultipleObjects(threadCount,threadHandles
        ,1,INFINITE);
    stopTime=GetTickCount();
    printf("Total time elapsed was: %d milliseconds",
        stopTime-startTime);
    printf(" for %d alloc operations.\n",
        actData.allocCount*threadCount);
    /* cleanup */
    for(count=0;count<threadCount;count++)
        CloseHandle(threadHandles[count]);
    free(threadHandles);
    return 0;
}
/* End of File */

Related Reading


More Insights






Currently we allow the following HTML tags in comments:

Single tags

These tags can be used alone and don't need an ending tag.

<br> Defines a single line break

<hr> Defines a horizontal line

Matching tags

These require an ending tag - e.g. <i>italic text</i>

<a> Defines an anchor

<b> Defines bold text

<big> Defines big text

<blockquote> Defines a long quotation

<caption> Defines a table caption

<cite> Defines a citation

<code> Defines computer code text

<em> Defines emphasized text

<fieldset> Defines a border around elements in a form

<h1> This is heading 1

<h2> This is heading 2

<h3> This is heading 3

<h4> This is heading 4

<h5> This is heading 5

<h6> This is heading 6

<i> Defines italic text

<p> Defines a paragraph

<pre> Defines preformatted text

<q> Defines a short quotation

<samp> Defines sample computer code text

<small> Defines small text

<span> Defines a section in a document

<s> Defines strikethrough text

<strike> Defines strikethrough text

<strong> Defines strong text

<sub> Defines subscripted text

<sup> Defines superscripted text

<u> Defines underlined text

Dr. Dobb's encourages readers to engage in spirited, healthy debate, including taking us to task. However, Dr. Dobb's moderates all comments posted to our site, and reserves the right to modify or remove any content that it determines to be derogatory, offensive, inflammatory, vulgar, irrelevant/off-topic, racist or obvious marketing or spam. Dr. Dobb's further reserves the right to disable the profile of any commenter participating in said activities.

 
Disqus Tips To upload an avatar photo, first complete your Disqus profile. | View the list of supported HTML tags you can use to style comments. | Please read our commenting policy.