monsdar / CxxProf

CxxProf is a manual instrumented Profiling library for C++. It's goal is to provide easy integration into existing projects with just as little overhead as possible. It should be easy to remove the profiling mechanism during compile and runtime from the code.
GNU General Public License v3.0
58 stars 5 forks source link

NetworkReceiver: See if the blocking of the receive-function could create problems #33

Open monsdar opened 10 years ago

monsdar commented 10 years ago

We're currently blocking the receive function to deserialize and store data. We should check if this is a potential problem. A solution would be to create a incoming data queue which a second thread the deserializes and stores.

See TODO in NetworkReceiver.cpp (currently line 47 and 58)

monsdar commented 10 years ago

This issue is about something else, it is not fixed by the above commit :/