CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 6 of 6
  1. #1
    Join Date
    Dec 2010
    Posts
    907

    Any example code for x64 assembly multithreading programming?

    Half for fun, half for optimization.
    Thanks
    Jack

  2. #2
    Join Date
    Aug 2009
    Location
    Finally back in Alaska
    Posts
    141

    Re: Any example code for x64 assembly multithreading programming?

    are you talking about x64 assembly starting multiple threads, or x64 assembly being used in a multi threaded app (as in managed or native c++ multi-threaded app calling into assembly code)? I dont have any experience starting threads from assembly code, but wouldnt think it that difficult, as for writing x64 code being used in a multi threaded program, I do have some experience there, it was a learning curve just figuring out how to debug problems that only crept up in multi threaded mode.

  3. #3
    Join Date
    Dec 2010
    Posts
    907

    Re: Any example code for x64 assembly multithreading programming?

    I have to develop standalone x64 executable fully with assembly.
    Thanks
    Jack

  4. #4
    Join Date
    Aug 2009
    Location
    Finally back in Alaska
    Posts
    141

    Re: Any example code for x64 assembly multithreading programming?

    for the multi-threading part this article may help: http://www.asmcommunity.net/book/tut...g-programming/ its a 32 bit example, but with a lttle research shouldnt be too hard to adapt

  5. #5
    Join Date
    Dec 2010
    Posts
    907

    Re: Any example code for x64 assembly multithreading programming?

    Thank you Richard. Now I am reading it.

  6. #6
    Join Date
    Aug 2009
    Location
    Finally back in Alaska
    Posts
    141

    Re: Any example code for x64 assembly multithreading programming?

    no prob, good luck

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured