User David Holm - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T07:21:54Zhttp://stackoverflow.com/feeds/user/22247http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1487752/how-do-i-instruct-cmake-to-look-for-libraries-installed-by-macports1How do I instruct CMake to look for libraries installed by MacPorts?David Holm2009-09-28T15:37:20Z2009-09-29T15:12:58Z
<p>I'm trying to build some of our software, which was designed to run solely on Linux, on MacOS X. We are using CMake and I installed MacPorts so I could easily get CMake along with some of the third party libraries that we depend on.</p>
<p>Now the problem is that CMake doesn't appear to look for libraries from MacPorts by default so several of our targets are disabled as it fails to find the dependencies which are all in <em>/opt/local</em>.</p>
<p>How can I instruct CMake to also look for includes and libraries from MacPorts?</p>
http://stackoverflow.com/questions/1487752/how-do-i-instruct-cmake-to-look-for-libraries-installed-by-macports/1492189#1492189-2Answer by David Holm for How do I instruct CMake to look for libraries installed by MacPorts?David Holm2009-09-29T12:15:14Z2009-09-29T15:12:58Z<p>I added a toolchain file for "<em>Darwin</em>" which adds the necessary include and library paths. I was hoping for something a little more automatic but at least it solves the problem.</p>
<p><em>darwin.cmake</em>:</p>
<pre><code>SET(CMAKE_SYSTEM_NAME Darwin)
# Add MacPorts
INCLUDE_DIRECTORIES(/opt/local/include)
LINK_DIRECTORIES(/opt/local/lib)
</code></pre>
http://stackoverflow.com/questions/1304574/what-does-it-mean-to-attach-romfs-in-ram2What does it mean to attach ROMFS in RAM?David Holm2009-08-20T07:41:09Z2009-08-20T08:12:02Z
<p>I'm building a kernel for an ARM platform running uClinux 2.4 and under "<em>General Setup</em>" in the Linux configuration there is an option called "<em>m68knommu-style attached romfs in RAM support</em>". My ARM assembly skills are somewhat limited but as far as I can tell if I enable this option the ROMFS is copied to the end of the kernels BSS.</p>
<p>What is the purpose of this?</p>
http://stackoverflow.com/questions/253013/how-do-i-mock-objects-without-inheritance-in-c1How do I mock objects without inheritance (in C)?David Holm2008-10-31T10:06:25Z2009-06-10T14:31:45Z
<p>We use a simple object model for our low level networking code at work where struct pointers are passed around to functions which are pretending to be methods. I've inherited most of this code which was written by consultants with passable C/C++ experience at best and I've spent many late nights trying to refactor code into something that would resemble a reasonable structure.</p>
<p>Now I would like to bring the code under unit testing but considering the object model we have chosen I have no idea how to mock objects. See the example below:</p>
<p>Sample header (foo.h):</p>
<pre><code>#ifndef FOO_H_
#define FOO_H_
typedef struct Foo_s* Foo;
Foo foo_create(TcpSocket tcp_socket);
void foo_destroy(Foo foo);
int foo_transmit_command(Foo foo, enum Command command);
#endif /* FOO_H_ */
</code></pre>
<p>Sample source (foo.c):</p>
<pre><code>struct Foo_s {
TcpSocket tcp_socket;
};
Foo foo_create(TcpSocket tcp_socket)
{
Foo foo = NULL;
assert(tcp_socket != NULL);
foo = malloc(sizeof(struct Foo_s));
if (foo == NULL) {
goto fail;
}
memset(foo, 0UL, sizeof(struct Foo_s));
foo->tcp_socket = tcp_socket;
return foo;
fail:
foo_destroy(foo);
return NULL;
}
void foo_destroy(Foo foo)
{
if (foo != NULL) {
tcp_socket_destroy(foo->tcp_socket);
memset(foo, 0UL, sizeof(struct Foo_s));
free(foo);
}
}
int foo_transmit_command(Foo foo, enum Command command)
{
size_t len = 0;
struct FooCommandPacket foo_command_packet = {0};
assert(foo != NULL);
assert((Command_MIN <= command) && (command <= Command_MAX));
/* Serialize command into foo_command_packet struct */
...
len = tcp_socket_send(foo->tcp_socket, &foo_command_packet, sizeof(foo_command_packet));
if (len < sizeof(foo_command_packet)) {
return -1;
}
return 0;
}
</code></pre>
<p>In the example above I would like to mock the <em>TcpSocket</em> object so that I can bring *"foo_transmit_command"* under unit testing but I'm not sure how to go about this without inheritance. I don't really want to redesign the code to use vtables unless I really have to. Maybe there is a better approach to this than mocking?</p>
<p>My testing experience comes mainly from C++ and I'm a bit afraid that I might have painted myself into a corner here. I would highly appreciate any recommendations from more experienced testers.</p>
<p>Edit:<br />
Like Richard Quirk pointed out it is really the call to *"tcp_socket_send"* that I want to override and I would prefer to do it without removing the real tcp_socket_send symbol from the library when linking the test since it is called by other tests in the same binary.</p>
<p>I'm starting to think that there is no obvious solution to this problem..</p>
http://stackoverflow.com/questions/934680/future-proof-file-storage/934718#9347181Answer by David Holm for Future proof file storageDavid Holm2009-06-01T13:00:25Z2009-06-01T13:53:02Z<p>Store a file hash in the database rather than a path (i.e. <a href="http://en.wikipedia.org/wiki/SHA1" rel="nofollow">SHA1</a>) and have a separate database connect the hash with the path. Write a small app that will synchronize the hash database so that when you move your files to a different location it'll be easy to build a new database with updated paths.</p>
<p>That way you can also have the system load the file from a different location depending of which hash database you use to locate the file so it offers some transparency if you need people to be able to access the same file from diverse locations (i.e. nfs or webdav).</p>
http://stackoverflow.com/questions/776958/programmatically-taking-a-snapshot-from-an-mpeg-file-from-c/776972#7769720Answer by David Holm for programmatically taking a snapshot from an MPEG file from C#David Holm2009-04-22T12:27:31Z2009-04-22T12:27:31Z<p>You can check out <a href="http://mono-project.com/Gstreamer" rel="nofollow">gstreamer-sharp</a> which is a .NET-binding to <a href="http://gstreamer.freedesktop.org/" rel="nofollow">GStreamer</a>.</p>
http://stackoverflow.com/questions/689677/casting-unused-return-values-to-void/689688#6896883Answer by David Holm for casting unused return values to voidDavid Holm2009-03-27T13:03:49Z2009-03-27T13:03:49Z<p>At work we use that to acknowledge that the function has a return value but the developer has asserted that it is safe to ignore it. Since you tagged the question as C++ you should be using *static_cast*:</p>
<pre><code>static_cast<void>(fn());
</code></pre>
<p>As far as the compiler goes casting the return value to void has little meaning.</p>
http://stackoverflow.com/questions/309672/can-i-use-boost-on-uclibc-linux/586954#5869541Answer by David Holm for Can I use boost on uclibc linux?David Holm2009-02-25T17:18:04Z2009-02-25T17:24:25Z<p>We use Boost together with GCC 2.95.3, libstdc++ and STLport on an ARMv4 platform running uClinux. Some parts of Boost are not compatible with GCC 2.x but the ones that are works well in our particular case. The libraries that we use the most are *date_time*, <em>bind</em>, <em>function</em>, <em>tuple</em> and <em>thread</em>.</p>
<p>Some of the libraries we had issues with were <em>lambda</em>, *shared_pointer* and <em>format</em>. These issues were most likely caused by our version of GCC since it has problems when you have too many includes or deep levels of template structures.</p>
<p>If possible I would recommend you to run the boost test suite with your particular toolchain to ensure compatibility. At the very least you could compile a native toolchain in order to ensure that your library versions are compatible.</p>
<p>We have not used uClibc++ because that is not what our toolchain provider recommends so I cannot comment on that particular combination.</p>
http://stackoverflow.com/questions/340839/how-do-i-set-different-code-styles-depending-on-the-file-type-in-eclipse0How do I set different code styles depending on the file type in Eclipse?David Holm2008-12-04T14:53:29Z2009-02-11T23:01:08Z
<p>We are using CMake to manage our builds and have a rather large project consisting of pretty much everything that is needed to build the software base for our embedded platforms save for the toolchain. When building a CDT project with CMake it puts everything into one large project rather than splitting it into individual projects based on the CMake specification.</p>
<p>Our problem is that we have both C and C++ code in the project and we have different code styles for these languages. I have not been able to find out how to tell Eclipse to select a code style based on the file type rather than the project and this makes it very hard to use Eclipse for us since you have to remember to manually switch the style for the entire project if you want to switch from working on a C- to a C++-project or vice versa.</p>
<p>Is it at all possible to set the code style based on the file type rather than just for an entire project?</p>
http://stackoverflow.com/questions/479926/should-i-fsck-ext3-on-embedded-system2Should I fsck ext3 on embedded system?David Holm2009-01-26T14:19:05Z2009-01-30T18:12:02Z
<p>We have a number of embedded systems requiring r/w access to the filesystem which resides on flash storage with block device emulation. Our oldest platform runs on compact flash and these systems have been in use for over 3 years without a single fsck being run during bootup and so far we have no failures attributed to the filesystem or CF.</p>
<p>On our newest platform we used USB-flash for the initial production and are now migrating to Disk-on-Module for r/w storage. A while back we had some issues with the filesystem on a lot of the devices running on USB-storage so I enabled e2fsck in order to see if that would help. As it turned out we had received a shipment of bad flash memories so once those were replaced the problem went away. I have since disabled e2fsck since we had no indication that it made the system any more reliable and historically we have been fine without it.</p>
<p>Now that we have started putting in Disk-on-Module units I've started seeing filesystem errors again. Suddenly the system is unable to read/write certain files and if I try to access the file from the emergency console I just get "<em>Input/output error</em>". I enabled e2fsck again and all the files were corrected.</p>
<p>O'Reilly's "<em>Building Embedded Linux Systems</em>" recommends running e2fsck on ext2 filesystems but does not mention it in relation to ext3 so I'm a bit confused to whether I should enable it or not.</p>
<p>What are your takes on running fsck on an embedded system? We are considering putting binaries on a r/o partition and only the files which has to be modified on a r/w partition on the same flash device so that fsck can never accidentally delete important system binaries, does anyone have any experience with that kind of setup (good/bad)?</p>
http://stackoverflow.com/questions/475351/sign-of-the-times-what-are-you-reading/493097#4930970Answer by David Holm for Sign of the times: what are you reading?David Holm2009-01-29T19:46:11Z2009-01-29T19:46:11Z<p><a href="http://rads.stackoverflow.com/amzn/click/0316778494" rel="nofollow">How Would You Move Mount Fuji?</a> by William Poundstone</p>
<p><img src="http://www.dholm.com/wp-content/uploads/2009/01/how-would-you-move-mount-fuji-300x300.jpg" alt="How Would You Move Mount Fuji? by William Poundstone" /></p>
http://stackoverflow.com/questions/480267/looking-for-a-good-book-on-microprocessor-internals2Looking for a good book on microprocessor internalsDavid Holm2009-01-26T15:56:16Z2009-01-26T17:06:54Z
<p>I'm looking for a good book on how modern microprocessors are designed and work as I would like to increase my understanding of what makes them tick. Something that covers pipelines, superscalar architectures, caches etc. A book that is suitable for a programmer with several years of experience and has done and understands assembly programming and machine language, so basically not "<em>CPUs for Dummies</em>" or anything such.</p>
<p>What books do people who design today's processors read for instance?</p>
http://stackoverflow.com/questions/479953/how-to-find-out-which-processes-are-swapping-in-linux/480004#4800046Answer by David Holm for how to find out which processes are swapping in linux?David Holm2009-01-26T14:47:05Z2009-01-26T14:47:05Z<p>Run <em>top</em> then press 'O' (capital letter o) followed by 'p' then 'enter'. Now processes should be sorted by their swap usage.</p>
http://stackoverflow.com/questions/140253/how-can-i-simulate-ext3-filesystem-corruption9How can I simulate ext3 filesystem corruption?David Holm2008-09-26T15:32:48Z2009-01-26T14:08:06Z
<p>I would like to simulate filesystem corruption for the purpose of testing how our embedded systems react to it and ultimately have them fail as gracefully as possible. We use different kinds of block device emulated flash storage for data which is modified often and unsuitable for storage in NAND/NOR.</p>
<p>Since I have a pretty good idea of how often data is modified in different parts of the file tree and where sensitive data is stored I would like to inject errors in specific areas and not just randomly. </p>
<p>In cases of emergency we use <em>fsck -y</em> as a sort of last resort in order to attempt to bring the system up and report that is in a very bad state. I would very much like to cause errors which would trigger fsck to attempt repairs in order to study the effect on the systems capability to come back up.</p>
<p><em>dd if=/dev/random</em> is not precise enough for my purpose since it can't easily be used to inject controlled errors. Are there any other tools or methods which fit my needs better or do I have to invent my own?</p>
http://stackoverflow.com/questions/476676/targeting-arm-architecture-with-net-compiler/476737#4767371Answer by David Holm for Targeting ARM architecture with .NET compilerDavid Holm2009-01-24T22:05:43Z2009-01-24T22:11:26Z<p>Use <a href="http://go-mono.com/" rel="nofollow">Mono</a>'s <a href="http://www.mono-project.com/AOT" rel="nofollow">Ahead-of-Time</a> (AOT) compilation. That's how they got <a href="http://unity3d.com/" rel="nofollow">UNITY</a> scripting onto the iPhone which is an ARM platform. It will probably take some labour to get it up and running on Windows Mobile since, afaik, noone has done that particular platform port yet but the compiler etc should already be there.</p>
<p>You can see Miguel de Icaza's presentation of it at MS PDC <a href="http://channel9.msdn.com/pdc2008/PC54/" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/473758/what-does-the-ns-prefix-mean/473902#4739029Answer by David Holm for What does the NS prefix mean?David Holm2009-01-23T18:03:54Z2009-01-23T18:15:41Z<p><strong>N</strong>eXT**S**TEP or <strong>N</strong>eXTSTEP/<strong>S</strong>un depending on who you are asking since Sun had a fairly large investment in OpenStep for a while. Before Sun entered the picture most things in the foundation, even though it wasn't known as the foundation back then, was prefixed <em>NX</em>, for <strong>N</strong>e**X**T, and sometime just before Sun entered the picture everything was renamed to <em>NS</em>. The <em>S</em> most likely did not stand for Sun then but after Sun stepped in the general consensus was that it stood for Sun to honor their involvement.</p>
<p>I actually had a reference for this but I can't find it right now. I will update the post if/when I find it again.</p>
http://stackoverflow.com/questions/472329/how-can-i-synchronize-two-processes-accessing-a-file-on-a-nas/472379#4723791Answer by David Holm for How can I synchronize two processes accessing a file on a NAS?David Holm2009-01-23T09:40:34Z2009-01-23T09:40:34Z<p>If the files reside on an NFS share you can use <a href="http://www.manpagez.com/man/2/fcntl/" rel="nofollow">fcntl(2)</a> to lock the file. Check question <em>D10</em> in the <a href="http://nfs.sourceforge.net/" rel="nofollow">Linux NFS FAQ</a>. I have very little experience with windows APIs but from what I've heard they have good POSIX support so you should be able to use fcntl as long as they support POSIX.1-2001.</p>
<p>If you are accessing the files using different protocols (i.e. AFS or SMB) maybe you could set up a simple synchronization server that manages locks via an IPC interface?</p>
http://stackoverflow.com/questions/3553/one-piece-of-advice/468407#4684071Answer by David Holm for One piece of adviceDavid Holm2009-01-22T08:22:49Z2009-01-22T08:22:49Z<p>Configure your e-mail client to only check for new mail once ever 60 minutes or so and inform everyone at your company that you will only answer questions sent by mail.</p>
http://stackoverflow.com/questions/278526/what-was-your-biggest-nix-blooper/428287#4282870Answer by David Holm for What was your biggest *nix blooper?David Holm2009-01-09T14:42:42Z2009-01-09T14:42:42Z<p>I was modifying a network script for an embedded system where I was only able to send one command at a time. It was a painful^Wlearning experience in playing with sed and awk. Since I was unsure the resulting file would be correct I piped all my changes to a temporary file which I downloaded and checked for correctness after all was done. The file contents were all okay so I moved the script to the correct place and rebooted the system.</p>
<p>After waiting for what seemed like forever it started to dawn on me that the system was probably not coming back up again so I tried reproducing it locally which is what I should have begun with anyway. Turned out that the script needed the execute flag set and since I just piped changes into a temporary file and then moved it to the appropriate location it did not have the execute flag set.</p>
<p>Big oopsie and cost us some money since we had to send out a technician to replace the entire box. At least I learnt never to modify remote systems without trying it locally first.</p>
http://stackoverflow.com/questions/212237/constants-and-compiler-optimization-in-c9Constants and compiler optimization in C++David Holm2008-10-17T13:56:35Z2008-12-23T21:25:25Z
<p>I've read all the advice on const-correctness in C++ and that it is important (in part) because it helps the compiler to optimize your code. What I've never seen is a good explanation on how the compiler uses this information to optimize the code, not even the good books go on explaining what happens behind the curtains. </p>
<p>For example, how does the compiler optimize a method that is declared const vs one that isn't but should be. What happens when you introduce mutable variables? Do they affect these optimizations of const methods?</p>
http://stackoverflow.com/questions/348863/developers-do-you-have-a-home-server-cluster-running-24x7/348924#3489240Answer by David Holm for Developers, do you have a home server (cluster) running 24x7?David Holm2008-12-08T08:36:34Z2008-12-08T08:36:34Z<p>I have a Sun Enterprise 250 with 2 * 400MHz UltraSPARC-II CPUs and 512MB RAM (I have a couple of extra modules that I haven't gotten round to installing yet). It's running Solaris 9 and provides me with SSH access from anywhere. The machine is a bit dated but it is powerful enough for my purpose and this is by far the most reliable piece of hardware I have ever owned.</p>
<p>I use it to mirror my source code from work so I can back it up to tape. I have irssi running in a screen for when I need urgent software support. It is also running Apache, MySQL and PHP for my blog.</p>
http://stackoverflow.com/questions/341241/are-closed-source-applications-welcomed-in-the-linux-community/341247#34124714Answer by David Holm for Are closed source applications "welcomed" in the Linux community?David Holm2008-12-04T16:40:40Z2008-12-04T16:40:40Z<p>Free software zealots will never like non-free software and they tend to make a lot of noise but those are also the people who are never going to pay for your software anyway.</p>
<p>Linus Torvald's (the Linux creator) view of the issue is that he will use the best tool for the job whether it is free software or not but in the long run free software will always be better than non-free since more people has a chance to contribute. I believe this is the view most Linux users share today.</p>
<p>Personally I'm a Linux user since '98 and I have bought several non-free softwares and have no problem with that.</p>
http://stackoverflow.com/questions/338813/logging-frameworks-for-embedded-linux/340634#3406342Answer by David Holm for Logging frameworks for embedded linux?David Holm2008-12-04T13:52:38Z2008-12-04T13:57:53Z<p>Use <a href="http://www.manpagez.com/man/3/syslog/" rel="nofollow">syslog(3)</a> and syslogd from <a href="http://www.busybox.net/" rel="nofollow">BusyBox</a>. BusyBox can be very compact when stripped down and doesn't depend on anything other than libc. You can strip out everything you don't want so it is perfectly possible to use it <strong>only</strong> for logging.</p>
<p>We use BusyBox on a number of embedded systems, both Linux and uClinux, and find its logging facilities highly reliable.</p>
http://stackoverflow.com/questions/336475/rolling-my-own-exceptions/336543#3365438Answer by David Holm for Rolling my own exceptionsDavid Holm2008-12-03T08:56:57Z2008-12-03T08:56:57Z<p>Boost has a great document on <a href="http://www.boost.org/community/error_handling.html" rel="nofollow">error and exception</a> handling which talks about common gotchas and how to properly inherit from std::exception(s).</p>
http://stackoverflow.com/questions/334439/exception-elimination-in-c-constructors5Exception elimination in C++ constructorsDavid Holm2008-12-02T15:57:15Z2008-12-02T17:43:27Z
<p>We have recently been faced with the problem of porting our C++ framework to an ARM platform running uClinux where the only vendor supported compiler is GCC 2.95.3. The problem we have run into is that exceptions are extremely unreliable causing everything from not being caught at all to being caught by an unrelated thread(!). This seems to be a documented bug, i.e. <a href="http://gcc.gnu.org/ml/gcc/2003-08/msg01013.html" rel="nofollow">here</a> and <a href="http://osdir.com/ml/lib.uclibc.general/2003-05/msg00121.html" rel="nofollow">here</a>.</p>
<p>After some deliberation we decided to eliminate exceptions altoghether as we have reached a point where exceptions do a lot of damage to running applications. The main concern now is how to manage cases where a constructor failed.</p>
<p>We have tried <a href="http://www.informit.com/guides/content.aspx?g=cplusplus&seqNum=264" rel="nofollow">lazy evaluation</a>, where each method has the ability to instantiate dynamic resources and return a status value but that means that every class method has to return a return value which makes for a <strong>lot</strong> of ifs in the code and is very annoying in methods which generally would never cause an error.</p>
<p>We looked into adding a static <em>create</em> method which returns a pointer to a created object or NULL if creation failed but that means we cannot store objects on the stack anymore, and there is still need to pass in a reference to a status value if you want to act on the actual error.</p>
<p>According to Google's C++ Style Guide they <a href="http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml#Exceptions" rel="nofollow">do not use exceptions</a> and only do trivial work in their constructors, using an init method for non-trivial work (<a href="http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml#Doing_Work_in_Constructors" rel="nofollow">Doing Work in Constructors</a>). I cannot however find anything about how they handle construction errors when using this approach.</p>
<p>Has anyone here tried eliminating exceptions and come up with a good solution to handling construction failure?</p>
http://stackoverflow.com/questions/308892/what-is-a-good-open-source-message-bus-for-embedded-linux1What is a good open source message bus for embedded Linux?David Holm2008-11-21T14:11:14Z2008-11-23T09:30:46Z
<p>I'm looking for a good open source message bus that is suitable for embedded Linux devices (Linux and uClinux).</p>
<p>It needs to satisfy the following criteria:</p>
<ul>
<li>Must be free software and LGPL or a more liberal license due to uClinux only supporting static linking</li>
<li>Must have a C API</li>
<li>Must have a relatively small footprint and not depend on third party libraries</li>
<li>Must be compatible with Linux/uClinux 2.4.22+</li>
<li>Should be well tested and preferably have an existing test framework set up</li>
<li>Should have a well documented protocol</li>
<li>Should be portable to other platforms</li>
</ul>
<p>The message bus would primarily be used by applications on our system in order to communicate configuration parameters etc so it doesn't need to satisfy realtime requirements.</p>
http://stackoverflow.com/questions/308746/segmentation-fault-c/308787#3087872Answer by David Holm for Segmentation Fault (C)David Holm2008-11-21T13:39:43Z2008-11-21T13:39:43Z<p>Use <a href="http://valgrind.org/" rel="nofollow">valgrind</a>. Valgrind is extremely good in finding resource leaks and other common human error-type of misbehaviour in your code.</p>
http://stackoverflow.com/questions/301839/unittest-how-do-you-organise-your-testing-files/301866#3018663Answer by David Holm for UnitTest how do you organise your testing files?David Holm2008-11-19T13:21:09Z2008-11-19T13:56:55Z<p>We have it organized like this (C++):</p>
<pre><code>package/Class.cpp
package/Class.hpp
package/test/ClassUnitTest.cpp
packate/test/ClassIntegrationTest.cpp
test/unit-test/main.cpp
test/integration-test/main.cpp
test/data
test/tmp
</code></pre>
<p>Where <em>unit-test</em> and <em>integration-test</em> are just the test runners, <em>test/data</em> holds data files that are used by the integration tests and <em>test/tmp</em> holds temporary files created by the same tests and is cleared for each test suite.</p>
http://stackoverflow.com/questions/295994/what-is-the-rationale-for-fread-fwrite-taking-size-and-count-as-arguments8What is the rationale for fread/fwrite taking size and count as arguments?David Holm2008-11-17T16:09:06Z2008-11-17T22:21:19Z
<p>We had a discussion here at work regarding why fread and fwrite take a size per member and count and return the number of members read/written rather than just taking a buffer and size. The only use for it we could come up with is if you want to read/write an array of structs which aren't evenly divisible by the platform alignment and hence have been padded but that can't be so common as to warrant this choice in design.</p>
<p>From <em>FREAD(3)</em>:</p>
<blockquote>
<p>The function fread() reads nmemb elements of data, each size bytes long,
from the stream pointed to by stream, storing them at the location given
by ptr.</p>
<p>The function fwrite() writes nmemb elements of data, each size bytes
long, to the stream pointed to by stream, obtaining them from the location
given by ptr.</p>
<p>fread() and fwrite() return the number of items successfully read or written
(i.e., not the number of characters). If an error occurs, or the
end-of-file is reached, the return value is a short item count (or zero).</p>
</blockquote>
http://stackoverflow.com/questions/239670/what-tools-to-use-for-developing-flash-flex-based-touch-screen-user-interface-for/239712#2397120Answer by David Holm for What tools to use for developing flash/flex based touch screen user interface for embedded systemDavid Holm2008-10-27T12:26:52Z2008-11-01T19:50:19Z<p>Regarding Flash</p>
<p>Pros:</p>
<ul>
<li>Readily available</li>
<li>Powerful editing tools</li>
<li>Lots of people know how to use it</li>
</ul>
<p>Cons:</p>
<ul>
<li>(Very) bad performance in contrast to what it does</li>
<li>Open source implementations still lagging</li>
<li>Use of Adobe's flash component is regulated by their EULA</li>
<li>Does not offer a clear cut API for embedding</li>
</ul>
http://stackoverflow.com/questions/1487752/how-do-i-instruct-cmake-to-look-for-libraries-installed-by-macportsComment by David Holm on How do I instruct CMake to look for libraries installed by MacPorts?David Holm2009-11-10T12:08:02Z2009-11-10T12:08:02ZIt's a proprietary solution.http://stackoverflow.com/questions/1304574/what-does-it-mean-to-attach-romfs-in-ram/1304687#1304687Comment by David Holm on What does it mean to attach ROMFS in RAM?David Holm2009-08-20T08:21:30Z2009-08-20T08:21:30ZInteresting but it already starts from romfs as root without this option enabled.http://stackoverflow.com/questions/1238532/use-bison-and-flex-with-vc6Comment by David Holm on Use bison and flex with vc6David Holm2009-08-06T12:34:21Z2009-08-06T12:34:21ZYou might want to include the line that triggered the error along with a couple of lines before and after it in your post.http://stackoverflow.com/questions/920511/how-to-visualize-bytes-with-c-c/920529#920529Comment by David Holm on How to visualize bytes with C/C++David Holm2009-05-28T12:53:19Z2009-05-28T12:53:19ZCheck out ditaa (<a href="http://ditaa.sourceforge.net/" rel="nofollow">ditaa.sourceforge.net</a>) if you need to transfer your diagrams to a report or something.http://stackoverflow.com/questions/882252/any-downsides-to-using-statically-linked-applications-on-linux/882306#882306Comment by David Holm on Any downsides to using statically linked applications on Linux?David Holm2009-05-27T14:45:19Z2009-05-27T14:45:19ZTo statically link just add the complete path to the lib*.a-file. -L is used to include certain paths when searching for libraries (during linking) and -l is for dynamic linking.http://stackoverflow.com/questions/906590/echo-version-doesnt-works/906833#906833Comment by David Holm on echo --version doesn't worksDavid Holm2009-05-25T14:14:58Z2009-05-25T14:14:58ZThis should probably be a comment, not a reply.http://stackoverflow.com/questions/881894/is-char-guaranteed-to-be-exactly-8-bit-long-in-cComment by David Holm on Is char guaranteed to be exactly 8-bit long in C?David Holm2009-05-19T14:42:25Z2009-05-19T14:42:25ZIf you don't have to support pre-C99 compilers and you want to know the exact size and signedness of your types include and use the types defined in stdint.h.http://stackoverflow.com/questions/689677/casting-unused-return-values-to-void/689688#689688Comment by David Holm on casting unused return values to voidDavid Holm2009-03-27T13:08:26Z2009-03-27T13:08:26ZNo, it does not.
@Mykola: With GCC4 you can attach an attribute that says that the return value shouldn't be ignored which will trigger a warning.http://stackoverflow.com/questions/650232/using-a-pointer-to-an-object-stored-in-a-vector-c/650237#650237Comment by David Holm on Using a pointer to an object stored in a vector... c++David Holm2009-03-16T12:55:19Z2009-03-16T12:55:19ZExcept for std::vector<bool>!http://stackoverflow.com/questions/309672/can-i-use-boost-on-uclibc-linux/586954#586954Comment by David Holm on Can I use boost on uclibc linux?David Holm2009-03-02T13:00:52Z2009-03-02T13:00:52ZSorry, it links to STLport.http://stackoverflow.com/questions/573105/embedded-a-exe-into-a-dllComment by David Holm on Embedded a *.exe into a dllDavid Holm2009-02-23T16:13:32Z2009-02-23T16:13:32ZI removed the "embedded" tag since this question isn't really related to embedded systems.http://stackoverflow.com/questions/479926/should-i-fsck-ext3-on-embedded-system/496558#496558Comment by David Holm on Should I fsck ext3 on embedded system?David Holm2009-01-30T19:03:51Z2009-01-30T19:03:51ZThe 24h reboot was implemented because we had to deal with some buggy and poorly supported drivers which occasionally stops working. Unloading them usually causes a kernel panic so we decided on a controlled reboot rather than having the watchdog reset the board.http://stackoverflow.com/questions/479926/should-i-fsck-ext3-on-embedded-system/496558#496558Comment by David Holm on Should I fsck ext3 on embedded system?David Holm2009-01-30T18:29:24Z2009-01-30T18:29:24ZWe usually reboot once every 24 hours. Why three syncs, shouldn't one be enough?http://stackoverflow.com/questions/484635/are-global-variables-bad/484665#484665Comment by David Holm on Are global variables bad?David Holm2009-01-28T16:48:24Z2009-01-28T16:48:24ZSo true. They are like gotos, if you don't know when to use them then never do.http://stackoverflow.com/questions/484357/trying-to-copy-struct-members-to-byte-array-in-c/484548#484548Comment by David Holm on trying to copy struct members to byte array in cDavid Holm2009-01-28T11:08:30Z2009-01-28T11:08:30ZYou <b>must</b> have <b>attribute</b> ((packed)) for the struct in order to guarantee that it will always work as expected!