User Wade Mealing - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T04:03:50Zhttp://stackoverflow.com/feeds/user/10671http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/149321/what-ide-would-be-good-for-linux-kernel-driver-development/250046#2500469Answer by Wade Mealing for What IDE would be good for linux kernel driver developmentWade Mealing2008-10-30T12:44:57Z2008-11-01T00:16:42Z<p>I've recently been hunting around this kind of problem space myself. Ive found crash and qemu/kvm incredibly useful for the basic testing. People often tell you often not to test a kernel/modules on a system with X, although I usually have a serial console and kdump setup to catch the vmcore to find out what exactly happened (more useful than just the log messages).</p>
<p>My views on editors i've been using:</p>
<h2>Eclipse</h2>
<p>While java based, the ganymede version seems quite responsive even when dealing with larger C projects such as the kernel. The source manager integration seems nice. I deal with multiple (300+) trees of the kernel, so it gets a good work out.</p>
<p>The Indexer does lag behind a bit, but after adjusting some startup parameters, it seemed to handle indexing of a few kernels with no particular problems. The auto-build functions of the C project didn't suit the kernel well, but its quite easy to add an external "build" for something like the kernel. The downside is that the debugger does not deal with vmcore/crashdumps, at least I couldn't figure out how.</p>
<p>The debugger could however connect a remote kernel under GDB, so this may be useful for those debugging remote live systems.</p>
<h2>Vim/Gvim</h2>
<p>I hear people cry about VIM not being a suitable tool for editing large amounts of code, I find this simply untrue. Gvim along with cscope, NerdTree and ctags make working with large code bases quite efficient and easy to work with.</p>
<p>A second tab open with "crash" (<a href="http://people.redhat.com/anderson/crash_whitepaper/" rel="nofollow">http://people.redhat.com/anderson/crash_whitepaper/</a> ) running allowed me to inspect and copy names/elements between the editor. The Eclipse debugger didnt open vmcore files, and I couldn't figure a way to open a terminal with any
decent size to be useful with crash. </p>
<h2>Emacs</h2>
<p>Not my favourite editor, but I've learned the basics of how it works, and it ends up being very similar to vim.</p>
<h2>Kdevelop.</h2>
<p>KDevelop indexer wouldn't index more than 3 code trees. Didn't investigate why. Code completion didnt work so well with a code base this large.</p>
<p>None of these editors integrate "well" with kvm/crash which is an area I'd like to see improved.</p>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/90032/reasons-not-to-use-django/90128#9012835Answer by Wade Mealing for Reasons not to use djangoWade Mealing2008-09-18T04:49:27Z2008-09-18T04:49:27Z<p>Yeah, I am an honest guy, and the client wanted to charge by the hour.</p>
<p>There was no way Django was going to allow me to make enough money.</p>
http://stackoverflow.com/questions/69859/how-could-i-intercept-linux-sys-calls/79901#799012Answer by Wade Mealing for how could I intercept linux sys calls?Wade Mealing2008-09-17T04:13:04Z2008-09-17T04:13:04Z<p>Some applications can trick strace/ptrace not to run, so the only real option I've had is using systemtap</p>
<p>Systemtap can intercept a bunch of system calls if need be due to its wild card matching. Systemtap is not C, but a separate language. In basic mode, the systemtap should prevent you from doing stupid things, but it also can run in "expert mode" that falls back to allowing a developer to use C if that is required.</p>
<p>It does not require you to patch your kernel (Or at least shouldn't), and once a module has been compiled, you can copy it from a test/development box and insert it (via insmod) on a production system.</p>
<p>I have yet to find a linux application that has found a way to work around/avoid getting caught by systemtap.</p>
http://stackoverflow.com/questions/68247/what-is-a-good-tool-to-aid-in-browsing-following-c-code/68367#683672Answer by Wade Mealing for What is a good tool to aid in browsing/following C code?Wade Mealing2008-09-16T00:55:53Z2008-09-16T00:55:53Z<p>I do a bit in the kernel space, and keep coming back the scope.</p>
<p>For example:</p>
<p>$ cd /usr/src/redhat/BUILD/kernel-version</p>
<p>$ cscope -R -p4</p>
<pre><code> Find this C symbol:
Find this function definition:
Find functions called by this function:
Find functions calling this function:
Find this text string:
Change this text string:
Find this egrep pattern:
Find this file:
Find files #including this file:
</code></pre>
<p>I usually "live" in c-scope when working on someone elses project. I use this to open files with "gvim" (my IDE), edit things, then quit "back" to c-scope, It helps me keep task focused. </p>
<p>I believe that cscope can be configured to work with vim and emacs, although I've seen people use other editors also.</p>
<p>Best of luck to you.</p>
http://stackoverflow.com/questions/5651/why-are-professors-or-schools-picking-java-over-c-to-teach-to-students/39241#39241Comment by Wade Mealing on Why are professors or schools picking Java over C++ to teach to students?Wade Mealing2008-09-21T22:27:50Z2008-09-21T22:27:50ZBy doing this, they miss the formal introduction to object oriented languages. C++ can do all your neat C tricks, but you can splash OO in if you need to.