Search Results

1
vote

How can I improve/replace sprintf, which I’ve measured to be a performance hotspot?

How about caching the results? Isn't that a possibility? Considering that this particular sprintf() call is made too often in your code, I'm assuming that between most of these consecutive calls, t …
11
votes

delete or virtual delete?

Since you are abstracting the creation inside libname_newDevice(), which I believe isn't a good way either, you should destroy using something like libname_destroyDevice (obj). …
2
votes

Windows threading: _beginthread vs _beginthreadex vs CreateThread C++

CreateThread() has memory leaks when you use any CRT functions in your code. _beginthreadex() has same parameters …