Laserallan

2,445
Reputation
715 views

Registered User

Name Laserallan
Member for 1 year
Seen 49 mins ago
Website
Location Göteborg
Age 29
SkÀmtfysiker
Nov
20
comment Distribute binary library on OSX
Thanks. With the addition, it is pretty much exactly what I was looking for!
Nov
19
comment Distribute binary library on OSX
This seems like a good solution. Do you have any good reference on how to create an exports file?
Nov
19
asked Distribute binary library on OSX
Nov
15
answered example of thread specific data in C
Nov
14
answered Choosing the right subclass to instantiate programatically
Oct
10
answered Installing multiple directx sdk versions
Oct
7
accepted What kind of code library should I build for distribution?
Sep
23
comment Is there a human readable programming language?
Ironically 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.
Sep
22
comment std::vector reserve() and push_back() is faster than resize() and array index, why?
If you benchmark after the resize/reserve call you can see if this is the reason.
Sep
22
comment std::vector reserve() and push_back() is faster than resize() and array index, why?
A routine check, you are using release rather than debug settings when compiling the code?
Sep
17
awarded  Yearling
Sep
16
awarded  Popular Question
Sep
8
revised Race condition when writing files in Windows
added 114 characters in body
Sep
8
comment Race condition when writing files in Windows
Unfortunately I don't have this control.
Sep
8
revised Race condition when writing files in Windows
added 134 characters in body
Sep
8
comment Race condition when writing files in Windows
Thanks for the tips. I tried disabling my antivirus and it still happen.
Sep
8
asked Race condition when writing files in Windows
Sep
7
comment boost serialization vs google protocol buffers?
This is close to a duplicate of stackoverflow.com/questions/321619/… so it might be helpful as well
Sep
2
comment Globally override malloc in visual c++
Thanks, this seems to add the last piece of the puzzle.
Aug
30
comment Multimap output after copying from map
The auto keyword will make all this so much easier: en.wikipedia.org/wiki/C%2B%2B0x#Type_inference/…
Aug
30
answered Multimap output after copying from map
Aug
30
comment Globally override malloc in visual c++
This 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?
Aug
27
comment Adjust brightness/contrast/gamma of scene in DirectX?
This will not solve your problem, but I think everyone using the word gamma in image processing context should read this: alvyray.com/Memos/9_gamma.pdf
Aug
27
comment Interprocess Communication in C++
+1 for mentioning boost interprocess. boost.org/doc/libs/…
Aug
27
comment Worst UI You’ve Ever Used
Rapid Environment editor (rapidee.com/en/about) might not be perfect, but it's way better than the built in way of doing this.
Aug
26
answered What is the worst class/variable/function name you have ever encountered
Aug
24
comment Globally override malloc in visual c++
I didn't find anything like that in the visual studio linker and the closest I found is using the tool lib.exe (msdn.microsoft.com/en-us/library/…). 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.
Aug
23
comment Globally override malloc in visual c++
For two reasons: If the user of the library wants to add their own memory management functions this will make sure they are used without me having to interfere with the external libraries build process. It would be possible to log whether the library has leaked memory by logging all malloc and free calls between the init and the de-init function is called.
Aug
22
comment Globally override malloc in visual c++
This could definitely work if I used the dynamically linked runtime library. However, I'm worried that I'd override the functions for the executable using my library as well.
Aug
22
comment Globally override malloc in visual c++
I'm not that familiar with LD_PRELOAD, but it seems to be related to dynamic linking, in my case malloc, free and their friends are statically linked.
Aug
22
asked Globally override malloc in visual c++
Aug
21
answered What to do when ending an internship?
Aug
19
answered Inplace conversion of 24bpp bitmap to 32bpp
Aug
19
revised Windows Mobile Phone Book API for C#
deleted 9 characters in body
Aug
18
comment Mix of template and struct
The code you posted compiles in VS 2005. I also managed to instantiate MyClass with int as T1 and T2.
Aug
17
revised Optimize code so that it executes faster.
edited title
Aug
16
awarded  Nice Answer
Aug
16
answered C: Comparison to NULL
Aug
13
answered java graphic library
Aug
4
answered Criteria for selecting the right STL container for the job?
Aug
4
comment Visual Studio 2008, Runtime Libraries usage advice
Yes, but that thread never got the very good answer by David Citron so it was good you brought it up again :)
Aug
4
comment Visual Studio 2008, Runtime Libraries usage advice
This thread discusses the same thing: stackoverflow.com/questions/238465/…
Aug
4
answered Visual Studio 2008, Runtime Libraries usage advice
Aug
4
comment C - Check if Integer is assigned
This thread has some discussion about this: stackoverflow.com/questions/473236/…
Aug
3
answered Is there any service that allows you to send letters via snail mail?
Jul
30
revised Export Unmanaged Classes from a Visual C++ DLL?
deleted 2 characters in body
Jul
30
revised Export Unmanaged Classes from a Visual C++ DLL?
added 181 characters in body; added 44 characters in body
Jul
30
answered Export Unmanaged Classes from a Visual C++ DLL?
Jul
30
comment How to debug the debugger of visual studio 2008 when debugging a multi threaded application ?
Here's a related thread on the subject: stackoverflow.com/questions/336628/…
Jul
30
comment How to optimize a C for loop?
C compilers sometimes can't unroll as aggressive as it should because of pointer aliasing. This means that some manual work can make a difference sometimes.