User Laserallan - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T15:31:42Zhttp://stackoverflow.com/feeds/user/11758http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1767406/distribute-binary-library-on-osx0Distribute binary library on OSXLaserallan2009-11-19T23:44:02Z2009-11-20T01:41:20Z
<p>I'm planning to release some compiled code that shall be linked by client applications on MacOSX.</p>
<p>The distribution is some kind of code library and a set of header files defining the public interface for the library.The code is internally C++ but its public interface (i.e what's being shown in the headers) is completely C.</p>
<p>These are my requirements or atleast what I hope I can accomplish:</p>
<ul>
<li>I want my library to be as agnostic
as possible for what version of OSX
and GCC the user is running. Having
separate libraries for 64 bit and 32
bit is okay though. </li>
<li>I want my library
to be loadable from languages that
supports loading C libraries such as
python or similar. </li>
<li>I want my
libraries internal symbols to be
isolated from the code it's being
linked into. I don't want to have
duplicate symbol errors because we
happen to name an internal function
in the same way. My C++ code is properly namespaced so this may not be as big of an issue though, but some of the libraries I depend on is C and can be an issue (see next point).</li>
<li>I want my library
dependencies to be safe. My library
depends on some libraries such as
libpng, boost and stl and I don't
want issues because some users don't
necessarily have all of them installed
or get problems because they have
been compiled with other flags or
have different versions than I have.</li>
</ul>
<p>On Windows I use a DLL with an export library and link all my dependencies statically into the dll. It fulfills all the criteria above and if I can get the same result on OSX it would be great, however I've heard that dynamic libraries tend not to isolate symbols on mac in the same way.</p>
<p>Is there some kind of best practice for this on OSX?</p>
http://stackoverflow.com/questions/1736904/example-of-thread-specific-data-in-c/1736941#17369410Answer by Laserallan for example of thread specific data in CLaserallan2009-11-15T07:58:12Z2009-11-15T07:58:12Z<p>This is a good example if you are on the Windows platform</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms686991%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms686991(VS.85).aspx</a></p>
http://stackoverflow.com/questions/1732643/choosing-the-right-subclass-to-instantiate-programatically/1732706#17327068Answer by Laserallan for Choosing the right subclass to instantiate programaticallyLaserallan2009-11-14T00:14:17Z2009-11-14T00:14:17Z<p>One way of approaching it would be using a map and register some kind of factory function for each message type. This means that you get rid of the switch case and can add and remove messages dynamically. </p>
<p>The code would look something like:</p>
<pre><code>// Create the map (most likely a member in a different class)
std::map<BaseMessage::Type, MessageCreator*> messageMap;
...
// Register some message types
// Note that you can add and remove messages at runtime here
messageMap[BaseMessage::MyMessageA] = new MessageCreatorT<BaseMessageA>();
messageMap[BaseMessage::MyMessageB] = new MessageCreatorT<BaseMessageB>();
...
// Handle a message
std::map<Type, MessageCreator*>::const_iterator it = messageMap.find(msgType);
if(it == messageMap.end()) {
// Unknown message type
beepHang();
}
// Now create the message
BaseMessage* msg = it->second.createMessage(data);
</code></pre>
<p>The MessageCreator class would look something like this:</p>
<pre><code>class MessageCreator {
public:
virtual BaseMessage* createMessage(void* data, size_t len) const = 0;
};
template<class T> class MessageCreatorT : public MessageCreator {
public:
BaseMessage* createMessage(void* data, size_t len) const {
T* newMessage = new T();
newMessage.parse(data, len);
return newMessage;
}
};
</code></pre>
http://stackoverflow.com/questions/1548198/installing-multiple-directx-sdk-versions/1548225#15482251Answer by Laserallan for Installing multiple directx sdk versionsLaserallan2009-10-10T15:26:07Z2009-10-10T15:26:07Z<p>My solution is to make sure you change all visual studio paths related to directx to use the environment variable that's being created by the dxsdk installer (it's called something like DXSDK_DIR). Then you change all include and library paths in visual studio to <code>$(DXSDK_DIR)\whatever</code> instead of <code>C:\Program Files\DirectXSDKSpecificVersion\whatever</code>. This means you can change directx version by change that environment variable and restart visual studio.</p>
<p>If you use another development environment the same trick should be applicable but you have to modify your make file or whatever build setup you use.</p>
http://stackoverflow.com/questions/1392710/race-condition-when-writing-files-in-windows0Race condition when writing files in Windows [closed]Laserallan2009-09-08T08:28:45Z2009-09-08T09:27:09Z
<p>Hi!</p>
<p>I have a program that invokes an external program that writes files to the disk. After the program has terminated those files on disk are opened by the invoking process.</p>
<p>It seems like sometimes those files aren't completely flushed at the time I open them and I get iostream exceptions when reading them. The process has terminated cleanly and <a href="http://msdn.microsoft.com/en-us/library/ms683189%28VS.85%29.aspx" rel="nofollow">GetExitCodeProcess</a> returned a correct value that isn't STILL_ACTIVE. A workaround that seems to work it is sleeping a few seconds after the process has terminated before opening the files.</p>
<p>Is this a reasonable explanation? Can there be non flushed data in a file in a process that the operating system says is gone?</p>
<p>If it is, is it possible to flush the file from the file opening it or open it in a way that ensures this doesn't happen?</p>
<p>If it's not, can someone come up with a better explanation of what's going on?</p>
<p>EDIT:
The error that happens is that the std::ifstream throws an exception with the following description:
ios_base::failbit set</p>
<p>EDIT:
I didn't check my assumptions and the error wasn't at all related to this. Sorry for wasting your time.</p>
http://stackoverflow.com/questions/1316018/globally-override-malloc-in-visual-c0Globally override malloc in visual c++Laserallan2009-08-22T13:49:08Z2009-09-01T21:53:44Z
<p>Hi!</p>
<p>I'm trying to figure out a way to globally override malloc and related functions in visual c++ (2005). My setup is a dll with statically linked runtime library that consists of both my own c++ code, external c++ and c code. What I want to accomplish is to allow a user of the dll to set their own implementations of the memory allocation functions.</p>
<p>Solutions that I can't use:</p>
<ul>
<li>Overriding new and delete globally,
there is lots of external C libraries in
my code base which means this won't
capture many allocations.</li>
<li>#defining malloc to a different symbol. This would force me to push this define into the build settings of all external libraries used and I really want to avoid this.</li>
</ul>
<p>Things I don't care about</p>
<ul>
<li>If any of the external libraries are allocating memory in some other way (HeapAlloc, memory mapped files or whatever they come up with), I accept that this won't be tracked properly by overriding malloc.</li>
</ul>
<p>The most reasonable solution I can come up with is somehow interfering with the link process and making sure my own malloc is being linked instead of the standard ones, preferably I'd like to be able to use the old malloc functions as default.</p>
<p>In google <a href="http://code.google.com/p/google-perftools/" rel="nofollow">perf-tools</a> it seems like they patch the code of the functions manually at runtime to allow a hook function to be called before calling the original function. Is this really the best way of doing this?</p>
http://stackoverflow.com/questions/1354224/multimap-output-after-copying-from-map/1354234#13542342Answer by Laserallan for Multimap output after copying from mapLaserallan2009-08-30T16:29:00Z2009-08-30T16:29:00Z<p>You seem to use p rather than p2 when printing, Change the output line to:</p>
<pre><code>cout << p2->first << ": " << p2->second << '\n';
</code></pre>
<p>This error would been avoided if you declared p in the for loop rather than before it since it would have gone out of scope after the first for loop ended.</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/1337442#13374420Answer by Laserallan for What is the worst class/variable/function name you have ever encounteredLaserallan2009-08-26T20:56:34Z2009-08-26T20:56:34Z<p>One that always makes me laugh is kNullObject in the Maya API. However, it's one of those localized jokes so I don't expect anyone that don't speak Swedish to enjoy it.</p>
http://stackoverflow.com/questions/1314066/what-to-do-when-ending-an-internship/1314106#13141061Answer by Laserallan for What to do when ending an internship?Laserallan2009-08-21T20:42:22Z2009-08-21T20:42:22Z<p>Place a bowl of oysters or shrimp shells in a secret location in the office!</p>
http://stackoverflow.com/questions/1301175/inplace-conversion-of-24bpp-bitmap-to-32bpp/1301256#13012561Answer by Laserallan for Inplace conversion of 24bpp bitmap to 32bppLaserallan2009-08-19T16:57:29Z2009-08-19T16:57:29Z<p>I don't know much of how Graphics32 works. However if you use a standard file format and have direct access to the TBitmap32 pixel data you should be able create your own image loader for the format that does the loading and the up conversion to 32bpp in one go if nothing else works.</p>
<p>Specifications for common file formats are all over the internet, which one are you using?</p>
http://stackoverflow.com/questions/1284050/c-comparison-to-null/1284067#128406720Answer by Laserallan for C: Comparison to NULLLaserallan2009-08-16T11:17:44Z2009-08-16T11:17:44Z<p>I prefer the explicit style (first version). It makes it obvious that there is a pointer involved and not an integer or something else but it's just a matter of style. </p>
<p>From a performance point of view, it should make no difference. </p>
http://stackoverflow.com/questions/1271910/java-graphic-library/1271922#12719220Answer by Laserallan for java graphic libraryLaserallan2009-08-13T13:24:26Z2009-08-13T13:24:26Z<p>SWT is another option:
<a href="http://www.eclipse.org/swt/" rel="nofollow">http://www.eclipse.org/swt/</a></p>
http://stackoverflow.com/questions/1229873/criteria-for-selecting-the-right-stl-container-for-the-job/1229891#12298910Answer by Laserallan for Criteria for selecting the right STL container for the job?Laserallan2009-08-04T20:55:34Z2009-08-04T20:55:34Z<p>Guarantee that the data is placed in continuous memory can be important. Typically if you are interested in using the data in the structure with interfaces that looks like doSomething(int* data, int dataCount).</p>
http://stackoverflow.com/questions/1228777/visual-studio-2008-runtime-libraries-usage-advice/1228813#12288131Answer by Laserallan for Visual Studio 2008, Runtime Libraries usage adviceLaserallan2009-08-04T17:22:16Z2009-08-04T17:22:16Z<p>Dynamically linking the runtime library can give you faster program start up times and smaller system memory usage since the dll can be shared between processes and won't need to be loaded again if it's already used by another process.</p>
http://stackoverflow.com/questions/1223730/is-there-any-service-that-allows-you-to-send-letters-via-snail-mail/1223783#12237832Answer by Laserallan for Is there any service that allows you to send letters via snail mail?Laserallan2009-08-03T18:09:13Z2009-08-03T18:09:13Z<p><a href="https://mail.google.com/mail/help/paper/more.html" rel="nofollow">https://mail.google.com/mail/help/paper/more.html</a> :)</p>
http://stackoverflow.com/questions/1208271/export-unmanaged-classes-from-a-visual-c-dll/1208339#12083391Answer by Laserallan for Export Unmanaged Classes from a Visual C++ DLL?Laserallan2009-07-30T18:13:22Z2009-07-30T18:41:09Z<p>I think this article describes what you are trying to do:
<a href="http://www.codeproject.com/KB/mcpp/usingcppdll.aspx" rel="nofollow">http://www.codeproject.com/KB/mcpp/usingcppdll.aspx</a></p>
<p>Personally I also prefer exporting C functions (as opposed to C++) where I make the this pointer explicit to avoid having to care about compiler specific method name decoration and exposing compiler generated functions.</p>
http://stackoverflow.com/questions/1205041/how-to-optimize-a-c-for-loop/1205053#12050537Answer by Laserallan for How to optimize a C for loop?Laserallan2009-07-30T07:50:12Z2009-07-30T08:06:08Z<p>When getting a performance bottle neck in a loop counter you should consider <a href="http://en.wikipedia.org/wiki/Loop%5Funwinding" rel="nofollow">unrolling</a> the loop.</p>
<p>EDIT: As always, when optimizing, make sure you benchmark and convince yourself that you get the desired result.</p>
http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/1201136#12011362Answer by Laserallan for What's your most controversial programming opinion?Laserallan2009-07-29T15:31:55Z2009-07-29T15:31:55Z<p>Functional programming is NOT more intuitive or easier to learn than imperative programming.</p>
<p>There are many good things about functional programming, but I often hear functional programmers say it's easier to understand functional programming than imperative programming for people with no programming experience. From what I've seen it's the opposite, people find trivial problems hard to solve because they don't get how to manage and reuse their temporary results when you end up in a world without state.</p>
http://stackoverflow.com/questions/1200727/cross-platform-drawing-library/1200830#12008302Answer by Laserallan for Cross-platform drawing libraryLaserallan2009-07-29T14:49:28Z2009-07-29T14:49:28Z<p>Antigrain does high quality primitive rendering and seems to be able to render true type fonts and has a commercial license available upon request.</p>
<p><a href="http://www.antigrain.com/" rel="nofollow">http://www.antigrain.com/</a></p>
http://stackoverflow.com/questions/1178127/shared-libraries-memory-space/1178160#11781600Answer by Laserallan for Shared libraries memory spaceLaserallan2009-07-24T14:44:16Z2009-07-24T14:44:16Z<p>The share address space so you can share pointers, however they don't share allocator (at least not on windows).</p>
<p>This means that if you call new to allocate an object inside a shared library you must call delete inside the same library or strange things may happen.</p>
http://stackoverflow.com/questions/1010177/what-was-the-worst-3rd-party-api-you-had-to-work-with/1173810#11738100Answer by Laserallan for What was the worst 3rd party API you had to work with?Laserallan2009-07-23T18:59:58Z2009-07-23T18:59:58Z<p>Autodesk FBX.</p>
<p>It has it all, or at least had it all last time I checked!</p>
<ol>
<li>Memory leaks</li>
<li>Memory corruption and crashes</li>
<li>Multiple ways of doing the same thing.</li>
<li>Binary only distribution</li>
<li>Poor performance and memory wasting.</li>
<li>C++ abi problems meaning there needs to be a specific library for every C++ compiler and runtime library</li>
<li>Leaking of symbols that conflicts with your own during linking</li>
<li>Unspecific about thread safety</li>
</ol>
http://stackoverflow.com/questions/1166507/how-to-prevent-inadvertently-using-delete-and-free-interchangeably-in-c/1166527#11665270Answer by Laserallan for How to prevent inadvertently using delete and free interchangeably in c++Laserallan2009-07-22T16:30:58Z2009-07-22T16:31:59Z<p>You should always use delete or delete[] when freeing things allocated with new. The same goes for malloc and free.</p>
<p>If using free for deleting new:ed classes the destructor won't be properly called.
Also new and delete doesn't necessarily use malloc/free for its allocations so you might end up corrupting your heap as well.</p>
http://stackoverflow.com/questions/1144321/why-are-strings-notoriously-expensive/1144364#11443640Answer by Laserallan for Why are strings notoriously expensiveLaserallan2009-07-17T16:27:44Z2009-07-17T16:27:44Z<p>Changes and copying of strings tends to involve memory management.</p>
<p>Memory management is not good for performance since it tends to require some kind of global mutex that makes your code scale poorly to multiple cores.</p>
http://stackoverflow.com/questions/1143995/whats-the-best-pattern-or-method-to-load-a-static-cache/1144287#11442870Answer by Laserallan for what's the best pattern or method to load a static cache?Laserallan2009-07-17T16:16:15Z2009-07-17T16:21:48Z<p>Since statesLoaded only can go from false to true I'd go for a solution where you first check the statesLoaded is true, if it is you just skip the initalization logic. If it isn't you lock and check again and if it's still false you load the states it and set the flag to true.</p>
<p>This means that any thread calling getState after the cache is initialized will "early out" and use the map without locking.</p>
<p>something like:</p>
<pre><code>// If we safely know the states are loaded, don't even try to lock
if(!statesLoaded) {
// I don't even pretend I know javas synchronized syntax :)
lock(mutex);
// This second check makes sure we don't initialize the
// cache multiple times since it might have changed
// while we were waiting for the mutex
if(!statesLoaded) {
initializeStates();
statesLoaded = true;
}
release(mutex);
}
// Now you should know that the states are loaded and they were only
// loaded once.
</code></pre>
<p>This means that the locking will only be involved before and during the actual initalization happens.</p>
<p>If this would be C, I'd also make sure to make the <code>statesLoaded</code> <code>variable</code> to be volatile to make sure the compiler optimize the second check. I don't know how java behaves when it comes to situations like that but I would guess it considers all shared data such as statesLoaded to be potentially dirty when going into synchronization scopes.</p>
http://stackoverflow.com/questions/963997/lookup-table-in-latex1Lookup table in LatexLaserallan2009-06-08T09:09:09Z2009-06-11T02:37:41Z
<p>Hi!</p>
<p>I have a bunch of automatically generated LaTeX code with hypertargets of the form "functionname_2093840289fad1337", i.e the name of a function with a hash appended. I would like to refer to those functions from the rest of the document by only referring to the function name which I know is unique. I would like a lookup function something like this:</p>
<pre><code>\hyperdyperlink{functionname}
</code></pre>
<p>that emits </p>
<pre><code>\hyperlink{functionname_2093840289fad1337}{functionname}
</code></pre>
<p>Note that I can't calculate the hash but I'm prepared to write a table that maps each functionname to functionname+hash. What's the best way to write this kind of function?</p>
http://stackoverflow.com/questions/974475/how-to-write-own-configformat/974631#9746313Answer by Laserallan for How to write own ConfigformatLaserallan2009-06-10T09:50:27Z2009-06-10T09:50:27Z<p>One cool way of creating a config format is to embed a scripting language.</p>
<p>This gives you the parser for free and gives you the possibility to generate data on the fly or define variables that are being reused:</p>
<p>Consider these examples of xml vs an ugly pseudo scripting language:</p>
<pre><code><InputPoints>
<Point>
<x>1.0</x>
<y>1.0</y>
</Point>
<Point>
<x>1.0</x>
<y>2.0</y>
</Point>
<Point>
<x>1.0</x>
<y>3.0</y>
</Point>
<Point>
<x>1.0</x>
<y>4.0</y>
</Point>
<InputPoint>
</code></pre>
<p>vs:</p>
<pre><code>for(i = 1; i <= 4; ++i) {
InputPoint(1, i);
}
</code></pre>
<p>or perhaps</p>
<pre><code><Username>allanballan</Username>
<Accountname>allanballan</Accountname>
<HomeDirectory>/home/allanballan</HomeDirectory>
</code></pre>
<p>vs</p>
<pre><code>user = "allanballan";
Username = user;
Accountname = user;
HomeDirectory = "/home/"+user;
</code></pre>
<p>The first example compresses a list of points to a few statements, the second examples shows how to remove lots of redundant data using a temporary variable.</p>
<p>A popular language for this kind of situation is <a href="http://www.lua.org/" rel="nofollow">Lua</a>. Exactly how to map a scripting language to configuration is up to the integrator, but it's really powerful and it comes with parsing and type checking for free. </p>
http://stackoverflow.com/questions/959837/how-can-i-know-the-type-of-a-file-using-boost-filesystem/959873#9598731Answer by Laserallan for How can I know the type of a file using Boost.Filesystem?Laserallan2009-06-06T14:58:48Z2009-06-06T15:04:35Z<p>How about:</p>
<p><a href="http://www.boost.org/doc/libs/1%5F39%5F0/libs/filesystem/doc/index.htm" rel="nofollow">http://www.boost.org/doc/libs/1_39_0/libs/filesystem/doc/index.htm</a></p>
<p>The functions for figuring out the file type (directory, normal file etc.) is found on this subpage: <a href="http://www.boost.org/doc/libs/1%5F39%5F0/libs/filesystem/doc/reference.html#file%5Fstatus" rel="nofollow">http://www.boost.org/doc/libs/1_39_0/libs/filesystem/doc/reference.html#file_status</a></p>
<p>If you are looking for the file extension check out: <code>template <class Path> typename Path::string_type extension(const Path &p);</code> on the page:
<a href="http://www.boost.org/doc/libs/1%5F39%5F0/libs/filesystem/doc/reference.html#Convenience-functions" rel="nofollow">http://www.boost.org/doc/libs/1_39_0/libs/filesystem/doc/reference.html#Convenience-functions</a></p>
http://stackoverflow.com/questions/955428/prepare-public-header-for-release5Prepare public header for releaseLaserallan2009-06-05T11:30:08Z2009-06-05T15:57:12Z
<p>Hi!</p>
<p>I'm interested in hearing what routines you have for cleaning up public header files you
distribute to customers.</p>
<p>Some things I'd like to hear your opinions on are:</p>
<p>Comments not meant for external consumption. Generally I like keeping documentation close
to the code and comments like this might not be a good idea to share:</p>
<pre><code>/**
* @todo Should we change the signature of this function to
* make it obvious that xxx is really yyy?
*/
</code></pre>
<p>or perhaps:</p>
<pre><code>/**
* @todo Add support for feature X
*/
</code></pre>
<p>Inconsistent tab styles:</p>
<pre><code>void functionA(int a,
int b,
int c,
int d);
void functionB(int a,
int b,
int c);
</code></pre>
<p>Are there any tools for preparing headers or code in general for release?</p>
http://stackoverflow.com/questions/928568/creating-multiple-instances-of-global-statics-in-c/928643#9286431Answer by Laserallan for Creating multiple instances of global statics in C++?Laserallan2009-05-30T00:28:00Z2009-05-30T00:28:00Z<p>Except for the interprocess stuff you suggested, the best hack I can come up with is copying the dll to a new file and manually load the new dll and import all functions you use for each instance you create.</p>
<p>Hopefully this means the static variables won't conflict between the different instances since they are technically not in the same dll. However there are lots of bad things with this solution, such as all code in the dll being cloned for each version and you won't be able to use an import library, but have to load the dll and import all functions manually.</p>
http://stackoverflow.com/questions/925084/pod-low-dimensional-vector-in-boost/925153#9251531Answer by Laserallan for POD low dimensional vector in boostLaserallan2009-05-29T09:23:10Z2009-05-29T09:23:10Z<p>There is a nice Vector library for 3d graphics in the prophecy SDK:</p>
<p>Check out <a href="http://www.twilight3d.com/downloads.html" rel="nofollow">http://www.twilight3d.com/downloads.html</a></p>
http://stackoverflow.com/questions/1767406/distribute-binary-library-on-osx/1767429#1767429Comment by Laserallan on Distribute binary library on OSXLaserallan2009-11-20T16:26:52Z2009-11-20T16:26:52ZThanks. With the addition, it is pretty much exactly what I was looking for!http://stackoverflow.com/questions/1767406/distribute-binary-library-on-osx/1767429#1767429Comment by Laserallan on Distribute binary library on OSXLaserallan2009-11-19T23:52:34Z2009-11-19T23:52:34ZThis seems like a good solution. Do you have any good reference on how to create an exports file?http://stackoverflow.com/questions/202750/is-there-a-human-readable-programming-language/202766#202766Comment by Laserallan on Is there a human readable programming language?Laserallan2009-09-23T14:18:51Z2009-09-23T14:18:51ZIronically I found it very hard to google problems when developing apple scripts since it looks very much like ordinary english text. Adding weird characters or API prefixes and symbol names with camel case or underscore word separation makes googling much easier.http://stackoverflow.com/questions/1461276/stdvector-reserve-and-pushback-is-faster-than-resize-and-array-index-wh/1461294#1461294Comment by Laserallan on std::vector reserve() and push_back() is faster than resize() and array index, why?Laserallan2009-09-22T17:18:09Z2009-09-22T17:18:09ZIf you benchmark after the resize/reserve call you can see if this is the reason.http://stackoverflow.com/questions/1461276/stdvector-reserve-and-pushback-is-faster-than-resize-and-array-index-whComment by Laserallan on std::vector reserve() and push_back() is faster than resize() and array index, why?Laserallan2009-09-22T17:15:25Z2009-09-22T17:15:25ZA routine check, you are using release rather than debug settings when compiling the code?http://stackoverflow.com/questions/1392710/race-condition-when-writing-files-in-windows/1392721#1392721Comment by Laserallan on Race condition when writing files in WindowsLaserallan2009-09-08T08:42:32Z2009-09-08T08:42:32ZUnfortunately I don't have this control.http://stackoverflow.com/questions/1392710/race-condition-when-writing-files-in-windows/1392735#1392735Comment by Laserallan on Race condition when writing files in WindowsLaserallan2009-09-08T08:38:39Z2009-09-08T08:38:39ZThanks for the tips. I tried disabling my antivirus and it still happen.http://stackoverflow.com/questions/1061169/boost-serialization-vs-google-protocol-buffersComment by Laserallan on boost serialization vs google protocol buffers?Laserallan2009-09-07T17:05:55Z2009-09-07T17:05:55ZThis is close to a duplicate of <a href="http://stackoverflow.com/questions/321619/c-serialization-performance" rel="nofollow" title="c serialization performance">stackoverflow.com/questions/321619/…</a> so it might be helpful as wellhttp://stackoverflow.com/questions/1316018/globally-override-malloc-in-visual-c/1364833#1364833Comment by Laserallan on Globally override malloc in visual c++Laserallan2009-09-02T07:02:28Z2009-09-02T07:02:28ZThanks, this seems to add the last piece of the puzzle.http://stackoverflow.com/questions/1354224/multimap-output-after-copying-from-mapComment by Laserallan on Multimap output after copying from mapLaserallan2009-08-30T19:08:05Z2009-08-30T19:08:05ZThe auto keyword will make all this so much easier: <a href="http://en.wikipedia.org/wiki/C%2B%2B0x#Type_inference" rel="nofollow">en.wikipedia.org/wiki/C%2B%2B0x#Type_inference/…</a>http://stackoverflow.com/questions/1316018/globally-override-malloc-in-visual-c/1340513#1340513Comment by Laserallan on Globally override malloc in visual c++Laserallan2009-08-30T12:32:04Z2009-08-30T12:32:04ZThis looks useful. What order of resolution is used? Will always my own malloc is the one used when there is a conflict with the standard library? Do you route the calls through your custom malloc to the original definition or did you throw out the standard library version of malloc completely?http://stackoverflow.com/questions/1338398/adjust-brightness-contrast-gamma-of-scene-in-directxComment by Laserallan on Adjust brightness/contrast/gamma of scene in DirectX?Laserallan2009-08-27T21:16:38Z2009-08-27T21:16:38ZThis will not solve your problem, but I think everyone using the word gamma in image processing context should read this: <a href="http://www.alvyray.com/Memos/9_gamma.pdf" rel="nofollow">alvyray.com/Memos/9_gamma.pdf</a>http://stackoverflow.com/questions/1343626/interprocess-communication-in-c/1343648#1343648Comment by Laserallan on Interprocess Communication in C++Laserallan2009-08-27T21:06:44Z2009-08-27T21:06:44Z+1 for mentioning boost interprocess. <a href="http://www.boost.org/doc/libs/1_39_0/doc/html/interprocess.html" rel="nofollow">boost.org/doc/libs/…</a>http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/1030076#1030076Comment by Laserallan on Worst UI You've Ever UsedLaserallan2009-08-27T17:43:12Z2009-08-27T17:43:12ZRapid Environment editor (<a href="http://www.rapidee.com/en/about" rel="nofollow">rapidee.com/en/about</a>) might not be perfect, but it's way better than the built in way of doing this.http://stackoverflow.com/questions/1316018/globally-override-malloc-in-visual-c/1316607#1316607Comment by Laserallan on Globally override malloc in visual c++Laserallan2009-08-24T19:12:36Z2009-08-24T19:12:36ZI didn't find anything like that in the visual studio linker and the closest I found is using the tool lib.exe (<a href="http://msdn.microsoft.com/en-us/library/7ykb2k5f(VS.71).aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>). It can extract and add .obj files to a static library. Technically I could create my own version of the standard library .lib file with patched malloc/calloc/free/realloc functions. If I just found a tool that can rename functions inside an .obj file it would be possible to rename the old versions and make sure my override functions calls them.