User DGentry - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T12:43:51Z http://stackoverflow.com/feeds/user/4761 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/54971/profiling-visualization-tools 3 Profiling visualization tools? DGentry 2008-09-10T18:37:57Z 2009-10-14T17:09:30Z <p>I need to display profiling information pulled from a deeply embedded CPU, presenting it in a way which other developers on my team will be able to act upon. The profiling data is a snapshot of a cycle counter at the entry and exit of every function, so we have a call graph annotated with sub-microsecond timing accuracy. I'd prefer not to just dump out function names and timing like gprof, I'm looking for something easier to understand and act upon.</p> <p>Has anyone worked with a particularly good profiling tool (on any platform), which made it easy to identify areas of the code to drill into? I'm looking for an inspirational example to follow for how to display the call graph, but if there is good tool with an input format I can massage my data to I'll use it. I could use Windows, Linux, or MacOS X to run the visualization tool.</p> <p>A profiling article on <A HREF="http://www.ibm.com/developerworks/library/l-graphvis/" rel="nofollow">IBM DeveloperWorks</A> led me to <A HREF="http://www.graphviz.org/" rel="nofollow">GraphViz</A>, with a <A HREF="http://www.graphviz.org/Gallery/directed/profile.html" rel="nofollow">profiling</A> example on their site. Barring another suggestion here, I'll use GraphViz and mimic their profiling example.</p> http://stackoverflow.com/questions/45954/python-libdwarf-module 3 Python libdwarf module DGentry 2008-09-05T14:44:25Z 2009-09-17T01:50:07Z <p>I'm working on a utility which needs to resolve hex addresses to a symbolic function name and source code line number within a binary. The utility will run on Linux on x86, though the binaries it analyzes will be for a MIPS-based embedded system. The MIPS binaries are in ELF format, using DWARF for the symbolic debugging information.</p> <p>I'm currently planning to fork objdump, passing in a list of hex addresses and parsing the output to get function names and source line numbers. I have compiled an objdump with support for MIPS binaries, and it is working.</p> <p>I'd prefer to have a package allowing me to look things up natively from the Python code without forking another process. I can find no mention of libdwarf, libelf, or libbfd on python.org, nor any mention of python on dwarfstd.org.</p> <p>Is there a suitable module available somewhere?</p> http://stackoverflow.com/questions/286972/java-control-ip-ttl 0 Java control IP TTL? DGentry 2008-11-13T13:56:21Z 2009-07-29T17:01:59Z <p>In Java, is there a way to control the TTL of the IP header for packets sent on a socket? </p> http://stackoverflow.com/questions/1021112/best-c-c-libraries/1021622#1021622 2 Answer by DGentry for Best C/C++ Libraries? DGentry 2009-06-20T13:27:39Z 2009-06-20T13:27:39Z <p>If you're interested in C (not C++) as well, <a href="http://library.gnome.org/devel/glib/" rel="nofollow">glib</a> (the Gnome project's utility library) provides a number of useful data structures and constructs.</p> http://stackoverflow.com/questions/154163/detect-virtualized-os-from-an-application 10 Detect virtualized OS from an application? DGentry 2008-09-30T17:42:42Z 2009-05-28T13:21:14Z <p>I need to detect whether my application is running within a virtualized OS instance or not.</p> <p>I've found <A HREF="http://www.codeproject.com/KB/system/VmDetect.aspx" rel="nofollow">an article</A> with some useful information on the topic. The same article appears in multiple places, I'm unsure of the original source. <A HREF="http://www.vmware.com/" rel="nofollow">VMware</A> implements a particular invalid x86 instruction to return information about itself, while <A HREF="http://www.microsoft.com/windows/products/winfamily/virtualpc/default.mspx" rel="nofollow">VirtualPC</A> uses a magic number and I/O port with an IN instruction.</p> <p>This is workable, but appears to be undocumented behavior in both cases. I suppose a future release of VMWare or VirtualPC might change the mechanism. Is there a better way? Is there a supported mechanism for either product?</p> <p>Similarly, is there a way to detect <A HREF="http://www.xen.org/" rel="nofollow">Xen</A> or <A HREF="http://www.virtualbox.org/" rel="nofollow">VirtualBox</A>?</p> <p>I'm not concerned about cases where the platform is deliberately trying to hide itself. For example, honeypots use virtualization but sometimes obscure the mechanisms that malware would use to detect it. I don't care that my app would think it is not virtualized in these honeypots, I'm just looking for a "best effort" solution.</p> <p>The application is mostly Java, though I'm expecting to use native code plus JNI for this particular function. Windows XP/Vista support is most important, though the mechanisms described in the referenced article are generic features of x86 and don't rely on any particular OS facility.</p> http://stackoverflow.com/questions/874617/supporting-byte-ordering-in-linux-user-space 2 Supporting byte ordering in Linux user space DGentry 2009-05-17T13:25:49Z 2009-05-18T20:54:23Z <p>I'm writing a program on Linux in C to analyze core files produced from an embedded system. The core files might be little endian (ARM) or big endian (MIPS), and the program to analyze them might be running on a little endian host (x86) or big endian (PowerPC).</p> <p>By looking at the headers I know whether the core is LE or BE. I'd rather my program <em>not</em> need to know whether the host it runs on is little or big endian, I'd like to use an API to handle it for me. If there is no better option, I guess I'll start relying on #ifdef __BIG_ENDIAN__.</p> <p>In the Linux kernel we have cpu_to_le32 et al to convert from native byte ordering to little endian, etc. In user space there is htonl et al, which convert from native to big endian but no equivalent for native to little endian that I can find.</p> <p>Can anyone suggest a suitable API for user space?</p> <p><b>Edit</b>: Just to be clear, I'm looking for an API which already knows whether my CPU is big or little endian and swaps byes accordingly. I don't want to have to litter my code with #ifdefs for this. I'm not just looking for code snippets to swap bytes; thank you for those, but that wasn't the point.</p> http://stackoverflow.com/questions/111928/is-there-a-printf-converter-to-print-in-binary-format/112947#112947 6 Answer by DGentry for Is there a printf converter to print in binary format? DGentry 2008-09-22T02:53:38Z 2009-04-16T23:19:19Z <p>There isn't a binary conversion specifier in glibc normally.</p> <p>It is possible to add custom conversion types to the printf() family of functions in glibc. See <A HREF="http://www.gnu.org/software/libc/manual/html_node/Customizing-Printf.html" rel="nofollow"> register_printf_function</A> for details. You could add a custom %b conversion for your own use, if it simplifies the application code to have it available.</p> <p>Here is an <a href="http://codingrelic.geekhold.com/2008/12/printf-acular.html" rel="nofollow">example</a> of how to implement a custom printf formats in glibc.</p> http://stackoverflow.com/questions/692880/tcp-how-are-the-seq-ack-numbers-generated/692897#692897 5 Answer by DGentry for TCP: How are the seq / ack numbers generated? DGentry 2009-03-28T15:02:37Z 2009-03-28T15:02:37Z <p>When a TCP connection is established, each side generates a random number as its initial sequence number. It is a strongly random number: there are security problems if anybody on the internet can guess the sequence number, as they can easily forge packets to inject into the TCP stream.</p> <p>Thereafter, for every byte transmitted the sequence number will increment by 1. The ACK field is the sequence number from the other side, sent back to acknowledge reception.</p> <p>RFC 793 (the original TCP protocol specification) would be of great help.</p> http://stackoverflow.com/questions/59656/why-overwrite-a-file-more-than-once-to-securely-delete-all-traces-of-a-file/59669#59669 12 Answer by DGentry for Why overwrite a file more than once to securely delete all traces of a file? DGentry 2008-09-12T18:15:45Z 2009-03-11T11:47:37Z <p>A hard drive bit which used to be a 0, and is then changed to a '1', has a slightly weaker magnetic field than one which used to be a 1 and was then written to 1 again. With sensitive equipment the previous contents of each bit can be discerned with a reasonable degree of accuracy, by measuring the slight variances in strength. The result won't be exactly correct and there will be errors, but a good portion of the previous contents can be retrieved.</p> <p>By the time you've scribbled over the bits 35 times, it is effectively impossible to discern what used to be there.</p> <p><b>Edit:</b> <a href="http://www.h-online.com/news/Secure-deletion-a-single-overwrite-will-do-it--/112432" rel="nofollow">A modern analysis</a> shows that a single overwritten bit can be recovered with only 56% accuracy. Trying to recover an entire byte is only accurate 0.97% of the time. So I was just repeating an urban legend. Overwriting multiple times might have been necessary when working with floppy disks or some other medium, but hard disks do not need it.</p> http://stackoverflow.com/questions/434369/monotonically-increasing-time-in-java 3 Monotonically increasing time in Java? DGentry 2009-01-12T03:34:08Z 2009-01-12T04:07:07Z <p>In a Java application I want to be able to take a timestamp at the start of an operation and be able to periodically check how long the operation has been running. The catch is: I do not want to be impacted by the Network Time Protocol moving the clock around, or the admin changing the time, or anything which can abruptly adjust the time of day. I want a monotonically increasing time value. I believe this rules out java.util.Date, Time, and Calendar.</p> <p>Is there some source of a monotonically increasing timestamp in the JRE?</p> http://stackoverflow.com/questions/158152/design-of-high-volume-tcp-client/159131#159131 1 Answer by DGentry for Design of high volume TCP Client DGentry 2008-10-01T18:51:01Z 2008-12-29T03:01:36Z <p>TCP tries very hard to prevent congestion in the network. All new TCP connections begin in a "slow start" state, where they send only one packet and wait for an acknowledgement from the other end. If the ACK is received TCP will send two packets, then four, etc until it reaches its maximum window size.</p> <p>If you are generating messages at high datarate, you really want to avoid opening and closing TCP connections. Every time you open a new connection you'll be back in slow start. If you can keep the socket open the TCP connection will get past the slow start state and be able to send data at a much higher rate.</p> <p>To do this, you need to get the server to process more than one message on a connection (which means finding a way to delineate each message). If your server supports HTTP encoding of any sort this would work; make sure to examine any argument or configuration related to "persistent" connections or HTTP 1.1, because that is how HTTP sends multiple requests over a single TCP connection.</p> <p>One option you mentioned is UDP. If you are generating messages at a reasonably high rate you're likely to lose some of them due to queues being full somewhere along the way. If the messages you are sending need to be reliable, UDP is probably not a good basis.</p> http://stackoverflow.com/questions/319334/save-information-from-ms-crash-reporter 0 Save information from MS crash reporter? DGentry 2008-11-26T00:08:55Z 2008-12-24T15:53:41Z <p>On Windows XP when a process crashes, we get a dialog box with a link:</p> <p>"To view technical information about the error report, click here."</p> <p>The "click here" link brings up a whole lot of information in a window, but no obvious way to save it to a file. Is there a way? It would be very nice to be able to send that data to several different external vendors we're working with.</p> <p>The only other option I see in the dialog box is to send it to Microsoft, but this crash is likely not Microsoft's fault and there is no reason to send it to them.</p> http://stackoverflow.com/questions/387142/c-gsoap-parameter-passing-memory-management-issues/388260#388260 2 Answer by DGentry for C++ - gsoap : Parameter passing memory management issues DGentry 2008-12-23T05:39:50Z 2008-12-23T05:39:50Z <p>Because the client and server are generally different processes, or different machines, they are each responsible for their own memory management. The client must allocate the memory for its input parameters, which gsoap then serializes to send to the server.</p> <p>The server deserializes the input parameters, allocating any memory it needs to do so. It allocates the memory for its output, which gsoap serializes to send back to the client. The client deserializes the server's response, allocate any memory it needs to do so.</p> <p>You definitely need to use soap_malloc (et al) for memory allocations, thats the only way the gsoap libraries can track what needs to be freed when the SOAP call cleans up.</p> <p>In the specific ns1_func1 example you gave, the server allocates the response and the generated client code is supposed to allocate any memory it requires. There may be something wrong in the WSDL for that call, that the client code being generated is not what you expect.</p> http://stackoverflow.com/questions/383471/have-you-ever-worked-on-code-older-than-you-are/384070#384070 1 Answer by DGentry for Have You Ever Worked On Code Older Than You Are? DGentry 2008-12-21T03:48:47Z 2008-12-21T03:48:47Z <p>I worked on test equipment which incorporated a DEC PDP-7. Not only was the code older than me, the machine it ran on had been built before I was born.</p> http://stackoverflow.com/questions/367467/java-timezone-files/367508#367508 2 Answer by DGentry for Java TimeZone Files DGentry 2008-12-15T04:51:46Z 2008-12-15T04:51:46Z <p>Like almost all current operating systems and other software environments. Java uses the zoneinfo format for timezone information. You can start with the <a href="http://en.wikipedia.org/wiki/Zoneinfo" rel="nofollow">Wikipedia</a> page, or just Google for zoneinfo.</p> <p>There are a number of tools to process zoneinfo files, you should be able to extract the information you're looking for.</p> http://stackoverflow.com/questions/340997/constantpoolclass-in-java-heap 1 constantPoolClass in Java heap? DGentry 2008-12-04T15:32:31Z 2008-12-05T00:55:36Z <p>I have inherited a Java applet (an actual &lt;APPLET&gt;) which throws an OutOfMemory exception after about 4 days of runtime. The nature of the applet is such that people really will leave it open for long periods of time.</p> <p>After almost two days running, jmap -histo shows the top heap consumers as:</p> <pre> num #instances #bytes class name --- ---------- ------ ---------- 1: 14277 7321880 &lt;constantPoolKlass&gt; 2: 59626 5699968 &lt;constMethodKlass&gt; 3: 14047 5479424 &lt;constantPoolCacheKlass&gt; 4: 14277 5229744 &lt;instanceKlassKlass&gt; 5: 59626 4778944 &lt;methodKlass&gt; 6: 71026 3147624 &lt;symbolKlass&gt; </pre> <p>The trouble is, I don't understand what any of these things are. There are at least two things going on: constantPoolKlass+constantPoolCacheKlass+instanceKlassKlass appear related, as do constMethodKlass+methodKlass. From the names, they appear related to a class loader.</p> <p>If I had to guess I'd say the applet has creating about 14,277 objects where each object has about 4 methods, for about 59626 methods total. Yet the jmap output doesn't show any class with such a large number of instances, nor does it look like the sum total of other class objects add up to 14277. So maybe I'm incorrect about what these objects do. Can someone explain?</p> http://stackoverflow.com/questions/337463/limit-java-console-heap-footprint 0 Limit Java Console heap footprint? DGentry 2008-12-03T15:16:40Z 2008-12-03T15:24:28Z <p>I have a Java applet (an actual &lt;APPLET&gt;) which generates frequent log messages to System.out. If the Java Console is enabled in the user's browser, it will of course retain references to all of these strings and prevent them from being garbage collected. The problem is the number of log messages the console retains: the applet heap grows very quickly. After four days of running, it will throw an OutOfMemory exception. So far as I can tell from jmap and jhat, the log strings represent the majority of its footprint.</p> <p>Is there an API to more tightly limit the number or total size of messages retained by the Java Console? In case of an error I'd only need the most recent few messages. The Console does start retiring the oldest messages at some point, but only after it has grown really huge.</p> <p>I realize that "don't start the console" or "just clear the console" are possible solutions, but have you ever tried asking a non-technical user whether they have the Java Console enabled? Or try to walk them through viewing and clearing it? I really would like them to leave the console enabled, so I can see the messages if there is an error.</p> http://stackoverflow.com/questions/307722/did-scott-hanselman-have-too-much-cough-syrup-on-show-135/307921#307921 0 Answer by DGentry for Did Scott Hanselman have too much cough syrup on show #135? DGentry 2008-11-21T05:05:04Z 2008-11-21T05:05:04Z <p>The other, non-security related problem with running the site on one big box is the lack of redundancy. There are any number of single points of failure, both in the single server and that everything is in one data center.</p> <p>I'll assume that the service provider has hot spares ready to swap in for their customers, and multiple internet connections, but still...</p> <p>It is possible that <A HREF="http://stackoverflow.com/users/6380/scott-hanselman" rel="nofollow">Scott Hanselman</A> will also chime in, as he also uses the site.</p> http://stackoverflow.com/questions/293499/what-happens-if-you-dont-return-a-value-in-c/293543#293543 4 Answer by DGentry for What happens if you don't return a value in C++? DGentry 2008-11-16T05:34:13Z 2008-11-16T05:34:13Z <p>The calling conventions for most modern CPU architectures specify a particular register to pass a function return value back to the caller. The caller makes the function call, and then uses the specified register as the return value. If you do not explicitly return a value, the caller will nonetheless use whatever garbage happens to be in that register.</p> <p>The compiler will also use all registers it has available for internal computation within the function. The register designated for holding the return value will also be used for misc computation within the function. Thus when you forget to specify a return value it is not unusual to find the correct value has miraculously been returned to the caller: the compiler used that register to store your object.</p> <p>Unfortunately even a trivial change to the function can cause the register allocation to change, so the return value becomes true garbage.</p> http://stackoverflow.com/questions/287811/java-javascript-for-non-applets 3 Java <-> Javascript for non-Applets? DGentry 2008-11-13T18:39:13Z 2008-11-14T05:06:43Z <p>I'm working with an existing Java codebase which, while it can be invoked from an HTML page using an &lt;APPLET&gt; tag, does not actually subclass the Applet class. The same jars are also used in a non-browser context, so they did not subclass Applet.</p> <p>Now I need to communicate some values from Java back to the Javascript of the invoking page. Normally one would do this using JSObject, but so far as I can one has to use JSObject.getWindow which only works for subclasses of Applet.</p> <p>Is there either:</p> <ul> <li>a way to use JSObject from something which isn't an Applet subclass?</li> <li>some other mechanism to communicate back to the Javascript of the invoking page?</li> </ul> http://stackoverflow.com/questions/285790/irritating-select-behaviour-in-c/286231#286231 4 Answer by DGentry for irritating select() behaviour in c DGentry 2008-11-13T04:03:04Z 2008-11-13T04:12:14Z <p>select modifies its arguments. You really do have to re-initialize it each time.</p> <p>If you're concerned about overhead, the cost of processing the complete FD_SET in the kernel is somewhat more significant than the cost of FD_ZERO. You'd want to only pass in your maximum fd, not FD_SETSZIZE, to minimize the kernel processing. In your example:</p> <pre><code>switch (select((sd + 1),&amp;set,NULL,NULL,&amp;timeout)) </code></pre> <p>For a more complex case with multiple fds, you typically end up maintaining a max variable:</p> <pre><code>FD_SET(sd,&amp;set); if (sd &gt; max) max = sd; ... repeat many times... switch (select((max + 1),&amp;set,NULL,NULL,&amp;timeout)) </code></pre> <p><br> If you will have a large number of file descriptors and are concerned about the overhead of schlepping them about, you should look at some of the alternatives to select(). You don't mention the OS you're using, but for Unix-like OSes there are a few:</p> <ul> <li>for Linux, epoll()</li> <li>for FreeBSD/NetBSD/OpenBSD/MacOS X, kqueue()</li> <li>for Solaris, /dev/poll</li> </ul> <p>The APIs are different, but they are all essentially a stateful kernel interface to maintain a set of active file descriptions. Once an fd is added to the set, you will be notified of events on that fd without having to continually pass it in again.</p> http://stackoverflow.com/questions/281884/a-small-web-server/282870#282870 4 Answer by DGentry for A Small Web Server DGentry 2008-11-12T02:59:30Z 2008-11-12T02:59:30Z <p><a href="http://www.acme.com/software/thttpd/" rel="nofollow">thttpd</a>, a tiny/turbo/throttling http server.</p> <p>It is written in C. If by "a language that is easily read" you meant "not C," then nevermind.</p> http://stackoverflow.com/questions/262493/best-way-to-inject-functionality-into-a-binary/262633#262633 3 Answer by DGentry for Best way to inject functionality into a binary... DGentry 2008-11-04T17:36:12Z 2008-11-04T17:36:12Z <p>In MacOS X releases prior to 10.5 you'd do this using an Input Manager extension. Input Manager was intended to handle things like input for non-roman languages, where the extension could popup a window to input the appropriate glyphs and then pass the completed text to the app. The application only needed to make sure it was Unicode-clean, and didn't have to worry about the exact details of every language and region.</p> <p>Input Manager was wildly abused to patch all sorts of unrelated functionality into applications, and often destabilized the app. It was also becoming an attack vector for trojans, such as "Oompa-Loompa". MacOS 10.5 tightens restrictions on Input Managers: it won't run them in a process owned by root or whell, nor in a process which has modified its uid. Most significantly, 10.5 won't load an Input Manager into a 64 bit process and has indicated that even 32 bit use is unsupported and will be removed in a future release.</p> <p>So if you can live with the restrictions, an Input Manager can do what you want. Future MacOS releases will almost certainly introduce another (safer, more limited) way to do this, as the functionality really is needed for language input support.</p> http://stackoverflow.com/questions/260128/what-is-the-best-method-to-keep-bots-from-spamming-your-blog/260758#260758 0 Answer by DGentry for What is the best method to keep bots from spamming your blog? DGentry 2008-11-04T03:20:54Z 2008-11-04T03:20:54Z <p>I made spam into someone else's problem by using <a href="http://www.disqus.com/" rel="nofollow">Disqus</a> to run my blog's comments. There has been no spam since switching, Disqus keeps on top of it.</p> http://stackoverflow.com/questions/245503/best-resource-for-learning-about-prefetching-a-buffer-in-c-on-intel-amd-64-bit/245730#245730 2 Answer by DGentry for Best resource for learning about prefetching a buffer in C on Intel/AMD 64 bit DGentry 2008-10-29T03:47:42Z 2008-10-29T03:47:42Z <p>There is also an excellent paper by Ulrich Drepper, <a href="http://people.redhat.com/drepper/cpumemory.pdf" rel="nofollow">What Every Programmer Should Know About Memory</a>. He covers prefetching, plus many other topics dealing with memory performance optimization. It was released in Nov 2007, and is extremely relevant for today's processors. If you're performing operations on very large arrays and believe your bottleneck is getting to memory, you should read it.</p> http://stackoverflow.com/questions/78955/what-are-the-best-programming-and-development-related-blogs/235902#235902 0 Answer by DGentry for What are the best programming and development related Blogs? DGentry 2008-10-25T04:26:04Z 2008-10-25T04:26:04Z <p>I'll add my own: <A HREF="http://codingrelic.geekhold.com/" rel="nofollow">Coding Relic</A>. Feel free to vote it down, I'm used to it.</p> http://stackoverflow.com/questions/227853/java-applet-locale-setting 0 Java Applet Locale setting DGentry 2008-10-22T22:59:17Z 2008-10-23T00:36:11Z <p>I am running an english language version of WindowsXP, but have set Spanish as my only accepted language in Firefox. I had naively expected the browser's language to be set as the default when I load an applet in a browser session, but this does not appear to be the case. The applet starts up in English, the default language of the OS.</p> <p>I could add a new &lt;param&gt; to my Applet and call Locale.setDefault() during initialization, but before I start hacking away I'd like to know if I'm missing something obvious. Is there a common mechanism by which the browser or invoking web page can set the default language of an &lt;applet&gt; ?</p> http://stackoverflow.com/questions/220323/determine-process-info-programmatically-in-darwin-osx/220546#220546 3 Answer by DGentry for Determine Process Info Programmatically in Darwin/OSX DGentry 2008-10-21T02:11:56Z 2008-10-21T02:11:56Z <p>Since you say no Objective-C we'll rule out most of the MacOS frameworks.</p> <p>You can get CPU time using getrusage(), which gives the total amount of User and System CPU time charged to your process. To get a CPU percentage you'd need to snapshot the getrusage values once per second (or however granular you want to be).</p> <pre><code>#include &lt;sys/resource.h&gt; struct rusage r_usage; if (getrusage(RUSAGE_SELF, &amp;r_usage)) { /* ... error handling ... */ } printf("Total User CPU = %ld.%ld\n", r_usage.ru_utime.tv_sec, r_usage.ru_utime.tv_usec); printf("Total System CPU = %ld.%ld\n", r_usage.ru_stime.tv_sec, r_usage.ru_stime.tv_usec); </code></pre> <p>There is an RSS field in the getrusage structure, but is appears to always be zero in MacOS X 10.5. <A HREF="http://miknight.blogspot.com/2005/11/resident-set-size-in-mac-os-x.html" rel="nofollow">Michael Knight</A> wrote a blog post several years ago about how to determine the RSS.</p> http://stackoverflow.com/questions/218623/why-use-monospace-fonts-in-your-ide/218646#218646 14 Answer by DGentry for Why use monospace fonts in your IDE? DGentry 2008-10-20T14:30:41Z 2008-10-20T14:30:41Z <p>I like to line up related conditionals, to try to make it more obvious that they are grouped. For example:</p> <pre><code>if ((var1 == FOO) &amp;&amp; ((var2 == BAR) || (var2 == FOOBAR))) </code></pre> <p>Variable width fonts make this more difficult.</p> http://stackoverflow.com/questions/218117/how-cache-memory-works/218617#218617 4 Answer by DGentry for How cache memory works? DGentry 2008-10-20T14:22:41Z 2008-10-20T14:22:41Z <p>There is a very good paper by Ulrich Drepper of Red Hat and glibc fame, <A HREF="http://people.redhat.com/drepper/cpumemory.pdf" rel="nofollow">What Every Programmer Should Know About Memory</A>. One section discussed caches in great detail. For example, there are cache effects in SMP systems where CPUs can end up thrashing ownership of a modified cache line back and forth, greatly harming performance.</p> http://stackoverflow.com/questions/1021555/passing-probation-period-at-work/1021590#1021590 Comment by DGentry on Passing probation period at work DGentry 2009-06-20T13:51:32Z 2009-06-20T13:51:32Z Ok, I misunderstood. If the probationary period is normal and not a disciplinary action, then you can probably still make a good impression by the end of it. Missing the deadline might have been a disappointment to the hiring manager, but they need to adjust expectations when one is just coming up to speed in a toolchain. http://stackoverflow.com/questions/1019236/remote-desktop-protocol-c-or-objective-c-library Comment by DGentry on Remote Desktop Protocol C or Objective-C Library DGentry 2009-06-20T13:48:24Z 2009-06-20T13:48:24Z Sun supplies a uttsc utility for use with their SunRay graphical terminal. Much of Sun's software is now open source, but I couldn't immediately find the uttsc source. It might be worth some more Googling. http://stackoverflow.com/questions/1021555/passing-probation-period-at-work/1021563#1021563 Comment by DGentry on Passing probation period at work DGentry 2009-06-20T13:15:13Z 2009-06-20T13:15:13Z Being realistic. You're not in a good situation, but with a poor economy you might not be able to just leave and try to find something better. http://stackoverflow.com/questions/139373/defines-in-linker-scripts/139799#139799 Comment by DGentry on #defines in linker scripts DGentry 2009-06-19T22:02:15Z 2009-06-19T22:02:15Z This is what I ended up doing. I run &quot;cpp -P&quot; on an input script to produce the final linker script. http://stackoverflow.com/questions/874617/supporting-byte-ordering-in-linux-user-space/879285#879285 Comment by DGentry on Supporting byte ordering in Linux user space DGentry 2009-05-18T21:08:00Z 2009-05-18T21:08:00Z I've been using libbfd to open the core and locate each section, but for the contents it just hands over a big array of unsigned characters (leaving it to me to handle the endianness of anything within it). I'll investigate libelf instead, perhaps it is more helpful in this regard. http://stackoverflow.com/questions/874617/supporting-byte-ordering-in-linux-user-space Comment by DGentry on Supporting byte ordering in Linux user space DGentry 2009-05-18T14:36:36Z 2009-05-18T14:36:36Z As for what kind of embedded system it is: its a perfectly normal and boring PowerPC. I already have a cross-compiled gdb for it. gdb is great for many things, but not everything. For example it is spectacularly bad at searching all of memory for a particular pattern; you write a gdb macro which takes forever and a day to finish searching a medium size core file. http://stackoverflow.com/questions/874617/supporting-byte-ordering-in-linux-user-space Comment by DGentry on Supporting byte ordering in Linux user space DGentry 2009-05-18T14:33:57Z 2009-05-18T14:33:57Z Could I write my own API? Sure. I just want to avoid #ifdef <b>BIG_ENDIAN</b> if there is a cleaner, more maintainable way to do it via an existing API which already knows whether my CPU is big or little endian. http://stackoverflow.com/questions/434369/monotonically-increasing-time-in-java/434397#434397 Comment by DGentry on Monotonically increasing time in Java? DGentry 2009-01-18T15:17:49Z 2009-01-18T15:17:49Z For me, System.nanoTime would be great. I don't need high resolution, the events are seconds apart, I just need to be immune to adjustments of the system time of day. Since nanoTime was added in JVM 1.5, I'll have to make sure dropping JVM 1.4.2 support is ok with my product manager. Should be fine. http://stackoverflow.com/questions/144600/robust-and-easy-to-implement-serial-bus-automotive-application/145059#145059 Comment by DGentry on Robust and easy to implement serial bus (automotive application) DGentry 2009-01-01T15:23:30Z 2009-01-01T15:23:30Z One note: I saw a presentation from Toyota a few years ago about using Ethernet. They wouldn't use it for engine control, but everything else was possible from climate control signaling to piping audio from the radio to the speakers. They were interested in plastic optics with LED transceivers. http://stackoverflow.com/questions/363113/any-good-geeky-baby-names/363851#363851 Comment by DGentry on Any good geeky baby names? DGentry 2008-12-21T03:38:08Z 2008-12-21T03:38:08Z That was a good show. http://stackoverflow.com/questions/169713/whats-the-toughest-bug-you-ever-found-and-fixed/169760#169760 Comment by DGentry on What's the toughest bug you ever found and fixed? DGentry 2008-12-12T04:18:40Z 2008-12-12T04:18:40Z We put the CRC check in the interrupt handler first, and it would detect corrupted packets. Under load, it would also make the system reset from spending too much time at interrupt level, so we moved it out into an asynchronous kernel thread... and the delay in calculating the CRC made a difference. http://stackoverflow.com/questions/287811/java-javascript-for-non-applets/289295#289295 Comment by DGentry on Java <-> Javascript for non-Applets? DGentry 2008-11-15T04:31:33Z 2008-11-15T04:31:33Z Thats an approach I had not considered. I'd end up polling from the Javascript until something changes, but that might work. http://stackoverflow.com/questions/285790/irritating-select-behaviour-in-c/285807#285807 Comment by DGentry on irritating select() behaviour in c DGentry 2008-11-13T19:58:37Z 2008-11-13T19:58:37Z Just to keep offering alternatives: if sd is a socket you can use setsockopt(sd, SO_RCVTIMEO, ...) to add a read timeout. However if you are going to add a second socket later, select is the better option to pursue. http://stackoverflow.com/questions/285790/irritating-select-behaviour-in-c/286231#286231 Comment by DGentry on irritating select() behaviour in c DGentry 2008-11-13T14:03:03Z 2008-11-13T14:03:03Z poll() is better in that you don't have to reinitialize its array each time, but you're still copying a large structure in and out of the kernel on every call. If you have a lot of fds, the other alternatives avoid this constant overhead by modifying the fd set in the kernel. http://stackoverflow.com/questions/262493/best-way-to-inject-functionality-into-a-binary/262633#262633 Comment by DGentry on Best way to inject functionality into a binary... DGentry 2008-11-06T04:47:10Z 2008-11-06T04:47:10Z That is what I meant. However if the program is not a Cocoa app, you're right that you cannot insert hooks that way. Oh well.