Bibliography on threads and multithreading Bibliography on threads and multithreading. This bibliography is a part of the Computer Science Bibliography Collection. [QuickView]
Getting Started With POSIX Threads [QuickView]
comp.programming.threads FAQ [QuickView]
Implementing Read-Write Locks in Java [QuickView]
Introduction to Programming Threads [QuickView]
LinuxThreads FAQ [QuickView]
Multithreading for Rookies [QuickView]
Multi-threading in Java [QuickView]
Portable Thread Synchronization using C [QuickView]
Priority Inheritance Protocols [QuickView]
RT [QuickView]
Survey of Threads [QuickView]
Thread Implementation Table [QuickView]
Double-Checked Locking: Clever, but Broken Many Java programmers are familiar with the double-checked locking idiom, which allows you to perform lazy initialization with reduced synchronization overhead. Though many Java... [QuickView]
volatile - Multithreaded Programmer's Best Friend [QuickView]
Warning! Threading in a Multiprocessor World Many authors (myself included at one point) advocate the double-checked locking idiom to access a Singleton object in an intuitively thread-safe way. Unfortunately, for... [QuickView]
|
A Proposal for Fixing the Java Programming Language's Threading Problems [QuickView]
POSIX Threads Explained, Part 3 [QuickView]
POSIX Threads Explained, Part 2 [QuickView]
POSIX Threads Explained, Part 1 [QuickView]
Multithreaded Programming in C and Java Multithreaded Programming in C and Java: C and Java approach multithreading differently. You can achieve the same result with both languages, using different techniques.... [QuickView]
Programming Java Threads in the Real World, Part 9 This article finishes up the series on threads with a discussion of two more architectural solutions to threading problems: a synchronous dispatcher (or 'reactor') and... [QuickView]
Programming Java Threads in the Real World, Part 8 The previous installment of Allen's ongoing Java threads series was devoted to low-level solutions to threading problems: locks of various sorts, timers, and... [QuickView]
Programming Java Threads in the Real World, Part 7 This month's column builds on the preceding installments of the Java Toolbox threads series, adding a few more tools to your multithreading arsenal. Columnist... [QuickView]
Programming Java Threads in the Real World, Part 6 This month continues the thread theme by examining how to implement the Observer pattern (used by AWT/Swing for its event model) in a multithreaded environment.... [QuickView]
Programming Java Threads in the Real World, Part 5 In an aside to his running series on programming Java threads in the real world, Allen prefaces this month's column with a look at... [QuickView]
Comparing Win32 and Java Synchronization [QuickView]
Programming Java Threads in the Real world, Part 4 This column continues where last month's column left off, presenting a few more implementations of classes that are useful when you're doing multithreading in... [QuickView]
Programming Java Threads in the Real World, Part 3 In Parts 1 and 2 of this series on threads, Allen looked at some of the pitfalls of writing multithreaded applications in Java. This... [QuickView]
Programming Java Threads in the Real World, Part 2 This article, the second in a multipart series on threads, discusses the perils that can arise when you approach multithreading in a naive... [QuickView]
ACE [QuickView]
|