Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Signals vs Signals2

I have application that may benefit from using one of boost's signals libraries over a homegrown solution.

The application is multithreaded but the part that does the signal processing is single threaded.

Is there any reason to prefer Boost.Signals2 over Boost.Signal if multithreading is not an issue?

like image 609
deft_code Avatar asked Nov 01 '11 16:11

deft_code


1 Answers

Boost.Signals is now deprecated, and Boost.Signals2 should be used instead (see v1.54 docs)

like image 67
Paulo Avatar answered Oct 21 '22 07:10

Paulo