Michael Burr
|
Registered User
|
Email: burr.overflow@mailnull.com
CV: |
|
6h |
answered | Are there any good reference implementations available for command line implementations for embedded systems? |
|
1d |
accepted | Are spinlocks a good choice for a memory allocator? |
|
1d |
comment |
Are spinlocks a good choice for a memory allocator? @CyberShadow - that's interesting. I haven't looked at the actual Win32 implementation of a CRITICAL_SECTION in a debugger in a long, long time, but I would have expected that the variant that uses a spinlock would have implemented the spin using a pretty simple InterlockedExchange() loop. I might have to look at this in WinDbg tonight... |
|
2d |
comment |
Good Non-Commerical (free) Refactoring Tool for Visual Studio 2005/Visual C++ 8.0? I'd also recommend VAX - it's been a long while since I tried Refactor! for C++, but when I did I found VAX to be preferable (to me anyway) even though Refactor! was free and VAX wasn't. VAX has increased in price in the meantime, but I'd still agree with Bruno and suggest that you evaluate it. |
|
2d |
answered | Good Non-Commerical (free) Refactoring Tool for Visual Studio 2005/Visual C++ 8.0? |
|
2d |
comment |
checking for NULL before calling free As I understand it, this flaw existed in some compilers even after standardization. |
|
2d |
comment |
Best/worst examples of undefined behavior in C or C++? The problem isn't EOF causing an overrun - when fgetc() is returning EOF it doesn't go through the intermediate unsigned int conversion. The problem is if you have a char being read from the stream which when converted to an unsigned char has a value that can't be represented as an int - that unsigned character will be converted to an int when returned, resulting in an implementation-defined (not undefined) value, which I supposed could happen to match up with the EOF value. |
|
Dec 15 |
comment |
Are spinlocks a good choice for a memory allocator? On single CPU/core systems a spinlock should be implemented by the system as a regular lock, since spinlocks are pointless on those systems. For example, in the Windows kernel the kernel mode spinlocks simply raise the IRQL (effectively disabling scheduling) on single core systems. |
|
Dec 15 |
revised |
Are spinlocks a good choice for a memory allocator? added 2 characters in body |
|
Dec 15 |
answered | Are spinlocks a good choice for a memory allocator? |
|
Dec 15 |
accepted | Sequence points and partial order |
|
Dec 14 |
comment |
Sequence points and partial order @Charles - regarding " i must be evaluated as a modifiable lvalue": the standard says, "Except when it is ... the left operand of the . operator or an assignment operator, an lvalue that does not have array type is converted to the value stored in the designated object (and is no longer an lvalue)." This implies that the left operand of the assignment operator isn't converted to the value stored, so the value isn't 'read'. The operand remains an lvalue, which is an object type (it designates the object). |
|
Dec 14 |
comment |
Sequence points and partial order @mlvljr - thanks for the pointer to N926; I'll have to give it a few days to be able to read more carefully. |
|
Dec 14 |
comment |
sizeof array of structs in C? See stackoverflow.com/questions/1598773/… for an answer that includes some hacks to make the techniques posted below safer. |
|
Dec 13 |
comment |
How to put assert into release builds in C/C++ Then it seems that something must be redefining NDEBUG and including assert.h again (possibly some other header that's being included). |
|
Dec 13 |
comment |
Sequence points and partial order I'd agree - this question hopefully has little real utility. But sometimes one is just curious about these details, and there's not necessarily any harm in that (unless someone goes off and starts writing code like the examples). |
|
Dec 13 |
comment |
How to make the bytes of the block be initialized so that they contain all 0s I think in your pseudocode you should consider using 0 and (n-1) as the limits of the for loop range - I know you're trying to make the answer a bit 'indirect' due to it being a homework problem, but seasoned programmers get indexes off by one enough times that I think using a 1-based index in the pseudocode is plain misleading (and maybe even unfair) to a beginner. |
|
Dec 13 |
revised |
Sequence points and partial order edited body |
|
Dec 13 |
revised |
Sequence points and partial order added 705 characters in body; edited body |
|
Dec 13 |
answered | Sequence points and partial order |
|
Dec 13 |
comment |
Game programming in C++ pdf books @Ash: I have no problem with dupes being closed. I also have no problem if someone doesn't notice that a question is a dupe. |
|
Dec 13 |
comment |
Game programming in C++ pdf books @Ash - rightly or wrongly not everyone is as concerned about duplicates as others might be. As with so many things, there are different opinions regarding the level of importance of identifying dupes so there are different levels of diligence in dealing with them. |
|
Dec 13 |
revised |
Taking advantage of SSE and other CPU extensions. added 937 characters in body |
|
Dec 13 |
comment |
Taking advantage of SSE and other CPU extensions. You might be able to get away with a simple if branch, but I'd think you'll probably have to do something like compile to separate modules to make the compiler happy. But my thinking with function pointers is that you'd set them up to an appropriate routine at initialization and just call through them like regular functions - there would be no if conditionals at that point. |
|
Dec 12 |
answered | Taking advantage of SSE and other CPU extensions. |
|
Dec 12 |
answered | Bitwise Or: C# versus C++ |
|
Dec 12 |
revised |
Linking error when compiling C and C++ code with g++ added 1362 characters in body; added 21 characters in body; added 125 characters in body |
|
Dec 12 |
comment |
Linking error when compiling C and C++ code with g++ it looks like you're running into a problem that's not directly related to whether or not the C functions are properly declared with extern "C", since the linker isn't finding the C++ wrapper functions. Fix that problem first, then you can address the extern "C" issue (if necessary). |
|
Dec 12 |
answered | Sites for function reference |
|
Dec 12 |
answered | Complex Declarations |
|
Dec 12 |
comment |
Linking error when compiling C and C++ code with g++ Jalf is right - I'm suspecting that you've declared the C function prototypes inside the class that you want to have wrap them, which would be wrong. But I can only guess because we can't see the code. |
|
Dec 12 |
revised |
Linking error when compiling C and C++ code with g++ added 321 characters in body |
|
Dec 12 |
revised |
Linking error when compiling C and C++ code with g++ added 788 characters in body |
|
Dec 12 |
answered | Linking error when compiling C and C++ code with g++ |
|
Dec 12 |
revised |
Concat string in IsNullOrEmpty parameter added 424 characters in body |
|
Dec 12 |
answered | Concat string in IsNullOrEmpty parameter |
|
Dec 12 |
comment |
Linking error when compiling C and C++ code with g++ Can you show the declaration of class BWAGenome and at least some snippets from around the calls to the 2 problem functions? |
|
Dec 12 |
comment |
Concat string in IsNullOrEmpty parameter I was also surprised that concatenating null string references didn't throw. |
|
Dec 12 |
comment |
How can I obfuscate a test in code to prevent tampering with response processing? I like the idea of using state machine techniques. |
|
Dec 12 |
awarded | ● Enlightened |
|
Dec 12 |
awarded | ● Nice Answer |
|
Dec 12 |
accepted | Simple, efficient weak pointer that is set to NULL when target memory is deallocated |
|
Dec 11 |
accepted | Does GPL code linking with proprietary library depend which is created first? |
|
Dec 10 |
comment |
C/C++ default argument set as a previous argument I don't follow - if you do something like this, there's no reason to pass parameters at all since they aren't being used. |
|
Dec 10 |
comment |
Interfacing 45DB161 data flash with 89LP4052 controller. In addition to the datasheets read any errata for the devices. I got bit last year on a part where some SPI signals were out of phase for one clock if the clock rate divisor had its low bit set. |
|
Dec 10 |
accepted | How do I convert a value from host byte order to little endian? |
|
Dec 10 |
comment |
Searching for non-commercial license for source code I think the OP is interested in preventing commercial use - not only restricting or discouraging deriving commercial software from his work. |
|
Dec 10 |
comment |
difference between -h <name> and -o <outputfile> options in cc (C++) Good question - the docs say, "in general, the name after -h should be exactly the same as the one after –o". It might be of more interest if they said when you might want them to be different or what happens if you specify one without the other. I think a little experimentation is in order. |
|
Dec 9 |
comment |
C++ struct size: 2+4+2+2+4 = 16 Dupe: stackoverflow.com/questions/119123/… |
|
Dec 9 |
revised |
SSE2 - 16-byte aligned dynamic allocation of memory added 214 characters in body |
