Includes:
Shared Memory Library
Library intended to ease the communication task between the processes.
The main idea is that a user can create one or more shared memory
areas where the programs exchange data. They can be aware of data
changes by making pools in a while loop. Every access to the shared
zone is conditioned by acquiring a semaphore lock. Data in the
memories can be easily saved to a file. Each method is thread safe
so concurrency related problems are solved by the library.
Program Base Library - lists, heaps, sets and more
This project internally uses the "PBL - The Program Base Library",
created by Peter Graf. This library is also compiled and exported for future
linking to other programs. Thank you Peter for creating this library!
Logger
Easy to use logging facilities.
http://www.mission-base.com/peter/source/
Features
- Easy to use and customize logging
- Comprehensive list of collections (sets, heaps, linked lists etc)
- Straightforward functions for creating and accessing shared memories
- User doesn't need to handle any concurrency. The library does it in behind