Hi,
Are there any issues in designing Quasi concurrent systems?
Regards
Printable View
Hi,
Are there any issues in designing Quasi concurrent systems?
Regards
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.
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.