blob: 419bbad4756628f119612408ec0824a24e5576e7 [file] [log] [blame]
Name: C++ Signal/Slot Library
Short Name: sigslot
URL: https://sigslot.sourceforge.net/
Version: N/A
Date: 2018-07-09
License: LicenseRef-Public-Domain-Sigslot
License File: LICENSE
Update Mechanism: Static (https://crbug.com/419414421)
Security Critical: yes
Shipped: yes
Description:
C++ Signal/Slot Library
This file has been modified such that has_slots and signalx do not have to be
using the same threading requirements. E.g. it is possible to connect a
has_slots<single_threaded> and signal0<multi_threaded_local> or
has_slots<multi_threaded_local> and signal0<single_threaded>.
If has_slots is single threaded the user must ensure that it is not trying
to connect or disconnect to signalx concurrently or data race may occur.
If signalx is single threaded the user must ensure that disconnect, connect
or signal is not happening concurrently or data race may occur.
note: sigslot at sourceforge has only one released version - version 1.0.0
released on 2002-03-31. There is a read-only CVS repository from which the
dated version (2018-07-09) can be retrieved if necessary.