Click here to Skip to main content
15,886,362 members
Articles / Programming Languages / C++

Rabbit Threads: Making Threads Jump

Rate me:
Please Sign up or sign in to vote.
4.96/5 (38 votes)
14 Nov 2007CPOL16 min read 83.8K   1.4K   76  
Compel threads to execute out of context code using inline assembly.
// Worker Thread
//
#include "stdafx.h"
#include "WorkerThread.h"

DWORD WINAPI ThreadProc( LPVOID lpParameter )
{
    DWORD dwExitAddress = 0;

    // Sleep to allow syncronization for the Debugger
    //  Not required in Real Life...
    Sleep( 1000 * 10 );

    if( NULL == lpParameter )
    {
        return -2;
    }

    dwExitAddress = * ( reinterpret_cast< DWORD* > ( lpParameter ) );

    __asm {

        push RETURNAREA
        push dwExitAddress

        ret
    }

RETURNAREA:
    DWORD dwCurrentThreadID = GetCurrentThreadId();
    std::tcout << _T("Exiting worker function thread ID = 0x");
    HEXADECIMAL_OUTPUT(4);
    std::tcout << dwCurrentThreadID << std::endl;

    return 2;
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Systems / Hardware Administrator
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions