• Home
Name Date Size #Lines LOC

..--

BUILD.gnD03-May-2024537 1815

LICENSED03-May-2024262 87

README.chromiumD03-May-2024787 2118

sigslot.ccD03-May-2024571 239

sigslot.hD03-May-202420.9 KiB644427

README.chromium

1Name: C++ Signal/Slot Library
2Short Name: sigslot
3URL: http://sigslot.sourceforge.net/
4Version: 0
5Date: 2018-07-09
6License: Custom license
7License File: LICENSE
8Security Critical: yes
9
10Description:
11C++ Signal/Slot Library
12
13This file has been modified such that has_slots and signalx do not have to be
14using the same threading requirements. E.g. it is possible to connect a
15has_slots<single_threaded> and signal0<multi_threaded_local> or
16has_slots<multi_threaded_local> and signal0<single_threaded>.
17If has_slots is single threaded the user must ensure that it is not trying
18to connect or disconnect to signalx concurrently or data race may occur.
19If signalx is single threaded the user must ensure that disconnect, connect
20or signal is not happening concurrently or data race may occur.
21