A recent update to my GpLists unit broke compatibility with all Delphi versions that don't have enumerator support. Sorry :(
This has now been fixed.
A recent update to my GpLists unit broke compatibility with all Delphi versions that don't have enumerator support. Sorry :(
This has now been fixed.
Every programmer accumulates reusable code over the years and I am no exception. Sometimes, parts of that code seem generic enough to be worth documenting and presenting it to the public.
Today, I'd like to put on display four classes belonging to the inter-process synchronisation part of my personal toolbox.
- A Synchronisation Toolkit, The Delphi Magazine 86, October 2002
In October 2002 I presented my GpSync unit, which is still very actively updated and developed. At the time of writing, there were four reusable classes in this unit - a token, a group, a counted group and single-write-multiple-readers reimplementation copied (and translated from C to Delphi) from Advanced Windows by Jeffrey Richter.
Since that first public occurrence, GpSync was extended with a flag, a counter, a message queue (shared-memory based, can be used to send messages from an interactive application to a service and back), and a circular buffer. To this day, it represents most common building blocks I'm using in multithreaded applications.
Links: article (PDF, 148 KB), source code (ZIP, 196 KB), current GpSync unit