User Andrew Edgecombe - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T13:30:47Z http://stackoverflow.com/feeds/user/11694 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1884475/g-linker-segment/1884617#1884617 2 Answer by Andrew Edgecombe for g++ linker segment Andrew Edgecombe 2009-12-10T22:43:43Z 2009-12-10T22:43:43Z <p>Using gcc you can use the <code>__attribute__((section))</code> syntax to specify the linker section for a symbol. (see <a href="http://gcc.gnu.org/onlinedocs/gcc-2.95.3/gcc%5F4.html#SEC84" rel="nofollow">here</a> for details)</p> <p>You should be able to use the same syntax in g++</p> http://stackoverflow.com/questions/1835923/generating-random-numbers-in-c/1836409#1836409 0 Answer by Andrew Edgecombe for Generating random numbers in C Andrew Edgecombe 2009-12-02T22:44:30Z 2009-12-02T22:44:30Z <p>Depending on your requirements for statistical randomness you might find it better to ditch the psuedo random number generator and try an external source.</p> <p><a href="http://www.random.org/integers/" rel="nofollow">random.org</a> and <a href="http://www.randomnumbers.info/content/Download.htm" rel="nofollow">randomnumbers.info</a> (amongst others) will provide truly random numbers for download, which <a href="http://curl.haxx.se/" rel="nofollow">libcurl</a> should handle for you.</p> http://stackoverflow.com/questions/110684/what-coding-techniques-do-you-use-for-optimising-c-programs 17 What coding techniques do you use for optimising C programs? Andrew Edgecombe 2008-09-21T10:04:37Z 2009-11-04T12:32:27Z <p>Some years ago I was on a panel that was interviewing candidates for a relatively senior embedded C programmer position.</p> <p>One of the standard questions that I asked was about optimisation techniques. I was quite surprised that some of the candidates didn't have answers.</p> <p>So, in the interests of putting together a list for posterity - what techniques and constructs do you normally use when optimising C programs?</p> <p>Answers to optimisation for speed and size both accepted.</p> http://stackoverflow.com/questions/1633934/designing-a-simple-network-packet/1634178#1634178 0 Answer by Andrew Edgecombe for Designing a simple network packet Andrew Edgecombe 2009-10-27T23:03:42Z 2009-10-27T23:03:42Z <p>If you're developing something as a learning exercise you might find it best to go with a structured text (ie. human readable and human writable) format.</p> <p>An example would be to use a fixed number of fields per command, fixed width text fields and/or easily parsable field delimiters.</p> <p>Generally text is less efficient in terms of packet size, but it does have the benefits that you can read it easily if you do a packet capture (eg. using wireshark) or if you want to use telnet to mimic a client.</p> <p>And if this is only a learning exercise then ease of debugging is a significant issue.</p> http://stackoverflow.com/questions/1622644/c-compiler-that-creates-object-code-for-two-different-machines/1622652#1622652 2 Answer by Andrew Edgecombe for c++ compiler that creates object code for two different machines Andrew Edgecombe 2009-10-26T00:54:14Z 2009-10-26T00:54:14Z <p>This is quite common using gcc.</p> <p>There are a number of tutorials around that describe building your own cross-compiler environment. <a href="http://www.cowlark.com/2009-07-04-building-gcc/" rel="nofollow">This</a> is one, but a quick google will probably provide a link to someone doing exactly the mix of environments that you're after.</p> <p>edit: <a href="http://www.kegel.com/crosstool/current/doc/crosstool-howto.html" rel="nofollow">This</a> is a more thorough tutorial, using crosstool</p> http://stackoverflow.com/questions/1409216/receiving-key-press-and-key-release-events-in-linux-terminal-applications/1598436#1598436 0 Answer by Andrew Edgecombe for Receiving key press and key release events in Linux terminal applications? Andrew Edgecombe 2009-10-21T02:29:56Z 2009-10-21T02:29:56Z <p>The following links may be of some assistance in using the keyboard raw mode which will give you access to the keyboard events rather than just key releases.</p> <ol> <li>This Linux Journal <a href="http://www.linuxjournal.com/article/1080" rel="nofollow">article</a></li> <li>This <a href="http://asm.sourceforge.net/articles/rawkb.html" rel="nofollow">article</a> on SourceForge</li> <li>And this <a href="http://tldp.org/HOWTO/Keyboard-and-Console-HOWTO-9.html" rel="nofollow">HOWTO</a> for when it all goes bad</li> </ol> <p>Raw mode does have the disadvantage that you have to do your own conversion from scan codes to characters though.</p> http://stackoverflow.com/questions/131128/what-standard-techniques-are-there-for-using-cpu-specific-features-in-dlls 3 What standard techniques are there for using cpu specific features in DLLs? Andrew Edgecombe 2008-09-25T02:12:59Z 2009-10-17T20:23:40Z <p>Short version: I'm wondering if it's possible, and how best, to utilise CPU specific instructions within a DLL?</p> <p>Slightly longer version: When downloading (32bit) DLLs from, say, Microsoft it seems that one size fits all processors.</p> <p>Does this mean that they are strictly built for the lowest common denominator (ie. the minimum platform supported by the OS)? Or is there some technique that is used to export a single interface within the DLL but utilise CPU specific code behind the scenes to get optimal performance? And if so, how is it done?</p> http://stackoverflow.com/questions/1564195/gnu-makes-j-option/1564281#1564281 5 Answer by Andrew Edgecombe for GNU make's -j option Andrew Edgecombe 2009-10-14T04:45:49Z 2009-10-14T04:59:01Z <p>In short - make sure that your dependencies are correct and complete.</p> <p>If you are using a single threaded make then you can be blindly ignoring implicit dependencies between targets. When using parallel make you can't rely on the implicit dependencies. They should all be made explicit. This is probably the most common trap. Particularly if using .phony targets as dependencies.</p> <p><a href="http://developers.sun.com/solaris/articles/parallel%5Fmake.html" rel="nofollow">This</a> link is a good primer on some of the issues with parallel make.</p> http://stackoverflow.com/questions/1521822/is-there-a-way-to-discover-what-different-types-of-switches-am-i-connected-to/1522751#1522751 1 Answer by Andrew Edgecombe for Is there a way to discover what different types of switches am I connected to? Andrew Edgecombe 2009-10-05T22:33:48Z 2009-10-06T23:08:47Z <p>There is no guaranteed way of being able to achieve this. It depends very much on how your switch has been configured and how open your network admins have made it.</p> <p>If everything is completely open then the best way of finding out the type of switch is to use snmp. The net-snmp library for perl (see docs <a href="http://search.cpan.org/~dtown/Net-SNMP-v6.0.0/lib/Net/SNMP.pm" rel="nofollow">here</a>) is a good place to start. But that assumes that the management interface is exposed to your box.</p> <p>There is no guarantee that it will be.</p> <p>If it is then nmap (as suggested by others) may work. At least it might tell you if the management interface is accessible at which point you can use snmp to tell you the rest. Traceroute <em>might</em> yield some more information, but only if the address used for it's routing is the same as the management address. (and assuming that your "switch" is really a "router". If not then this won't yield any useful information.)</p> <p>ping <em>might</em> yield some information about the manufacturer, but only if it hasn't been configured to proxy-arp.</p> http://stackoverflow.com/questions/112996/what-tool-application-whatever-do-you-wish-existed/113226#113226 2 Answer by Andrew Edgecombe for What tool/application/whatever do you wish existed? Andrew Edgecombe 2008-09-22T04:52:37Z 2009-09-01T23:37:58Z <p>For ages I have wistfully imagined a programming syntax aware "meta"-text editor.</p> <p>Basically instead of storing your source as raw text it would store it in a parsed and tokenized form, where things like variables were detected as being variables, functions were stored as functions etc. with enough context information to be able to determine scope and a whole bunch of other neat stuff.</p> <p>You'd be able to rename variables throughout your source tree with 100% accuracy by merely changing name of the token that had been saved. You'd be able to end the wars that break out when two people from different sides of the "one true bracing style" fence spoke to each other. If done right it could even swap between languages for you by changing the semantics.</p> <p>Think of the peace and harmony that it would bring to the world!</p> <p>(edit) It seems this is an idea shared by others. See <a href="http://mindprod.com/project/scid.html" rel="nofollow">SCID</a> for a wishlist.</p> http://stackoverflow.com/questions/1331889/is-there-such-thing-as-a-technical-manual-that-is-not-inherently-staggeringly-dul/1332457#1332457 1 Answer by Andrew Edgecombe for Is there such thing as a technical manual that is not inherently staggeringly dull to read? Andrew Edgecombe 2009-08-26T05:13:39Z 2009-08-26T05:13:39Z <p>More of a howto than a technical manual, but <a href="http://poignantguide.net/" rel="nofollow">Why's (Poignant) Guide to Ruby</a></p> http://stackoverflow.com/questions/1325378/packet-socket-in-promiscuous-mode-only-receiving-local-traffic/1325407#1325407 2 Answer by Andrew Edgecombe for Packet socket in promiscuous mode only receiving local traffic Andrew Edgecombe 2009-08-25T00:07:29Z 2009-08-25T03:51:57Z <p>Along with Rob Jones' suggestion, try a tool like <a href="http://www.wireshark.org/" rel="nofollow">Wireshark</a> to make sure that you're receiving the packets that you expect at the interface. At least that will confirm (or deny) that you have a problem with your code.</p> <p>Also need to make sure that the interface itself is set to promiscuous mode. If not then you can use the ioctl() to set it:</p> <pre><code>ifr.ifr_flags |= IFF_PROMISC; if( ioctl(sock, SIOCSIFFLAGS, &amp;ifr) != 0 ) { // handle error here } </code></pre> <p>While your application is running, make sure that ifconfig reports the PROMISC flag for that interface.</p> <p>Note that this will need to be executed as a privileged user.</p> <p><hr /></p> <p>Tried out the code as presented. Works for me. Of course (due to the test on line 102) this will only print details for TCP traffic.</p> http://stackoverflow.com/questions/109666/how-do-you-do-very-quick-and-dirty-estimations-for-coding-tasks 10 How do you do very quick (and dirty) estimations for coding tasks? Andrew Edgecombe 2008-09-20T22:47:22Z 2009-07-30T14:07:18Z <p>So you've just been put on the spot by The Boss. You've got 15 minutes to come up with a back of the envelope estimate for the addition of some new feature. Your boss (fortunately) recognizes that you can't provide an accurate estimate in that time so expecting something that is in the right order of magnitude.</p> <p>The question is how do you go about giving a estimate in the time frame that is accurate to an order of magnitude?</p> <p><hr /></p> <p>Note that this is meant to be a quick and dirty estimate, not something that might be expected from questions like <a href="http://stackoverflow.com/questions/14279/how-to-estimate-the-length-of-a-programming-task#14289">this</a></p> http://stackoverflow.com/questions/727855/whats-the-best-way-to-do-estimates-without-spending-a-lot-of-time/728071#728071 1 Answer by Andrew Edgecombe for What's the best way to do estimates without spending a lot of time? Andrew Edgecombe 2009-04-08T00:17:07Z 2009-04-08T00:17:07Z <p>Similar to <a href="http://stackoverflow.com/questions/109666/how-do-you-do-very-quick-and-dirty-estimations-for-coding-tasks">this</a> question.</p> http://stackoverflow.com/questions/719823/detect-whether-a-socket-program-is-connecting-to-itself/720047#720047 1 Answer by Andrew Edgecombe for Detect whether a socket program is connecting to itself Andrew Edgecombe 2009-04-06T01:50:21Z 2009-04-06T01:50:21Z <p>One of the parameters to the <code>accept()</code> function is a pointer to a <code>struct sockaddr</code>.</p> <p>When you call <code>accept()</code> on the server side it will fill in the address of the remote machine connecting to your server socket.</p> <p>If that address matches the address of any of the interfaces on that machine then that indicates that the client is on the same machine as the server.</p> http://stackoverflow.com/questions/707920/gcc-compiler-error-redefinition-previously-defined/708610#708610 5 Answer by Andrew Edgecombe for GCC compiler error: "redefinition...previously defined" Andrew Edgecombe 2009-04-02T07:09:03Z 2009-04-02T07:09:03Z <p>The error means that there is a symbol that has been defined in one place and an alternate definition has been made in another place.</p> <p>This can occur if in cases like:</p> <ul> <li>if you define two functions with the same name</li> <li>if there is a mismatch between a function and it's prototype</li> <li>you call a non-trivial function before it has been defined, and without a prototype</li> </ul> <p>In this last case there will be a mismatch between the real function and the "implicit declaration" that the compiler assumes when it doesn't have a prototype to use.</p> <p>These situations can be avoided by:</p> <ul> <li>Ensuring that function prototypes are only declared once</li> <li>Ensuring that all functions have unique names within their scope (ie. within a file if they are <code>static</code>, or unique if they are used between object files)</li> <li>Be careful if using <code>extern</code> statements in source files to declare prototypes. Better to use a prototype from the appropriate header file.</li> <li>Ensure that all functions have prototypes - either within the source file in the case of <code>static</code> functions, or in a header file if they are to be used by other object files.</li> <li>Ensure that all header files can only be included once for each source file, by using either of the constructs suggested by Mehrdad and Brian R. Bondy</li> </ul> http://stackoverflow.com/questions/699697/how-to-branch-code-to-another-repository-for-svn/703134#703134 0 Answer by Andrew Edgecombe for how to branch code to another repository for SVN? Andrew Edgecombe 2009-03-31T21:30:09Z 2009-03-31T21:30:09Z <p>The official svn-book refers to a script that you can use to make this process easier, called <code>svn_load_dirs.pl</code>. Take a look at the <a href="http://svnbook.red-bean.com/en/1.5/svn.advanced.vendorbr.html#svn.advanced.vendorbr.svn%5Fload%5Fdirs" rel="nofollow">online manual</a></p> http://stackoverflow.com/questions/270598/are-there-any-tools-for-checking-symbols-in-cross-compiled-so-files 2 Are there any tools for checking symbols in cross compiled .so files? Andrew Edgecombe 2008-11-06T22:33:46Z 2009-03-27T00:45:19Z <p>I've got an application that loads .so files as plugins at startup, using <code>dlopen()</code></p> <p>The build environment is running on x86 hardware, but the application is being cross compiled for another platform.</p> <p>It would be great if I could (as part of the automated build process) do a check to make sure that there aren't any unresolved symbols in a combination of the .so files and the application, without having to actually deploy the application.</p> <p>Before I write a script to test symbols using the output of <code>nm</code>, I'm wondering if anyone knows of a utility that already does this?</p> <p><hr /></p> <p>edit 1: changed the description slightly - I'm not just trying to test symbols in the .so, but rather in a combination of several .so's and the application itself - ie. after the application loaded all of the .so's whether there would still be unresolved symbols.</p> <p>As has been suggested in answers (thanks Martin v. Löwis and tgamblin), <code>nm</code> will easily identify missing symbols in a single file but won't easily identify which of those symbols has been resolved in one of the other loaded modules.</p> http://stackoverflow.com/questions/270598/are-there-any-tools-for-checking-symbols-in-cross-compiled-so-files/688102#688102 0 Answer by Andrew Edgecombe for Are there any tools for checking symbols in cross compiled .so files? Andrew Edgecombe 2009-03-27T00:45:19Z 2009-03-27T00:45:19Z <p>The restrictions in <code>ldd</code> turned out to mean that it wasn't possible to use for a comprehensive symbol checker. In particular, <code>ldd</code> would only list exported symbols.</p> <p>However, <code>readelf</code> will produce a comprehensive list, along with all of the library dependencies.</p> <p>Using <code>readelf</code> it was possible to build up a script that would: Create a list of all of the libraries used, Build up a list of symbols in an executable (or .so) Build up a list of unresolved symbols - if there are any unresolved symbols at this point, there would have been an error at load time.</p> <p>This is then repeated until no new libraries are found.</p> <p>If this is done for the executable and all of the <code>dlopen()</code>ed .so files it will give a good check on unresolved dependencies that would be encountered at run time.</p> http://stackoverflow.com/questions/679145/how-to-set-up-a-winsock-udp-socket/679679#679679 0 Answer by Andrew Edgecombe for How to set up a Winsock UDP socket? Andrew Edgecombe 2009-03-24T23:31:01Z 2009-03-24T23:31:01Z <p>When you say "I want to indicate which local IP to use, since I'm running a few nics", do you mean that you want to specify the ip address, or do you want to specify the nic and use the associated ip address?</p> <p>If you are trying to specify the nic, <a href="http://stackoverflow.com/questions/335607/how-do-i-make-an-outgoing-socket-to-a-specific-network-interface/335662">this question</a> should be relevant.</p> http://stackoverflow.com/questions/676200/how-to-make-use-of-full-bandwidth/679465#679465 1 Answer by Andrew Edgecombe for How to make use of full bandwidth? Andrew Edgecombe 2009-03-24T22:12:10Z 2009-03-24T22:12:10Z <p>Originally I misread the question, and thought that it was a duplicate of <a href="http://stackoverflow.com/questions/99054/having-trouble-achieving-1gbit-udp-throughput/107994">this</a>. But the 100Mbps makes it completely different.</p> <p>Even very modest hardware should be able to saturate a 100Mbps connection with no problems - particularly if you're using 1440 byte udp packets.</p> <p>As suggested by krosenvold, the figures do look suspiciously like a 10Mbps connection, rather than 100Mbps. I would check all of the links from end to end to make sure that they are at the 100Mbps that you believe them to be. Any 10Mbps link in that chain is going to be a problem.</p> <p>Depending on the equipment that you're using you may find that there have been issues with link autonegotiation. Some equipment is notoriously bad, so you may find better results by turning autonegotiation off, and forcing the link speeds to 100Mbps.</p> <p>And as you have a pcap file that you're using, I would suggest trying <a href="http://tcpreplay.synfin.net/" rel="nofollow">tcpreplay</a> to do some speed testing. There are several options that tcpreplay provides to replay files at the highest possible speed. (in particular, look at <a href="http://tcpreplay.synfin.net/trac/wiki/tcpreplay#Replayingatdifferentspeeds" rel="nofollow">this</a> wiki entry)</p> <p>If that gives you different results than you're seeing at the moment it could point to a problem with the pcap file. For example, the pcap files do contain timing information that can be used when replaying the file. If the timing in your pcap file was taken from a 10Mbps network (for example) then replaying it in real time will give you the result that you're seeing.</p> http://stackoverflow.com/questions/676820/what-source-files-can-i-read-for-learning-c/676890#676890 1 Answer by Andrew Edgecombe for What source files can I read for learning C? Andrew Edgecombe 2009-03-24T10:52:10Z 2009-03-24T10:52:10Z <p>As suggested by sharptooth, you will get more mileage out of actually writing C than you will by just reading it. It's much more likely that you'll miss some of the subtle areas of the language (or any other language for that matter) if you're not actually confronted by compiler errors or bugs.</p> <p>From memory there is quite a decent tutorial/introduction to C over at <a href="http://www.linuxchix.org/content/courses/c%5Fprogramming/" rel="nofollow">linuxchix.org</a>.</p> http://stackoverflow.com/questions/670101/c-functions-ampersand-vs-asterisk/670143#670143 16 Answer by Andrew Edgecombe for C++ functions: ampersand vs asterisk Andrew Edgecombe 2009-03-21T22:44:46Z 2009-03-21T22:44:46Z <p>Pointers (ie. the '*') should be used where the passing "NULL" is meaningful. For example, you might use a NULL to represent that a particular object needs to be created, or that a particular action doesn't need to be taken. Or if it ever needs to be called from non-C++ code. (eg. for use in shared libraries)</p> <p>eg. The libc function <code>time_t time (time_t *result);</code></p> <p>If <code>result</code> is not NULL, the current time will be stored. But if <code>result</code> is NULL, then no action is taken.</p> <p>If the function that you're writing doesn't need to use NULL as a meaningful value then using references (ie. the '&amp;') will probably be less confusing - assuming that is the convention that your project uses.</p> http://stackoverflow.com/questions/616752/single-file-merge-in-subversion/617021#617021 0 Answer by Andrew Edgecombe for Single file merge in subversion Andrew Edgecombe 2009-03-05T22:45:10Z 2009-03-05T22:45:10Z <p>Try specifying the path to the local file as well. eg. svn merge -r1234:1235 svn://your_svn_url/to/file ./local_file</p> http://stackoverflow.com/questions/540622/looking-for-papers-studies-on-tdd-effectivness/540829#540829 1 Answer by Andrew Edgecombe for Looking for papers/studies on TDD effectivness Andrew Edgecombe 2009-02-12T10:57:24Z 2009-02-12T10:57:24Z <p>Take a look at papers by Nancy Van Schooenderwoert (et al) at <a href="http://www.agilerules.com/" rel="nofollow">www.agilerules.com</a>. In particular "Embedded Agile Project by the Numbers With Newbies"</p> http://stackoverflow.com/questions/388200/architectural-suggestions-in-a-linux-app/388235#388235 1 Answer by Andrew Edgecombe for Architectural Suggestions in a Linux App Andrew Edgecombe 2008-12-23T05:19:12Z 2008-12-23T05:19:12Z <p>The suggestion to use a pair of threads sounds like it will do the trick, as long as the burden of performing the calculations is not too great.</p> <p>Instead of using the <code>pipe()</code> as suggested by Cogsy, I would be inclined to use a mutex to lock a chunk of memory that you use to contain the output of your calculation thread - using it as a transfer area between the threads.</p> <p>When your calculation thread is ready to output to the buffer it would grab the mutex, write to the transfer buffer and release the mutex.</p> <p>When your transmit thread was ready to send a packet it would "try" to lock the mutex. If it gets the lock, take a copy of the transfer buffer and send it. If it doesn't get the lock, send the last copy.</p> <p>You can control the priority of your process by using "nice" and specifying a negative adjustment figure to give it higher priority. Note that you will need to do this as superuser (either as root, or using 'sudo') to be able to specify negative values.</p> <p><hr /></p> <p>edit: Forgot to add - <a href="http://www.yolinux.com/TUTORIALS/LinuxTutorialPosixThreads.html" rel="nofollow">this</a> is a good tutorial on pthreads on linux. Also describes the use of mutexes.</p> http://stackoverflow.com/questions/377303/snmp-mib-development-tool/377456#377456 1 Answer by Andrew Edgecombe for SNMP MIB development tool Andrew Edgecombe 2008-12-18T10:20:55Z 2008-12-18T10:29:21Z <p>According to <a href="http://net-snmp.sourceforge.net/wiki/index.php/Writing_your_own_MIBs" rel="nofollow">this</a> net-snmp howto, there is a tool called <a href="http://www.ibr.cs.tu-bs.de/projects/libsmi/smilint.html" rel="nofollow">smilint</a> from the <a href="http://www.ibr.cs.tu-bs.de/projects/libsmi/" rel="nofollow">smilib</a> package that they recommend. Sounds more directed than using snmptranslate.</p> <p>See also <a href="http://www.ops.ietf.org/mib-review-tools.html" rel="nofollow">this</a> ietf page for descriptions on usage.</p> http://stackoverflow.com/questions/366566/how-do-i-prepare-myself-for-working-with-other-programmers/367095#367095 3 Answer by Andrew Edgecombe for How do I prepare myself for working with other programmers? Andrew Edgecombe 2008-12-14T22:38:09Z 2008-12-14T22:38:09Z <p>One thing that self-taught programmers often lack is language. I'm not talking about traditional progamming languages per se. I'm talking about the language of programming.</p> <p>You will find it much easier to deal with other programmers and be able to smooth your integration if you already know the strict definition of things like "class", "object", "iterator", "inherit" and a whole bunch besides.</p> http://stackoverflow.com/questions/335607/how-do-i-make-an-outgoing-socket-to-a-specific-network-interface/335662#335662 5 Answer by Andrew Edgecombe for How do I make an outgoing socket to a SPECIFIC network interface? Andrew Edgecombe 2008-12-02T22:17:07Z 2008-12-02T22:24:13Z <p>You can certainly bind a socket to a specific device.</p> <p>I don't know how to do it in python, but using the berkeley socket api (in C) you need to call <code>setsockopt()</code>, using the option <code>SO_BINDTODEVICE</code>.</p> <p>You pass in an interface descriptor, which is of type <code>struct ifreq</code>. Ideally you would get the contents of the interface descriptor by using <code>ioctl()</code>, and requesting <code>SIOCGIFINDEX</code> - passing the name of the interface (eg. eth0) as an argument.</p> <p><hr /></p> <p>edit: Just did a quick search and found <a href="http://pydoc.org/2.4.1/socket.html" rel="nofollow">this</a> documentation of the socket methods in python. <code>setsockopt()</code> is amongst them.</p> http://stackoverflow.com/questions/324386/logging-over-the-wire/324806#324806 3 Answer by Andrew Edgecombe for Logging over the wire? Andrew Edgecombe 2008-11-27T23:34:12Z 2008-11-27T23:34:12Z <p>A very simple logging option is to use syslog and rely on (after correct configuration) the syslog daemon to forward it to a remote server.</p> <p>Take a look at:</p> <p><code>openlog()</code> </p> <p><code>syslog()</code></p> <p><code>closelog()</code></p> <p>and:</p> <p><code>syslog.conf</code></p> http://stackoverflow.com/questions/1387450/help-interpreting-gdb-segfault-in-function/1387471#1387471 Comment by Andrew Edgecombe on Help interpreting gdb: segfault in function Andrew Edgecombe 2009-09-07T03:53:21Z 2009-09-07T03:53:21Z The &quot;address&quot; 0x33313532 does look quite suspiciously like it's full of ascii characters (ie. &quot;3152&quot;). I second a1kmm's suggestion of buffer overflow. http://stackoverflow.com/questions/1376872/c-pthreads-mutex-and-general-headaches Comment by Andrew Edgecombe on C - Pthreads mutex and general headaches Andrew Edgecombe 2009-09-04T03:09:39Z 2009-09-04T03:09:39Z First impression is that there's a scope issue with your CarPark structure up in the thread. Can you show some details of the thread itself? http://stackoverflow.com/questions/1361187/fast-screen-capture-and-video-recording Comment by Andrew Edgecombe on Fast screen capture and video recording Andrew Edgecombe 2009-09-01T12:20:08Z 2009-09-01T12:20:08Z Do you need to capture the whole screen, or just the contents of a particular (albeit possibly fullscreen) window? http://stackoverflow.com/questions/276022/line-width-formatting-standard Comment by Andrew Edgecombe on Line width formatting standard Andrew Edgecombe 2008-11-10T01:25:45Z 2008-11-10T01:25:45Z Very similar question to <a href="http://stackoverflow.com/questions/110928/" rel="nofollow">stackoverflow.com/questions/110928</a> http://stackoverflow.com/questions/206248/how-do-you-programmatically-eject-an-usb-mass-storage-device Comment by Andrew Edgecombe on How do you programmatically eject an USB mass storage device? Andrew Edgecombe 2008-10-15T22:35:07Z 2008-10-15T22:35:07Z Identified as a duplicate of <a href="http://stackoverflow.com/questions/85649/safe-remove-usb-drive-using-win32-api" rel="nofollow" title="safe remove usb drive using win32 api">stackoverflow.com/questions/85649/&hellip;</a> http://stackoverflow.com/questions/204169/how-to-create-a-tcp-socket-connect-using-c-to-a-predefined-port/204237#204237 Comment by Andrew Edgecombe on How to Create a TCP socket connect using C to a predefined port Andrew Edgecombe 2008-10-15T11:18:05Z 2008-10-15T11:18:05Z This will only tell you if there is a listening socket on that port, not whether it's open. http://stackoverflow.com/questions/200442/dos-and-donts-of-a-technical-presentation/200465#200465 Comment by Andrew Edgecombe on DOs and DON'Ts of a technical presentation Andrew Edgecombe 2008-10-14T22:13:24Z 2008-10-14T22:13:24Z Perfectly put, Dave. Same goes for any props that are used during the presentation. If they can stand on their own, you're not adding value by being there. http://stackoverflow.com/questions/199219/ping-always-succeeds-cant-easily-check-uptime-using-ping-on-a-url/199234#199234 Comment by Andrew Edgecombe on Ping always succeeds, cant easily check uptime using ping on a url Andrew Edgecombe 2008-10-14T02:22:31Z 2008-10-14T02:22:31Z eg. Check the return code of <code>wget http:&#47;&#47;foo.com/ -O - &gt; /dev/null 2&gt;&amp;1</code> http://stackoverflow.com/questions/199333/best-way-to-detect-integer-overflow-in-c-c/199354#199354 Comment by Andrew Edgecombe on Best way to detect integer overflow in C/C++ Andrew Edgecombe 2008-10-14T00:30:27Z 2008-10-14T00:30:27Z Ah - that would be a subtly different question then. ;-) http://stackoverflow.com/questions/178264/sqlite-on-an-embedded-system/187579#187579 Comment by Andrew Edgecombe on Sqlite on an embedded system Andrew Edgecombe 2008-10-10T01:00:07Z 2008-10-10T01:00:07Z ...but beware of licensing issues, which is an issue that sqlite doesn't have. http://stackoverflow.com/questions/182077/best-way-to-simulate-a-wan-network Comment by Andrew Edgecombe on Best way to simulate a WAN network Andrew Edgecombe 2008-10-08T11:13:27Z 2008-10-08T11:13:27Z Could you elaborate on what sort of performance testing you're trying to do? http://stackoverflow.com/questions/161273/how-do-i-program-a-driver-for-a-usb-device-for-windows-platform/161391#161391 Comment by Andrew Edgecombe on How do I program a driver for a USB device for windows platform? Andrew Edgecombe 2008-10-07T22:07:57Z 2008-10-07T22:07:57Z Thanks Ilya - updated accordingly http://stackoverflow.com/questions/171765/what-is-the-best-way-to-get-all-the-divisors-of-a-number Comment by Andrew Edgecombe on What is the best way to get all the divisors of a number? Andrew Edgecombe 2008-10-05T22:43:03Z 2008-10-05T22:43:03Z The reason that it was suggested that this question was almost a duplicate of the &quot;Algorithm to calculate the number of divisors of a given number&quot; was that the suggested first step in that question was to <i>find all of the divisors</i>, which I believe is exactly what you were trying to do? http://stackoverflow.com/questions/171480/regex-grabbing-values-between-quotation-marks Comment by Andrew Edgecombe on RegEx: Grabbing values between quotation marks Andrew Edgecombe 2008-10-05T09:56:08Z 2008-10-05T09:56:08Z Related to <a href="http://stackoverflow.com/questions/138552/can-regex-be-used-for-this-particular-string-manipulation" rel="nofollow" title="can regex be used for this particular string manipulation">stackoverflow.com/questions/138552/&hellip;</a> http://stackoverflow.com/questions/132241/hidden-features-of-c/132844#132844 Comment by Andrew Edgecombe on Hidden features of C Andrew Edgecombe 2008-10-03T22:08:37Z 2008-10-03T22:08:37Z Thanks for the &quot;*&quot;