1 Star 0 Fork 1

Alvis / sigslot-plus

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
MIT

sigslot-plus

sigslot 改进版

Build Status

使用说明

一些宏定义说明

SIGSLOT_PURE_ISO

Define this to force ISO C++ compliance. This also disables all of the thread safety support on platforms where it is available.

SIGSLOT_USE_POSIX_THREADS

Force use of Posix threads when using a C++ compiler other than gcc on a platform that supports Posix threads. (When using gcc, this is the default - use SIGSLOT_PURE_ISO to disable this if necessary)

SIGSLOT_DEFAULT_MT_POLICY

Where thread support is enabled, this defaults to multi_threaded_global. Otherwise, the default is single_threaded. #define this yourself to override the default. In pure ISO mode, anything other than single_threaded will cause a compiler error.

PLATFORM NOTES

Win32

On Win32, the WIN32 symbol must be #defined. Most mainstream compilers do this by default, but you may need to define it yourself if your build environment is less standard. This causes the Win32 thread support to be compiled in and used automatically.

Unix/Linux/BSD, etc.

If you're using gcc, it is assumed that you have Posix threads available, so they are used automatically. You can override this (as under Windows) with the SIGSLOT_PURE_ISO switch. If you're using something other than gcc but still want to use Posix threads, you need to #define SIGSLOT_USE_POSIX_THREADS.

ISO C++

If none of the supported platforms are detected, or if SIGSLOT_PURE_ISO is defined, all multithreading support is turned off, along with any code that might cause a pure ISO C++ environment to complain. Before you ask, gcc -ansi -pedantic won't compile this library, but gcc -ansi is fine. Pedantic mode seems to throw a lot of errors that aren't really there. If you feel like investigating this, please contact the author.

THREADING MODES

single_threaded

Your program is assumed to be single threaded from the point of view of signal/slot usage (i.e. all objects using signals and slots are created and destroyed from a single thread). Behaviour if objects are destroyed concurrently is undefined (i.e. you'll get the occasional segmentation fault/memory exception).

multi_threaded_global

Your program is assumed to be multi threaded. Objects using signals and slots can be safely created and destroyed from any thread, even when connections exist. In multi_threaded_global mode, this is achieved by a single global mutex (actually a critical section on Windows because they are faster). This option uses less OS resources, but results in more opportunities for contention, possibly resulting in more context switches than are strictly necessary.

multi_threaded_local

Behaviour in this mode is essentially the same as multi_threaded_global, except that each signal, and each object that inherits has_slots, all have their own mutex/critical section. In practice, this means that mutex collisions (and hence context switches) only happen if they are absolutely essential. However, on some platforms, creating a lot of mutexes can slow down the whole OS, so use this option with care.

参考引用

MIT License Copyright (c) 2018 Alvis Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

简介

A plus version of sigslot forked from https://sourceforge.net/projects/sigslot/ 展开 收起
C++
MIT
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
C++
1
https://gitee.com/alvisisme/sigslot-plus.git
git@gitee.com:alvisisme/sigslot-plus.git
alvisisme
sigslot-plus
sigslot-plus
master

搜索帮助