User coryan - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T08:30:15Zhttp://stackoverflow.com/feeds/user/33325http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1293297/as-a-developer-do-i-need-to-fully-understand-multicasting-protocols-such-as-igmp/1293595#12935952Answer by coryan for As a developer, do I need to fully understand multicasting protocols such as IGMP, PIM-DM and PIM-SM?coryan2009-08-18T12:45:33Z2009-08-18T12:45:33Z<p>Most likely your network engineers are trying to understand things like:</p>
<p>1) Are the subscriptions dense or sparse in the network? Cisco switches (and I presume others) can be configured differently depending on how many subscribers you expect on each segment. The settings affect the performance of the switch.</p>
<p>2) Are you planning to cross multiple LANs or VLANs? Is your TTL going to be anything other than 1? There are settings that also control the algorithms use to route packets in the switch. The wrong settings can make every packet hit the switch CPU. Not a good thing.</p>
<p>The answers to those questions affect the design of the network, i.e., what settings to configure in the routers and switches. Your net engs may be curious about the protocols and contents and what not, but those higher level issues is what will affect their work. My guess is that they want to understand those issues, but do not know how to ask them.</p>
http://stackoverflow.com/questions/1273572/will-pthreads-become-obsolete-once-stdthread-makes-into-cox/1274301#12743011Answer by coryan for Will pthreads become obsolete once std:thread makes into C++Oxcoryan2009-08-13T20:12:21Z2009-08-13T20:12:21Z<p>std::thread does not include support for priorities, controlling the size of the thread stack, controlling the scheduling policy, or controlling the processor affinity.</p>
<p>Scheduling class and priorities are crucial for real-time systems. Processor affinity and stack size are really important for high-performance systems. Such applications will either continue to use the native thread facilities, maybe in addition to std::thread, maybe instead of std::thread, maybe through vendor extensions that expose the needed features along with std::thread.</p>
http://stackoverflow.com/questions/1154447/is-there-an-operating-system-api-wrapper-library-for-c/1155711#11557110Answer by coryan for Is there an operating system API wrapper library for c++?coryan2009-07-20T20:15:01Z2009-07-20T20:15:01Z<p>Boost offers libraries for networking (Boost.Asio), threads (Boost.Thread), time, dates, file system traversal, shared memory, memory mapped files, etc.</p>
<p>ACE also has abstractions for networking, threads, time, file system stuff, shared memory, etc.</p>
<p>AFAIK, neither has GUI abstractions or DB abstractions either.</p>
<p>Others have mentioned Qt, wxWidgets and so forth.</p>
http://stackoverflow.com/questions/960836/cross-platform-alternative-to-com/961999#9619990Answer by coryan for Cross-platform alternative to COMcoryan2009-06-07T14:42:53Z2009-06-07T14:42:53Z<p>Why do you think that CORBA is not fast enough? Have you measured things recently?</p>
<p>Modern implementations of CORBA can make remote calls in less than 150 usecs. Way below your 2msec budget. Modern implementations of CORBA can optimize in-process calls to basically two virtual function calls, though that usually requires the application to forgo some features (interceptors for example.) Even a full featured in the worst case scenario local calls are a couple of lookups + some virtual calls, I do not have numbers handy, but I am certain it is below 50 usecs.</p>
<p>Check this out for some performance numbers:</p>
<p><a href="http://www.dre.vanderbilt.edu/Stats/performance.shtml" rel="nofollow">http://www.dre.vanderbilt.edu/Stats/performance.shtml</a></p>
http://stackoverflow.com/questions/819487/efficiently-convert-between-hex-binary-and-decimal-in-c-c/822128#8221283Answer by coryan for Efficiently convert between Hex, Binary, and Decimal in C/C++coryan2009-05-04T21:23:14Z2009-05-04T21:23:14Z<p>As others have pointed out, I would start with sscanf(), printf() and/or strtoul. They are fast enough for most applications, and they are less likely to have bugs. I will say, however, that these functions are more generic than you might expect, as they have to deal with non-ASCII character sets, with numbers represented in any base and so forth. For some domains it is possible to beat the library functions.</p>
<p>So, measure first, and if the performance of these conversion is really an issue, then:</p>
<p>1) In some applications / domains certain numbers appear very often, for example zero, 100, 200, 19.95, may be so common that it makes sense to optimize your functions to convert such numbers with a bunch of if() statements, and then fall back to the generic library functions.
2) Use a table lookup if the most common 100 numbers, and then fall back on a library function. Remember that large tables may not fit in your cache and may require multiple indirections for shared libraries, so measure these things carefully to make sure you are not decreasing performance.</p>
<p>You may also want to look at boost lexical_cast functions, though in my experience the latter are relatively compared to the good old C functions.</p>
<p>Tough many have said it, it is worth repeating over and over: do not optimize these conversions until you have evidence that they are a problem. If you do optimize, measure your new implementation to make sure it is faster <em>and</em> make sure you have a ton of unit tests for your own version, because you will introduce bugs :-(</p>
http://stackoverflow.com/questions/709145/ace-c-not-calling-canceltimer-mlk/710496#7104960Answer by coryan for ACE (C++): Not calling cancel_timer == MLK?coryan2009-04-02T16:28:14Z2009-04-02T16:28:14Z<p>I think the answer is "it depends". With anything but relative ancient versions of ACE, you can have the Reactor (or Timer_Queue) increase the reference count on your event handler, and decrement it when the event handler is removed from the Reactor (or Timer_Queue.)
Please notice that reference counting is optional, and has to be enabled.</p>
<p>In addition, I have not used this stuff, read the documentation and test!</p>
http://stackoverflow.com/questions/568046/nested-template-specialization/568133#5681332Answer by coryan for Nested Template Specializationcoryan2009-02-20T03:10:14Z2009-02-20T03:10:14Z<p>According to these posts:</p>
<p><a href="http://www.cpptalk.net/template-member-function-specialization-vt11666.html" rel="nofollow">http://www.cpptalk.net/template-member-function-specialization-vt11666.html</a></p>
<p>you cannot specialize template members of a template class without specializing the outside class. They do not cite verse and chapter. My copy of "The C++ Programming Language" does not reveal anything immediately, and my copy of the standard is at home (my backup copy, better known here as "Chris" is not around either :-)</p>
http://stackoverflow.com/questions/329838/c-design-question-network-packets-and-serialization/330797#3307970Answer by coryan for C++ design question - Network packets and serializationcoryan2008-12-01T13:17:11Z2008-12-01T13:17:11Z<p>To have a Factory class that does not know about all the types ahead of time you need to provide a singleton where each class registers itself. I always get the syntax for defining static members of a template class wrong, so do not just cut&paste this:</p>
<pre><code>class Packet { ... };
typedef Packet* (*packet_creator)();
class Factory {
public:
bool add_type(int id, packet_creator) {
map_[id] = packet_creator; return true;
}
};
template<typename T>
class register_with_factory {
public:
static Packet * create() { return new T; }
static bool registered;
};
template<typename T>
bool register_with_factory<T>::registered = Factory::add_type(T::id(), create);
class MyPacket : private register_with_factory<MyPacket>, public Packet {
//... your stuff here...
static int id() { return /* some number that you decide */; }
};
</code></pre>
http://stackoverflow.com/questions/329061/writing-multithreaded-exception-safe-code/330778#3307782Answer by coryan for Writing Multithreaded Exception-Safe Codecoryan2008-12-01T13:07:23Z2008-12-01T13:07:23Z<p>As others have discussed, concurrency (and thread-safety in particular,) is an architectural issue, that affects how you design your system and your application.</p>
<p>But I would like to take your question about tension between exception-safety and thread-safety.</p>
<p>At the class level thread-safety requires changes to the interface. Just like exception-safety does. For example, it is customary for classes to return references to internal variables, say:</p>
<pre><code>class Foo {
public:
void set_value(std::string const & s);
std::string const & value() const;
};
</code></pre>
<p>If Foo is shared by multiple threads, trouble awaits you. Naturally, you could put a mutex or other lock to access Foo. But soon enough, all C++ programmers would want to wrap Foo into a "ThreadSafeFoo". My contention, is that the interface for Foo should be changed to:</p>
<pre><code>class Foo {
public:
void set_value(std::string const & s);
std::string value() const;
};
</code></pre>
<p>Yes, it is more expensive, but it can be made thread-safe with locks inside Foo. IMnsHO this creates a certain amount of tension between thread-safety and exception-safety. Or at least, you need to perform more analysis as each class used as a shared resource needs to be examined under both lights.</p>
http://stackoverflow.com/questions/324237/how-do-i-bring-up-a-promotion-to-my-boss/324288#3242887Answer by coryan for How do I bring up a promotion to my boss?coryan2008-11-27T17:19:27Z2008-11-27T17:19:27Z<p>I would approach your boss directly. Tell him or her that you want to discuss your career path, and would like to know what skills / behaviors you need to exhibit to be promoted. If your boss is a decent person he would present you with a reasonable list. If you have all the skills, come back in a couple of days and say "I thought about it, and I think I have all the skills. Do you agree?" Your boss might disagree and give a more precise definition of what those skills or behaviors are. In a couple of iterations your boss will have no choice but to give you that promotion. Oh, and do not forget the all important email:</p>
<p>"Thank you for taking the time to work with me on my career path. To recap our conversation of a few minutes ago. You think that I need to do X, Y and Z to become an engineer 3. I look forward to demonstrating these skills in the near future."</p>
<p>There is always a chance that your boss will come back with ridiculous requirements ("I expect all my engineer 3's to be able to build a compiler overnight") If that is the case, and you really want that promotion then start searching for another company.</p>
<p>BTW, I supervise a number of developers and managers, and I have both approached people as to what they need to do, and been approached people in this manner. I never felt it was a problem.</p>
<p>Also, you need to decide if you care about the title, the compensation or other aspects of the job (such as how much fun / satisfaction you get from the job itself.) In some companies, your boss may not care about naming you "Lord Protector of the Realm" as long as you still get paid the same. In other companies, the title carries specific privileges or compensation, and those your supervisor might care more. I have worked in both environments.</p>
http://stackoverflow.com/questions/324200/what-advice-can-you-give-me-for-writing-a-meaningful-benchmark/324227#3242272Answer by coryan for What advice can you give me for writing a meaningful benchmark ?coryan2008-11-27T16:53:44Z2008-11-27T16:53:44Z<p>Your question is pretty broad, so unfortunately my answer will not be very specific either.</p>
<p>First, benchmarking is hard. Do not underestimate the effort necessary to produce meaningful, repeatable, high-confidence results.</p>
<p>Second, what is your performance goal? Is it throughput (transaction or operations per second)? Is it latency (time it takes to execute a transaction)? Do you care about average performance? Do I care about worst case performance? Do you care about the absolute worst case or I care that 90%, 95% or some other percentile get adequate performance?</p>
<p>Depending on which goal you have, then you should design your benchmark to measure against that goal. So, if you are interested in throughput, you probably want to send messages / transactions / input into your system at a prescribed rate and see if the system is keeping up.</p>
<p>If you are interested in latency, you would send messages / transactions / input and measure how long it takes to process each one.</p>
<p>If you are interested in worst case performance you will add load to the system until up to whatever you consider "realistic" (or whatever the system design says it should support.)</p>
<p>Second, you do not say if these modules are going to be CPU bound, I/O bound, if they can take advantage of multiple CPUs/cores, etc. As you are trying to evaluate different hardware solutions you may find that your application benefits more from a great I/O subsystem vs. a huge number of CPUs.</p>
<p>Third, the best benchmark (and the hardest) is to put realistic load into the system. Meaning, you record data from a production environment, and put the new hardware solution through this data. Getting this done is harder than it sounds, often, this means adding all kinds of measure points in the system to see how it behaves (if you do not have them already,) modifying the existing system to add record/playback capabilities, modifying the playback to run at different rates, and getting a realistic (i.e., similar to production) environment for testing.</p>
http://stackoverflow.com/questions/322254/temporarily-prevent-linux-from-shutting-down/322346#3223463Answer by coryan for Temporarily prevent linux from shutting downcoryan2008-11-26T22:12:14Z2008-11-26T22:12:14Z<p>Another get-you-started solution: During shutdown, the system runs the scripts in /etc/init.d/ (or really, a script in /etc/rc.*/, but you get the idea.) You could create a script in that directory that checks the status of your backup, and delays shuts down until the backup completes. Or better yet, it gracefully interrupts your backup.</p>
<p>The super-user could workaround this script (with /sbin/halt for example,) but you can not prevent the super-user for doing anything if their mind is really set into doing it.</p>
http://stackoverflow.com/questions/313297/simple-way-to-interpolate-between-points-in-3d-space-to-form-a-smooth-surface/316107#3161070Answer by coryan for Simple way to interpolate between points in 3D space to form a smooth surfacecoryan2008-11-25T01:32:25Z2008-11-25T01:32:25Z<p>Are you looking for a surface interpolation or would a grid be enough?</p>
<p>For a surface interpolation I see that other have suggested using triangulations (for example use this: <a href="http://en.wikipedia.org/wiki/Delaunay_triangulation" rel="nofollow">http://en.wikipedia.org/wiki/Delaunay_triangulation</a>)</p>
<p>For creating a grid: one of my colleagues used the heat equation (<a href="http://en.wikipedia.org/wiki/Heat_equation" rel="nofollow">http://en.wikipedia.org/wiki/Heat_equation</a>) to compute the values for pixels outside the given sample points. This produced extremely realistic looking terrain surfaces, and it was trivial to parallelize.</p>
http://stackoverflow.com/questions/314152/how-to-declare-define-a-class-with-template-template-parameters-without-using-an/314177#3141771Answer by coryan for How to declare/define a class with template template parameters without using an extra template parametercoryan2008-11-24T13:55:28Z2008-11-24T13:55:28Z<p>What is wrong with:</p>
<pre><code>template <typename C >
struct B
{
C c;
};
int main()
{
B< A<int> > b;
return 0;
}
</code></pre>
http://stackoverflow.com/questions/311297/fast-container-for-setting-bits-in-a-sparse-domain-and-iterating-c/311574#3115740Answer by coryan for Fast container for setting bits in a sparse domain, and iterating (C++)?coryan2008-11-22T17:55:08Z2008-11-22T17:55:08Z<p>How much memory do you have? 32-bits take "only" 4GB/8 bytes, which comes to 512MB, not much for a high-end server. That would make your insertions O(1). But that could make the iteration slow. Although skipping all words with only zeroes would optimize away most iterations. If your 100 numbers are in a relatively small range, you can optimize even further by keeping the minimum and maximum around.</p>
<p>I know this is just brute force, but sometimes brute force is good enough.</p>
http://stackoverflow.com/questions/306316/determine-if-two-rectangles-overlap-each-other/306421#3064211Answer by coryan for Determine if two rectangles overlap each other?coryan2008-11-20T18:47:47Z2008-11-20T18:47:47Z<p>Ask yourself the opposite question: How can I determine if two rectangles do not intersect at all? Obviously, a rectangle A completely to the left of rectangle B does not intersect. Also if A is completely to the right. And similarly if A is completely above B or completely below B. In any other case A and B intersect.</p>
<p>What follows may have bugs, but I am pretty confident about the algorithm:</p>
<pre><code>struct Rectangle { int x; int y; int width; int height; };
bool is_left_of(Rectangle const & a, Rectangle const & b) {
if (a.x + a.width <= b.x) return true;
return false;
}
bool is_right_of(Rectangle const & a, Rectangle const & b) {
return is_left_of(b, a);
}
bool not_insersect( Rectangle const & a, Rectangle const & b) {
if (is_left_of(a, b)) return true;
if (is_right_of(a, b)) return true;
// Do the same for top/bottom...
}
bool insersect(Rectangle const & a, Rectangle const & b) {
return !not_insersect(a, b);
}
</code></pre>
http://stackoverflow.com/questions/301693/why-didnt-unit-testing-work-out-for-your-project/303038#3030382Answer by coryan for Why didn't unit testing work out for your project?coryan2008-11-19T19:24:32Z2008-11-19T19:24:32Z<p>I know you are looking for complete failures, but I have found that unit tests are not <em>enough</em> though they certainly help. I work in moderately large systems: 1 million lines of code, multiple services per server, around 100 servers per cluster. We have thousands of unit tests, but those cannot capture the interactions between all these components. So in addition, we have a few thousand integration tests that run the complete system against pre-defined scenarios. In addition, we run new versions of the system in parallel with production against carbon copies of the live data. And despite all that, we still have problems a few times each year.</p>
<p>In another really tiny project (2Kloc) I wrote 3 times as much test code as actual code. I even pushed the code coverage to 100% (at least according to gcov,) yet we still found a few bugs. That might be considered a success (if the defect ratio is acceptable to you,) or a failure (if you think that code coverage and unit testing is enough.)</p>
http://stackoverflow.com/questions/299761/cuda-wrapping-device-memory-allocation-in-c/300753#3007534Answer by coryan for CUDA: Wrapping device memory allocation in C++coryan2008-11-19T01:26:17Z2008-11-19T01:26:17Z<p>I would go with the placement new approach. Then I would define a class that conforms to the std::allocator<> interface. In theory, you could pass this class as a template parameter into std::vector<> and std::map<> and so forth.</p>
<p>Beware, I have heard that doing such things is fraught with difficulty, but at least you will learn a lot more about the STL this way. And you do not need to re-invent your containers and algorithms.</p>
http://stackoverflow.com/questions/300592/enum-in-c-like-enum-in-ada/300740#3007402Answer by coryan for Enum in C++ like Enum in Ada?coryan2008-11-19T01:11:48Z2008-11-19T01:11:48Z<p>One of my colleagues has implemented a tool to generate classes that do most (if not all) of what you want:</p>
<p><a href="http://code.google.com/p/enumgen/" rel="nofollow">http://code.google.com/p/enumgen/</a></p>
<p>The current implementation is in Lisp, but do not hold that against him :-)</p>
http://stackoverflow.com/questions/292124/is-there-any-reason-not-to-make-a-member-function-virtual/292151#29215113Answer by coryan for Is there any reason not to make a member function virtual?coryan2008-11-15T04:26:52Z2008-11-15T04:26:52Z<p>One way to read your questions is "Why doesn't C++ make every function virtual by default, unless the programmer overrides that default." Without consulting my copy of "Design and Evolution of C++": this would add extra storage to every class unless every member function is made non-virtual. Seems to me this would have required more effort in the compiler implementation, and slowed down the adoption of C++ by providing fodder to the performance obsessed (I count myself in that group.)</p>
<p>Another way to read your questions is "Why do C++ programmers do not make every function virtual unless they have very good reasons not to?" The performance excuse is probably the reason. Depending on your application and domain, this might be a good reason or not. For example, part of my team works in market data ticker plants. At 100,000+ messages/second on a single stream, the virtual function overhead would be unacceptable. Other parts of my team work in complex trading infrastructure. Making most functions virtual is probably a good idea in that context, as the extra flexibility beats the micro-optimization.</p>
http://stackoverflow.com/questions/292109/outputting-to-stderr-whenever-malloc-free-is-called/292130#2921301Answer by coryan for Outputting to stderr whenever malloc/free is calledcoryan2008-11-15T04:06:28Z2008-11-15T04:06:28Z<p>I have not tested this myself, but I am pretty sure these would work:</p>
<ul>
<li><p>Since you do not want to re-compile the library, giving meaningful output (vs. just "new called for 23 bytes") may require getting a stack trace. I remember using functions to navigate the stack, but I cannot find them right now. Maybe a call to system() and pstack(1) can do the trick.</p></li>
<li><p>You can re-define operator new and delete, and put this new definition ahead of the std c++ library. This may not capture the calls from containers and standard components that the library in question is using. This would require a relink.</p></li>
<li><p>Use can use LD_PRELOAD to change operator new and delete dynamically. This would not require a re-link if your application is dynamically linked.</p></li>
</ul>
<p>Hope these pointers help, I am sorry I do not have a recipe.</p>
http://stackoverflow.com/questions/285816/how-to-create-automatic-a-list-of-items-used-in-a-latex-document/285998#2859982Answer by coryan for How to create automatic a list of items used in a LaTeX-document?coryan2008-11-13T01:13:14Z2008-11-13T01:13:14Z<p>Have not done this in years, but I would look at the LaTeX source code for \tableofcontents and \listoffigures. I think the mechanism is generic and you can expand it to include your own lists.</p>
http://stackoverflow.com/questions/285933/how-do-you-apply-scrum-to-maintenance-and-legacy-code-improvements/285989#2859890Answer by coryan for How do you apply Scrum to maintenance and legacy code improvements?coryan2008-11-13T01:05:48Z2008-11-13T01:05:48Z<p>You ask about how to use a process for emergencies. Try to reserve the word "emergency" for things that require hacking the code in the production environment with the users connected at the same time. Otherwise, stakeholders are likely to abuse the word and call an emergency on anything they would like to have really fast. Lack of process does not mean out of control: somebody must be accountable for declaring the emergency, and somebody (best practice is somebody else) must authorize the changes outside the normal process and then take responsibility for it.</p>
<p>Other than that, the suggestion of using each iteration to complete a number of fixes and improvements is probably the best way to go.</p>
http://stackoverflow.com/questions/282901/notifying-consumer-when-producer-is-done/282915#2829150Answer by coryan for Notifying consumer when producer is donecoryan2008-11-12T03:19:43Z2008-11-12T03:19:43Z<p>I would follow the "Make it Run, Make it Right, Make it Fast, Make it Simple" pattern.</p>
<p>Can you implement this correctly without an special "EOF" token? If not, then you just have to use the EOF token, do not sweat it. Yes, the termination condition is more complex, but now it is "Right."</p>
http://stackoverflow.com/questions/282372/demote-boostfunction-to-a-plain-function-pointer/282433#2824338Answer by coryan for demote boost::function to a plain function pointercoryan2008-11-11T23:01:08Z2008-11-11T23:01:08Z<p>I think you want to use the target() member function of boost::function (isn't that a mouthful...)</p>
<pre><code>#include <boost/function.hpp>
#include <iostream>
int f(int x)
{
return x + x;
}
typedef int (*pointer_to_func)(int);
int
main()
{
boost::function<int(int x)> g(f);
if(*g.target<pointer_to_func>() == f) {
std::cout << "g contains f" << std::endl;
} else {
std::cout << "g does not contain f" << std::endl;
}
return 0;
}
</code></pre>
http://stackoverflow.com/questions/256065/testing-with-random-inputs-best-practices/256108#2561081Answer by coryan for Testing with random inputs best practicescoryan2008-11-01T21:04:53Z2008-11-01T21:04:53Z<p>Q1) I found that distributed systems with lots of concurrency are good candidates for randomized testing. It is hard to create all possible scenarios for such applications, but random testing can expose problems that you never thought about.</p>
<p>Q2) I guess you could try to use statistics to build an confidence interval around having discovered all "bugs". But the practical answer is: run your randomized tests as many times as you can afford.</p>
<p>Q3) I have found that randomized testing is useful but <em>after</em> you have written the normal battery of unit, integration and regression tests. You should integrate your randomized tests as part of the normal test suite, though probably a small run. If nothing else, you avoid bit rot in the tests themselves, and get some modicum coverage as the team runs the tests with different random inputs.</p>
<p>Q4) When writing randomized tests, make sure you save the random seed with the results of the tests. There is nothing more frustrating than finding that your random tests caught a bug, and not being able to run the test again with the same input. Make sure your test can either be executed with the saved seed too.</p>
http://stackoverflow.com/questions/256038/how-can-i-increase-the-performance-in-a-map-lookup-with-key-type-stdstring/256082#2560821Answer by coryan for How can I increase the performance in a map lookup with key type std::string?coryan2008-11-01T20:40:06Z2008-11-01T20:40:06Z<p>Here are some things you can consider:</p>
<p>0) Are you sure this is where the performance bottleneck is? Like the results from Quantify, Cachegrind, gprof or something like that? Because lookups on such a smap map should be fairly fast...</p>
<p>1) You can override the functor used to compare the keys in std::map<>, there is a second template parameter to do that. I doubt you can do much better than operator<, however.</p>
<p>2) Are the contents of the map changing a lot? If not, and given the very small size of your map, maybe using a sorted vector and binary search could yield better results (for example because you can exploit memory locality better.</p>
<p>3) Are the elements known at compile time? You could use a perfect hash function to improve lookup times if that is the case. Search for gperf on the web.</p>
<p>4) Do you have a lot of lookups that fail to find anything? If so, maybe comparing with the first and last elements in the collection may eliminate many mismatches quicker than a full search every time.</p>
<p>These have been suggested already, but in more detail:</p>
<p>5) Since you have so few strings, maybe you could use a different key. For example, are your keys all the same size? Can you use a class containing a fixed-length array of characters? Can you convert your strings to numbers or some data structure with only numbers?</p>
http://stackoverflow.com/questions/966960/what-does-fpic-mean-when-building-a-shared-library/967055#967055Comment by coryan on What does -fPIC mean when building a shared library?coryan2009-06-08T22:29:14Z2009-06-08T22:29:14ZI thought the OS was free to load the library in any virtual address, but without pic/PIC the loader has to modify the code and adjust all the absolute jumps + indirections to the actual locations of the routines / libraries. With pic/PIC the code is not modified and thus it is really shared across multiple processes.http://stackoverflow.com/questions/708527/implementing-a-plugin-system-in-c-or-c/708591#708591Comment by coryan on Implementing A Plugin System in C or C++coryan2009-04-04T13:49:45Z2009-04-04T13:49:45ZDo you have a link to your paper? Or a reference somewhere?
http://stackoverflow.com/questions/708872/c-runtime-required/709077#709077Comment by coryan on C++ runtime required?coryan2009-04-02T16:15:02Z2009-04-02T16:15:02ZDynamically linked libraries often add a level of indirection for global variables, including vtables. So I would say that they have "better performance" in some exceptional circumstances (constrained memory comes to mind.)
http://stackoverflow.com/questions/335369/finding-c-static-initialization-order-problems/335746#335746Comment by coryan on Finding C++ static initialization order problemscoryan2008-12-02T23:55:51Z2008-12-02T23:55:51ZDouble-checked locking works just fine in C++. It is not <i>guaranteed</i> to work, but in practice it does. There is a difference between the two.
http://stackoverflow.com/questions/329838/c-design-question-network-packets-and-serialization/330797#330797Comment by coryan on C++ design question - Network packets and serializationcoryan2008-12-02T00:16:27Z2008-12-02T00:16:27ZGood points both. The static initialization order problem can be (mostly) solved by using singletons, but then you are dealing with the order of destruction problem for the singletons.
http://stackoverflow.com/questions/315948/c-catching-all-exceptions/315967#315967Comment by coryan on C++ catching all exceptionscoryan2008-11-25T01:18:03Z2008-11-25T01:18:03ZIt is a good practice to catch exceptions by const reference. As in: catch(std::exception const & ex) { /* ... */ }
http://stackoverflow.com/questions/305357/erasing-a-char/305370#305370Comment by coryan on Erasing a Char[]coryan2008-11-20T14:15:14Z2008-11-20T14:15:14ZI thought there was no guarantee that the NUL character ('\0') would have a zero value. More than clarity is gained by using '\0', you make your code portable to all those non-ASCII platforms out there. Which you may or may not care about.http://stackoverflow.com/questions/305357/erasing-a-char/305365#305365Comment by coryan on Erasing a Char[]coryan2008-11-20T14:10:57Z2008-11-20T14:10:57ZPotentially this array could be inside a class, if the class is leaked then the whole array is leaked. Depending on what tools the OP is using, things may be confusing.
http://stackoverflow.com/questions/256038/how-can-i-increase-the-performance-in-a-map-lookup-with-key-type-stdstring/256082#256082Comment by coryan on How can I increase the performance in a map lookup with key type std::string?coryan2008-11-19T19:37:00Z2008-11-19T19:37:00Z@Brian: I would look into hash maps then.http://stackoverflow.com/questions/298577/overriding-a-member-variable-in-c/298590#298590Comment by coryan on Overriding a member variable in C++coryan2008-11-18T12:46:12Z2008-11-18T12:46:12ZI would use dynamic_cast<> rather than static_cast<> in this case. I think it captures the intent better.