User Benoit - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T12:51:44Z http://stackoverflow.com/feeds/user/10703 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/98242/why-is-foon-n-not-working 11 Why is foo(n++, n) not working? Benoit 2008-09-19T00:13:26Z 2009-11-18T10:37:09Z <p>Here is a test case:</p> <pre><code> void foo(int i, int j) { printf("%d %d", i, j); } ... test = 0; foo(test++, test); </code></pre> <p>I would expect to get a "0 1" output, but I get "0 0" What gives??</p> http://stackoverflow.com/questions/181011/how-do-i-use-the-vxworks-debug-agent-to-perform-pre-kernel-debugging 0 How do I use the vxWorks debug agent to perform pre-kernel debugging? Benoit 2008-10-08T01:01:24Z 2009-11-01T10:00:03Z <p>The vxWorks documentation states: </p> <blockquote> <p>The WDB agent itself is independent of the target operating system: it attaches to run-time OS services through a virtual-function run-time interface. The WDB agent can execute before VxWorks is running (as in the early stages of porting a BSP to a new board)."</p> </blockquote> <p>How can I use the debug agent before the vxWorks kernel is running?</p> http://stackoverflow.com/questions/73312/how-you-disable-the-processor-cache-on-a-powerpc-processor 0 How you disable the processor cache on a PowerPC processor? Benoit 2008-09-16T15:02:23Z 2009-09-28T02:47:27Z <p>In our embedded system (using a PowerPC processor), we want to disable the processor cache. What steps do we need to take?</p> <p>To clarify a bit, the application in question must have as constant a speed of execution as we can make it. Variability in executing the same code path is not acceptable. This is the reason to turn off the cache.</p> http://stackoverflow.com/questions/565405/how-to-programatically-restart-windows-explorer-process 2 How to programatically restart windows explorer process Benoit 2009-02-19T13:54:13Z 2009-09-25T14:27:39Z <p>I'm working on a windows shell extension, and unfortunately, when making changes to the DLL, I must restart windows explorer (since it keeps the DLL in memory).</p> <p>I found this program from Dino Esposito, but it doesn't work for me.</p> <pre> <code> void SHShellRestart(void) { HWND hwnd; hwnd = FindWindow("Progman", NULL ); PostMessage(hwnd, WM_QUIT, 0, 0 ); ShellExecute(NULL, NULL, "explorer.exe", NULL, NULL, SW_SHOW ); return; } </code></pre> <p>Does any one have something they can share to do this?</p> <p>P.S. I realize that I can go to task manager and kill the explorer process, but I just want to do it the lazy way. Besides, this enables automation.</p> <p>P.P.S I am using .NET for the development, but the shell restart functionality could be in C, C++ or a .NET language. It will simply be a small stand-alone executable.</p> http://stackoverflow.com/questions/76092/what-are-some-real-time-operating-systems-for-32-bit-processors 3 What are some Real-Time Operating Systems for 32-bit processors? Benoit 2008-09-16T19:38:29Z 2009-09-05T17:46:39Z <p>What RTOS have you used or recommend for 32-bit processors.<br /> I'm interested in mainstream processors here: PowerPC, Pentium, ARM, MIPS<br /> A link to a web site would be a nice bonus.</p> <p>Let's conduct this as a poll. Please only provide one selection per answer and mod up if you agree with a selection already present.</p> http://stackoverflow.com/questions/1305373/do-vxworks-task-share-data-region/1313823#1313823 3 Answer by Benoit for Do vxworks task share data region ? Benoit 2009-08-21T19:30:58Z 2009-08-21T19:30:58Z <p>In VxWorks 5.x all of the data and text segment are shared across tasks. There is in effect, a single memory space.</p> <p>Vxworks 6.x introduced Real Time Processes, which are similar to Linux processes, where the data and code segment is specific to a single process, but all tasks (threads) within a process share those segments. In VxWorks 6, you can also think of the kernel space as it's own memory space with shared data and code segments for all tasks that run in the kernel.</p> http://stackoverflow.com/questions/79248/what-is-a-multitasking-operating-system 1 What is a multitasking operating system? Benoit 2008-09-17T02:23:47Z 2009-08-12T12:05:51Z <p>What are the characteristics of a multitasking operating system? What makes it multitasking?</p> <p>Are there non-multitasking operating systems?</p> http://stackoverflow.com/questions/120561/how-can-a-task-wait-on-multiple-vxworks-queues 2 How can a task wait on multiple vxworks Queues? Benoit 2008-09-23T12:05:48Z 2009-08-08T12:36:13Z <p>We have a vxWorks design which requires one task to process both high and low priority messages sent over two message queues.<br /> The messages for a given priority have to be processed in FIFO order. </p> <p>For example, process all the high priority messages in the order they were received, then process the low priority messages. If there is no high priority message, then process the low priority message immediately.</p> <p>Is there a way to do this?</p> http://stackoverflow.com/questions/355939/how-to-setup-compatible-code-environment-between-vxworks-5-5-and-6-x 0 How to setup compatible code environment between VxWorks 5.5 and 6.x? Benoit 2008-12-10T12:52:28Z 2009-07-21T02:00:03Z <p>We have an existing VxWorks 5.5 project and want to port it to VxWorks 6.6.<br /> VxWorks 6.x has a bunch of new capabilities (MMU, RTPs, etc...) which we don't want to use at this point since it would complicate the porting effort.</p> <p>How do we specify that we want a 5.5 compatible environment?</p> http://stackoverflow.com/questions/1147850/profiling-a-vxworks-system/1151415#1151415 1 Answer by Benoit for Profiling a VxWorks system Benoit 2009-07-20T01:37:33Z 2009-07-20T01:37:33Z <p>If you have the Auxiliary Clock available, you could use the SPY utility (configurable via the config.h file) which does give you a very rough approximation of which tasks are using the CPU. </p> <p>The nice thing about it is that it does not require being attached to the Tornado environment and you can use it from the Kernel shell.</p> <p>Otherwise, btpierre's suggestion of using taskHookAdd has been used successfully in the past.</p> http://stackoverflow.com/questions/1119902/improper-use-of-version-control/1119944#1119944 9 Answer by Benoit for Improper Use of Version Control Benoit 2009-07-13T14:53:41Z 2009-07-13T15:00:33Z <p>This is much more a human/business/political issue than it is a technical one. You will have to <strong>sell</strong> to management the benefits of changing the approach.</p> <p>What will be the ROI for implementing a different scheme?<br /> Can you point to specific examples which <em>cost</em> the company something (time, defects, rework cost) that would be demonstrably reduced by implementing another scheme.</p> <p>The fact that it's abusive/ugly/offends people's sensibilities is not enough. Remember, there will be retraining costs involved if you change the scheme.</p> <p>If your concern (which I find totally valid) is that you are asked to limit your checkins, you could always setup a local repository for your "work-in-progress" and once you are happy, copy the files to the "official tree directory" and check that in. </p> <p>Ugly, a burden, and no fun. But you would have a more granular history (of your mods)...</p> http://stackoverflow.com/questions/1119888/so-what-was-the-point-of-ole-db-if-you-still-wrote-sql/1119905#1119905 1 Answer by Benoit for So what was the point of OLE DB if you still wrote SQL? Benoit 2009-07-13T14:48:46Z 2009-07-13T14:48:46Z <p>I can vouch for the fact that there is <strong>NO</strong> translation done by OLE DB.</p> <p>If you have different databases, you would have to provide different SQL statements based on the vendor. Always fun with dates and Oracle vs. MS databases...</p> http://stackoverflow.com/questions/189725/what-is-a-trampoline-function 6 What is a trampoline function? Benoit 2008-10-10T00:39:37Z 2009-07-10T21:11:15Z <p>During recent discussions at work, someone referred to a trampoline function.</p> <p>I have read the description at <a href="http://en.wikipedia.org/wiki/Trampoline_(computers)" rel="nofollow">Wikipedia</a>. It is enough to give a general idea of the functionality, but I would like something a bit more concrete.</p> <p>Do you have a simple snippet of code that would illustrate a trampoline?</p> http://stackoverflow.com/questions/1030873/taskvaradd-used-twice-for-the-same-variable/1036405#1036405 0 Answer by Benoit for taskVarAdd used twice for the same variable Benoit 2009-06-24T04:28:34Z 2009-06-24T04:28:34Z <p>The easiest way is to do a simple test case. <code><pre> int v1; void tvl() { v1 = 1; taskVarAdd(0, &amp;v1); v1 = 2; taskVarAdd(0, &amp;v1); v1 = 3; taskDelay(1); printf("Initial v1 = %d\n", v1); for(;;) { v1++; taskDelay(60); printf("v1 = %d\n", v1);<br /> } } </pre></code></p> <p>Running the test code results in the following values for v1:</p> <pre><code>Initial v1 = 2 1 3 3 2 4 4 3 5 5 4... </code></pre> <p>The same code with a single taskVarAdd gives the expected result of 1 2 3 4 ...</p> <p>PS: You didn't specify the version of VxWorks, so what I said is valid for Vxworks 6.x</p> http://stackoverflow.com/questions/121503/what-resource-would-you-recommend-to-learn-about-programming-a-pci-bus 1 What resource would you recommend to learn about programming a PCI bus? Benoit 2008-09-23T14:49:23Z 2009-06-23T08:19:21Z <p>I have to start delving in the details of a PCI bus device driver.</p> <p>What resource (book, website, etc...) would you recommend someone look at to learn more about the PCI bus and how to program it?</p> <p>EDIT: The platform would be both x86 and PowerPC</p> http://stackoverflow.com/questions/972612/porting-issues-to-vxworks/973145#973145 0 Answer by Benoit for Porting issues to VxWorks Benoit 2009-06-10T00:20:19Z 2009-06-10T00:30:55Z <p>VxWorks provides for standard socket operations so that should be fine.<br /> There is a pthread compatibility library that is also part of the OS. You simply have to include the pthread component.</p> <p>Without more details on the mutex and critical section handling APIs, it's hard to provide details. </p> <p>VxWorks has its own API for mutex and critical section, but it also provides a POSIX interface. Different versions of VxWorks match to different version of the POSIX standard.</p> <p>Depending on what version of VxWorks you are using, heavy C++ STL use might be problematic (especially if you are using an old version of vxWorks).</p> <p>In C++, you have to be careful of static class instances. It works fine, but I believe it increases the program size since they have to be instantiated statically and are put in the .data segment I believe.</p> <p>If you have lots of dynamic C++ objects being created and destroyed, it will put more pressure on your heap. If your embedded system has a small memory footprint that might be a problem.</p> <p>If you create objects on the stack, don't forget to account for this (you have to do the same in C with structs) when you create your threads (which have a fixed size stack initialized at creation time).</p> http://stackoverflow.com/questions/540047/is-the-c-language-really-outdated 21 Is the C language really outdated? Benoit 2009-02-12T04:40:42Z 2009-05-22T15:49:28Z <p>I love the the stack overflow podcast, and I understand Jeff has no desire to learn C. However, in one of the conversation, Joel said something along the line that "While C is not being used much anymore, it's important to learn it to understand pointers".</p> <p>In my particular domain (embedded systems), C is still king and C++ is commonly used. Is that specific to my domain. Has C really disappeared from common use in other places, to be supplanted by JavaScript/C#/Ruby/Python... ?</p> <p>According to <a href="http://www.langpop.com/" rel="nofollow">Lang Pop</a>, C is still the dominant language. Would it be that Joel is simply a victim of his own "anecdote extrapolated has universal truth" syndrome? (Ok, I'm sure it's not what he called it, but y'all know what I'm talking about). </p> <p>Edit: For those wondering about the Joel anecdote reference, see his <a href="http://www.joelonsoftware.com/items/2008/11/18.html" rel="nofollow">Joel on Software post titled Anecdote</a>.</p> http://stackoverflow.com/questions/79892/how-does-vxworks-deal-with-two-tasks-at-the-same-priority 1 How does vxWorks deal with two tasks at the same priority? Benoit 2008-09-17T04:11:04Z 2009-05-18T20:28:34Z <p>We have two tasks (T1 and T2) in our vxWorks embedded system that have the same priority (110).<br /> How does the regular vxWorks scheduler deal with this if both tasks are ready to run?<br /> Which task executes first?</p> http://stackoverflow.com/questions/84121/what-8-bit-embedded-platform-have-you-used-for-a-design 1 What 8-bit embedded platform have you used for a design? Benoit 2008-09-17T14:55:58Z 2009-05-11T18:27:53Z <p>I'm looking for an off-the-shelf 8-bit processor <strong>module</strong> or even an entire hardware platform you used in a design. You used this product and essentially put your software on it.<br /> If you could mention the processor type and vendor it would be great. A small summary of the platform characteristics would also be great (e.g. 2 serial port, 1 10-base ethernet)</p> <p>Think of this as an informal survey, so the actual capabilities of the platform don't really matter.</p> <p>Edit: I'm really looking for off-the-shelf <strong>hardware modules</strong>, more than simply a processor. Actual capabilities don't matter greatly, as this is more of a survey.</p> http://stackoverflow.com/questions/111254/what-are-some-simple-projects-you-can-do-to-learn-the-embedded-programming-basics 7 What are some simple projects you can do to learn the embedded programming basics? Benoit 2008-09-21T15:43:58Z 2009-05-08T16:28:44Z <p>For someone wanting to learn the rudiments of embedded programming, what are some simple projects they could tackle?</p> <p>We're talking about someone that does know the basics of electronic circuitry (resistors, capacitors, digital ICs, etc...) and can do basic soldering. An electronics hobbyist that is looking to get into embedded programming, or maybe a sophomore or junior in a EE college degree.</p> <p>The platform doesn't really matter and neither does the language (it could be C or assembler or whatever). The point is to get ideas for a simple project that does <strong>something</strong>.</p> <p>If there is a book covering something like that, could you post a link to it?</p> http://stackoverflow.com/questions/148764/is-there-a-list-of-the-common-show-routines-in-vxworks 0 Is there a list of the common show routines in Vxworks? Benoit 2008-09-29T13:59:49Z 2009-05-01T00:49:03Z <p>In the vxWorks shell, there are a number of routines you can use to display information about the system. </p> <p>These routines are usually referred to as <strong>show</strong> routines because they tend to have the form of "xxxShow".</p> <p>Is there a list of these routines available?</p> http://stackoverflow.com/questions/808148/when-to-use-malloc-instead-of-new/808166#808166 1 Answer by Benoit for When to use Malloc instead of New Benoit 2009-04-30T17:39:21Z 2009-04-30T17:39:21Z <p>One of the reason is that in C++, you can overload the new operator.</p> <p>If you wanted to be sure to use the system library memory allocation in your code, you could use malloc.</p> http://stackoverflow.com/questions/807017/how-to-determine-which-task-is-dead/808135#808135 0 Answer by Benoit for How to determine which task is dead? Benoit 2009-04-30T17:32:19Z 2009-04-30T17:32:19Z <p>A simplistic, back of the napkin approach would be something like this:</p> <pre><code>int8_t wd_tickle[NUM_TASKS] void taskA_main() { ... // main loop while(1) { ... wd_tickle[TASKA_NUM]++; } } ... tasks B, C, D... follow similar pattern void watchdog_task() { for(int i= 0; i &lt; NUM_TASKS; i++) { if(0 == wd_tickle[i]) { // Egads! The task didn't kick us! Reset and record the task number } } } </code></pre> http://stackoverflow.com/questions/69492/what-simple-method-can-i-use-to-debug-an-embedded-processor-without-serial-port-o 5 What simple method can I use to debug an embedded processor without serial port or video? Benoit 2008-09-16T04:55:25Z 2009-04-23T20:45:54Z <p>We have a small embedded system without any video or serial ports (i.e. we can't output text via printf).<br /> We would like to track the progress of our code through the initialization sequence.<br /> Is there some simple things we can do to help with this.<br /> It is not running any OS, and the hardware platform is somewhat customizable.</p> http://stackoverflow.com/questions/654526/continuous-integration-how-to-get-developers-bought-in-to-the-idea/654599#654599 13 Answer by Benoit for Continuous Integration - How To Get Developers Bought-In To The Idea Benoit 2009-03-17T14:57:51Z 2009-03-28T22:34:41Z <p>This is fundamentally a human problem.<br /> If your teammates do not see the value of CI, then you have two choices:</p> <ul> <li>convince them of the value of CI</li> <li>Have management come down with an edict (convince management of the $ savings)</li> </ul> <p>The fact that your team did not even have source control leads me to some conclusions:</p> <ul> <li>They are day workers (9 to 5ers, just a job, not craftsmen, etc...)</li> <li>They are probably not considering the business implications</li> <li>Your company probably does not produce software as it's primary product.</li> <li>You will have a difficult time convincing them</li> </ul> <p>With that in mind, you could try management, but don't expect chocolates for valentine's day from your coworkers if you succeed.</p> <p>Intrinsic Value of continuous Integration:</p> <ul> <li>You know very soon when there is compilation problems</li> <li>You still have the code fresh in your mind when it breaks (vs. coming back next week)</li> <li>You avoid lots of integration issue, even if you don't have tests in place</li> <li>Helps avoid delays to releasing software</li> <li>Potentially saves the company money by avoiding missed deadlines</li> </ul> <p>If this is not enough to convince a developer <em>that cares about his craft</em>, I don't know what is...</p> <p>If you want to implement a disincentive to breaking the build, here are some ideas:</p> <ul> <li>Build Breaker pays $1 fine into a "Break Jar"</li> <li>Build Breaker has a "Build Breaker of the Day" Sign on their cubby</li> <li>Build Breaker gets an Ugly Mascot/Trophy on they desk/cubby wall</li> <li>Team announcement: "Joe broke the build"</li> </ul> <p>But again, if nobody wants to participate (or cares) that might not work.<br /> You might be perceived as a trouble maker.<br /> Make sure you have management support before trying these steps.</p> http://stackoverflow.com/questions/672904/remote-working-and-making-it-better/672944#672944 0 Answer by Benoit for Remote working and making it better Benoit 2009-03-23T10:59:05Z 2009-03-23T10:59:05Z <p>Scott Hanselman has quite a few tips on Surviving as a <a href="http://www.hanselman.com/blog/CommentView.aspx?guid=c7772f1a-fc14-472c-98e1-f488b755e4ba" rel="nofollow">remote employee</a> He also has a post of <a href="http://www.hanselman.com/blog/CommentView.aspx?guid=36715ce4-bd1a-469b-9e6f-606f11704954" rel="nofollow">"being present" during meetings</a></p> http://stackoverflow.com/questions/663207/how-do-i-add-utf-8-support-and-an-associated-font-table-to-an-embedded-project/664085#664085 0 Answer by Benoit for How do I add UTF-8 support, and an associated font-table, to an embedded project? Benoit 2009-03-19T21:07:40Z 2009-03-19T21:07:40Z <p>You didn't specify the size of your characters, or what is the size of your character set so it is difficult to estimate the size requirements. </p> <p>I would store the bitmaps in a straight array format, depending on the size of the characters, it might store fairly efficiently without the need to pack/unpack elements.</p> <p>For example, if we take a 36 character alphabet with a 8x6 character, you need 216 bytes of storage for the array. (6 bytes/character * 36 - Each byte would be a vertical slice of the character).</p> <p>For the parsing, it is simply a matter of doing offset in the table.<br /> The old (char - 'A') and (char - '0') tricks do quite well.</p> <p>The other question is where to store the bitmap array. In ROM is the obvious answer, but if you need to support other glyphs it might need reprogramming, which you don't specify if it's an issue.</p> <p>If the glyphs must be programmed dynamically, then you don't have a choice but to put it in RAM.</p> http://stackoverflow.com/questions/657586/what-is-a-good-filesystem-for-embedded-nand-drives/659952#659952 1 Answer by Benoit for What is a good filesystem for embedded NAND drives? Benoit 2009-03-18T20:25:31Z 2009-03-18T20:25:31Z <p>There is a commercial vendor called <a href="http://www.datalight.com/resources/download.php?type=public&amp;resourceid=715" rel="nofollow">DataLight</a> which offers a robust flash file system, but of course it's not free.</p> <p>They have an interesting <a href="http://www.datalight.com/" rel="nofollow">white paper (PDF)</a> (take with a grain of salt) on performances.</p> http://stackoverflow.com/questions/654485/reusable-knowledge-going-from-embedded-to-desktop/655747#655747 3 Answer by Benoit for Reusable knowledge going from Embedded to Desktop Benoit 2009-03-17T19:50:48Z 2009-03-17T19:50:48Z <p>Embedded engineers in general tend to be more disciplined when it comes to validating operations and dealing with finite resources.</p> <p>This can also translate into coming up with an exception handling strategy earlier on.</p> <p>The quintessential example is checking the return value of malloc. I have seen very few desktop software consistently check it, but it's commonplace in embedded environments.</p> http://stackoverflow.com/questions/653697/is-it-safe-to-pass-function-pointers-as-arguments-to-dll-functions-and-invoke-the/653762#653762 4 Answer by Benoit for Is it safe to pass function pointers as arguments to dll functions and invoke them from inside of the dll? Benoit 2009-03-17T11:03:02Z 2009-03-17T14:44:36Z <p>Passing function pointers to a DLL has been done for generations.</p> <p>All the callback functions used in GUI programming (for example progress bars update) use function pointers. </p> <p>When developing using WIN32, is there a reason you want to use function pointers to malloc/free? Why are you not simply using malloc/free directly? </p> <p>That is how I have always done it in the past. Not that this guarantees it's the correct way.<br /> In fact, you might take that as an indication that it's the worst possible way :)</p> http://stackoverflow.com/questions/1669245/circular-buffer-in-flash/1670430#1670430 Comment by Benoit on Circular Buffer in Flash Benoit 2009-11-03T22:10:01Z 2009-11-03T22:10:01Z Be careful about the wear leveling assumption...True if you have USB or SD type interface. Not so true if you deal with the flash part directly. http://stackoverflow.com/questions/1030873/taskvaradd-used-twice-for-the-same-variable/1044578#1044578 Comment by Benoit on taskVarAdd used twice for the same variable Benoit 2009-06-25T22:06:40Z 2009-06-25T22:06:40Z You can't just go &quot;tv1&quot; from the shell. You have to spawn it: sp(tv1). If you just go -&gt; tv1 -&gt; tv1 You have added the task var 4 times to the shell's context! http://stackoverflow.com/questions/176709/persisting-configuration-items-in-net/176847#176847 Comment by Benoit on Persisting configuration items in .net Benoit 2009-04-17T02:10:00Z 2009-04-17T02:10:00Z This is exactly what I was looking for! Simple to use, yet powerful. Directly maps between DTOs and human readable format. http://stackoverflow.com/questions/679490/how-do-i-build-a-pxe-bootable-boot-loader-from-workbench Comment by Benoit on How do I build a PXE-bootable boot loader from Workbench? Benoit 2009-03-25T16:11:23Z 2009-03-25T16:11:23Z have you tried contacting tech support? http://stackoverflow.com/questions/653697/is-it-safe-to-pass-function-pointers-as-arguments-to-dll-functions-and-invoke-the/653762#653762 Comment by Benoit on Is it safe to pass function pointers as arguments to dll functions and invoke them from inside of the dll? Benoit 2009-03-18T13:46:40Z 2009-03-18T13:46:40Z I fail to see how providing a level of indirection would fix that, unless you have your own memory management. I haven't run across issues of crash when malloc/free from different DLLs as long as you don't do a double free. http://stackoverflow.com/questions/654526/continuous-integration-how-to-get-developers-bought-in-to-the-idea/654599#654599 Comment by Benoit on Continuous Integration - How To Get Developers Bought-In To The Idea Benoit 2009-03-17T15:06:45Z 2009-03-17T15:06:45Z Clearly, you ARE a troublemaker :) In your situation, convincing management might be a better approach. $ saved, time to market, productivity, etc... But they might not care either. http://stackoverflow.com/questions/645826/how-do-i-instantiate-a-type-and-its-value-from-a-string/645915#645915 Comment by Benoit on How do I instantiate a type and its value from a string? Benoit 2009-03-14T13:50:28Z 2009-03-14T13:50:28Z Good Point! In my case, it doesn't matter as these are configuration elements which are never collected. http://stackoverflow.com/questions/645826/how-do-i-instantiate-a-type-and-its-value-from-a-string/645833#645833 Comment by Benoit on How do I instantiate a type and its value from a string? Benoit 2009-03-14T12:32:56Z 2009-03-14T12:32:56Z Ladies and Gentlemen, the man never sleeps! Fantastic and concise at the same time! http://stackoverflow.com/questions/637824/pthreadcancel-behaves-differently-on-arm-and-ppc Comment by Benoit on pthread_cancel behaves differently on arm and ppc? Benoit 2009-03-12T11:49:07Z 2009-03-12T11:49:07Z It would also help to know which OS as the pthread package is often OS specific. http://stackoverflow.com/questions/565405/how-to-programatically-restart-windows-explorer-process/574651#574651 Comment by Benoit on How to programatically restart windows explorer process Benoit 2009-03-03T11:37:21Z 2009-03-03T11:37:21Z A bit of flaw in the logic. You'll restart a new explorer process for each one you delete. Put process.Start outside the foreach. http://stackoverflow.com/questions/565405/how-to-programatically-restart-windows-explorer-process/565528#565528 Comment by Benoit on How to programatically restart windows explorer process Benoit 2009-02-19T15:30:19Z 2009-02-19T15:30:19Z True, but as I'm doing a .NET Application, that's not an issue http://stackoverflow.com/questions/73312/how-you-disable-the-processor-cache-on-a-powerpc-processor/73316#73316 Comment by Benoit on How you disable the processor cache on a PowerPC processor? Benoit 2009-02-17T01:37:05Z 2009-02-17T01:37:05Z Good Point! The question was originally in the context of running disabled from power up. Thus, there would not be any dirty cache lines. When switching on the fly, you must first flush the cache indeed! http://stackoverflow.com/questions/540047/is-the-c-language-really-outdated/541338#541338 Comment by Benoit on Is the C language really outdated? Benoit 2009-02-12T15:18:35Z 2009-02-12T15:18:35Z Actually, this is a real concern for maintenance of long lived system. Try to find a Phytos C compiler for 68K running on a Sparc 386 :) Of course, nothing to do with C per say. http://stackoverflow.com/questions/536506/how-do-real-time-operating-systems-work/536788#536788 Comment by Benoit on How do Real Time Operating Systems work? Benoit 2009-02-11T14:24:43Z 2009-02-11T14:24:43Z No, if you are the highest priority you run until you voluntarily give up, OR a higher priority task than you becomes ready, at which time the (old) high priority gets pre-empted. I'll clarify in the main text. Thanks! http://stackoverflow.com/questions/456601/new-to-embedded-development-working-on-digital-kvm Comment by Benoit on New to Embedded Development. Working on digital KVM Benoit 2009-01-19T15:59:25Z 2009-01-19T15:59:25Z I believe the downmod is probably because this project is not realistic from a hobbyist/new to embedded perspective. The hardware itself would require serious skills. Definitely an interesting project though.