|
|
1. |
A Thread Performance Comparison
-
Compares Windows NT and Solaris on a symmetric multiprocessor machine.
|
|
|
2. |
Comparing Win32 and Java Synchronization
-
Comparison of the available Java synchronization primitives with the Win32 counterparts.
|
|
|
3. |
Multithreaded Programming in C++ and Java
-
Introduction to C++ (on Win32) and Java multithreading.
|
|
|
4. |
Await && Locks
-
An expressive C++ thread synchronization library.
|
|
|
5. |
Bibliography on Threads and Multithreading
-
Part of the Computer Science Bibliography Collection.
|
|
|
6. |
comp.programming.threads FAQ
-
Frequently asked questions (by Bryan O'Sullivan).
|
|
|
7. |
comp.programming.threads FAQ
-
Bil Lewis's collection of frequently asked questions.
|
|
|
8. |
Concurrent Programming: Principles and Practice
-
This book provides an in-depth overview of underlying principles as well as practical techniques that can be used to design concurrent programs. (Greg Andrews)
|
|
|
9. |
Designing a Thread Class in C++
-
Resources on designing a thread class in C++. Provides introduction, basic approach, implementation and using the class thread in C++.
|
|
|
10. |
Foundations of Multithreaded, Parallel, and Distributed Programming
-
This book teaches the fundamental concepts of multithreaded, parallel and distributed computing. Emphasizes how to solve problems, with correctness the primary concern and performance an important, but secondary, concern. (Gregory R. Andrews)
|
|
|
11. |
Fundamentals of Multithreading
-
Technical article, covering Amdahl's Law, latencies and bandwidth, on-chip multiprocessing, Jackson technology, and simultaneous multithreading. (SystemLogic.net)
|
|
|
12. |
Introduction to Priority Inversion
-
Gives an introduction to priority inversion and shows a pair of techniques to avoid them.
|
|
|
13. |
It's (Not) All Been Done
NEW!
-
Every decade or so there is a major revolution in the way software is developed. But, unlike the object and web revolutions, the concurrency revolution can be seen coming.
|
|
|
14. |
Lock-free Interprocess Communication
NEW!
-
Interprocess communication is an essential component of modern software engineering. Often, lock-free IPC is accomplished via special processor commands. This article propose a communication type that requires only atomic writing of processor word from processor cache into main memory and atomic processor word reading from main memory into the processor register or processor cache.
|
|
|
15. |
Object-Oriented Multithreading using C++
-
This book shows how to avoid common pitfalls of multithreading in UNIX, Windows NT, or OS/2 environments.
|
|
|
16. |
Priority Inheritance Protocols
-
Use of synchronization mechanisms like semaphores, monitors, and critical regions can lead to uncontrolled priority inversion. [PDF file]
|
|
|
17. |
Protothreads
-
Extremely lightweight stackless threads which provide linear code execution for event-driven systems, designed for severely memory constrained systems.
|
|
|
18. |
RT++
-
Higher order threads for C++; tutorial and reference manual.
|
|
|
19. |
Software and the Concurrency Revolution
-
Focuses on the implications of concurrency for software and its consequences for both programming languages and programmers. (Herb Sutter and James Larus)
|
|
|
20. |
State Threads Library
-
A small application library for writing fast and highly scalable Internet applications on UNIX-like platforms. [Open source, MPL or GPL]
|
|
|
21. |
Survey of Threads
-
Comparing Solaris, Linux, and Windows NT threads.
|
|
|
22. |
The Free Lunch Is Over: A Fundamental Turn Toward Concurrency in Software
NEW!
-
The biggest sea change in software development since the OO revolution is knocking at the door, and its name is Concurrency.
|
|
|
23. |
The Problem with Threads
NEW!
-
Argues that for concurrent programming to become mainstream, threads must be discarded as a programming model. Nondeterminism should be judiciously and carefully introduced where needed, and it should be explicit in programs.
|
|
|
24. |
Thread Implementation Table
-
Dave Butenhof's comparison of thread implementations.
|
|
|
25. |
volatile - Multithreaded Programmer's Best Friend
NEW!
-
Discusses the usage of the volatile keyword in multithreaded C++ programs.
|
|
|
26. |
ZThreads
-
An advanced object-oriented, cross-platform C++ threading and synchronization library. [GPL]
|