├── .github └── workflows │ └── test.yml ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── Jamfile ├── LICENSE ├── README.rst ├── appveyor.yml ├── example.cpp ├── project-root.jam ├── signal_error_code.cpp ├── signal_error_code.hpp ├── test.cpp ├── try_signal.cpp ├── try_signal.hpp ├── try_signal_mingw.hpp ├── try_signal_msvc.hpp └── try_signal_posix.hpp /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvidn/try_signal/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvidn/try_signal/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvidn/try_signal/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvidn/try_signal/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvidn/try_signal/HEAD/Jamfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvidn/try_signal/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvidn/try_signal/HEAD/README.rst -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvidn/try_signal/HEAD/appveyor.yml -------------------------------------------------------------------------------- /example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvidn/try_signal/HEAD/example.cpp -------------------------------------------------------------------------------- /project-root.jam: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /signal_error_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvidn/try_signal/HEAD/signal_error_code.cpp -------------------------------------------------------------------------------- /signal_error_code.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvidn/try_signal/HEAD/signal_error_code.hpp -------------------------------------------------------------------------------- /test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvidn/try_signal/HEAD/test.cpp -------------------------------------------------------------------------------- /try_signal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvidn/try_signal/HEAD/try_signal.cpp -------------------------------------------------------------------------------- /try_signal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvidn/try_signal/HEAD/try_signal.hpp -------------------------------------------------------------------------------- /try_signal_mingw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvidn/try_signal/HEAD/try_signal_mingw.hpp -------------------------------------------------------------------------------- /try_signal_msvc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvidn/try_signal/HEAD/try_signal_msvc.hpp -------------------------------------------------------------------------------- /try_signal_posix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvidn/try_signal/HEAD/try_signal_posix.hpp --------------------------------------------------------------------------------