CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Oct 2009
    Posts
    23

    Quasi Concurrency

    Hi,

    Are there any issues in designing Quasi concurrent systems?

    Regards
    Last edited by billy_111; January 19th, 2010 at 12:57 PM.

  2. #2
    Lindley is offline Elite Member Power Poster
    Join Date
    Oct 2007
    Location
    Seattle, WA
    Posts
    10,895

    Re: Quasi Concurrency

    I assume you mean systems using multiple logical threads but only one processor, thus having only one active thread at a time?

    Same issues as any multi-threaded program.

  3. #3
    Join Date
    Apr 2000
    Location
    Belgium (Europe)
    Posts
    4,626

    Re: Quasi Concurrency

    multiple processors/cores only makes matters worse

    if your MT program doesn't works on a single cpu, it won't on a multi CPU/core, chances are that any failure will become more apparent than on a single CPU.

    If your MT programs does work on a single CPU, it can still fail on multi CPU/core.

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