User CesarB - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T20:39:37Zhttp://stackoverflow.com/feeds/user/28258http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/224138/infinite-loops-top-or-bottom3Infinite loops - top or bottom?CesarB2008-10-22T01:16:19Z2009-11-20T18:16:06Z
<p>In the spirit of questions like <a href="http://stackoverflow.com/questions/224059/do-your-loops-test-at-the-top-or-bottom">Do your loops test at the top or bottom?</a>:</p>
<p>Which style do you use for an <em>infinite</em> loop, and why?</p>
<ul>
<li>while (true) { }</li>
<li>do { } while (true);</li>
<li>for (;;) { }</li>
<li>label: ... goto label;</li>
</ul>
http://stackoverflow.com/questions/1259163/to-find-a-git-repo-by-its-id/1259165#12591652Answer by CesarB for To find a Git Repo by its IDCesarB2009-08-10T18:39:26Z2009-08-11T08:58:33Z<p>The easiest way to do it is to, within each repository, use <code>git cat-file -e</code> to check if the repository has that object:</p>
<pre><code>git cat-file -e f1f633 2>/dev/null && echo "found"
</code></pre>
<p>Just combine it with any way of running within all git repositories in your machine, for instance:</p>
<pre><code>find / -name objects | fgrep .git/objects | while read dir; do
(cd "$dir" && git cat-file -e f1f633 2>/dev/null && echo "found: $dir")
done
</code></pre>
<p>You can also use other forms of <code>git cat-file</code> to get more data about the object; see the manual for details.</p>
http://stackoverflow.com/questions/1215432/merge-sort-in-haskell/1215457#12154573Answer by CesarB for Merge sort in HaskellCesarB2009-08-01T00:22:35Z2009-08-01T00:27:42Z<p>I am not sure if this is the cause of your problem, but remember that lists are a sequential data structure. In particular, both <code>length xs</code> and <code>splitAt n xs</code> will take an amount of time proportional to the length of the list (<code>O(n)</code>).</p>
<p>In C and Java, you are most probably using arrays, which take constant time for both operations (<code>O(1)</code>).</p>
<p>Edit: answering your question on how to make it more efficient, you can use arrays in Haskell too.</p>
http://stackoverflow.com/questions/1190597/open-source-tool-to-visualize-c-c-header-file-dependencies/1190612#11906124Answer by CesarB for Open-source tool to visualize C/C++ header file dependencies?CesarB2009-07-27T21:08:21Z2009-07-27T21:08:21Z<p><a href="http://en.wikipedia.org/wiki/Doxygen" rel="nofollow">doxygen</a> has a graph of file dependencies as one of its several outputs. It might not be exactly what you want, but it is a start.</p>
http://stackoverflow.com/questions/1158012/gcc-atomic-builtins-instead-of-pthread/1165219#11652192Answer by CesarB for GCC Atomic Builtins instead of pthread?CesarB2009-07-22T13:24:53Z2009-07-22T13:24:53Z<p>If you are already using pthread, and the pthread lock functions already do what you want, it is best to use the pthread lock functions.</p>
<p>These atomic builtins are just the building blocks for higher-level primitives; writing these higher-level primitives tends to be tricky, and any mistakes can cause errors which can take a long time to show up (since they usually depend on timing). If you already have a library with higher-level primitives which do what you want and are fast enough for your needs (and do not assume they are too slow just because you have to do a function call), it is best to not reinvent the wheel.</p>
http://stackoverflow.com/questions/1162625/why-does-internet-explorer-need-the-haslayout-flag/1162851#11628510Answer by CesarB for Why does Internet Explorer need the "hasLayout" flag?CesarB2009-07-22T02:55:54Z2009-07-22T02:55:54Z<p>It is very hard to know without being able to look at their source code.</p>
<p>The following links are the most informative I have found so far:</p>
<ul>
<li><a href="http://www.satzansatz.de/cssd/onhavinglayout.html#docu" rel="nofollow">On having layout — the concept of hasLayout in IE/Win</a></li>
<li><a href="http://dean.edwards.name/IE7/notes/#layout" rel="nofollow">/IE7/notes/</a></li>
</ul>
<p>The first one quotes an outdated document which contains a very interesting sentence:</p>
<blockquote>
<p>Internally, having layout means that an element is responsible for drawing its own content.</p>
</blockquote>
<p>And the second one says:</p>
<blockquote>
<p>The object model inside Explorer appears to be a hybrid of a document model and their traditional application model.</p>
</blockquote>
<p>Putting both together, my guess is that elements with <code>hasLayout</code> are in fact windows in the Win32 API sense — that is, things <code>CreateWindow</code> deals with. The elements without <code>hasLayout</code> then do not have their own "window", but are drawn by their nearest <code>hasLayout</code>-having ancestor, using some sort of layout code (somewhat like Qt's layout classes). Since only the true "windows" have the layout code (which draws their layout-less descentants), they are the ones which "have layout", so <code>hasLayout</code>.</p>
<p>If that is the case, there would be two different code paths layout code (the one for <code>hasLayout</code>, which would have to position the "windows" so they can be drawn later using the normal window drawing system, and the one which draws the children of the <code>hasLayout</code> "window" by hand while drawing the "window"). Since all code has bugs (and anedoctal evidence says IE<=6 has more than the average), both code paths would have <em>different</em> bugs, explaining why adding or removing <code>hasLayout</code> (effectively switching to the other code path) changes the set of bugs affecting the element in question. Not only that, but since you have two code paths working in the same document, the <em>iteraction</em> of both code paths would be another rich source of subtle bugs.</p>
<p>Other browsers probably avoided the problem simply by using an architecture which does not have such a dual layout path.</p>
<p>If my guess is correct, I would say that if you used a tool to show all the child windows the browser is using, you would find out that every visible <code>hasLayout</code> element has one, while the layout-less elements do not have one.</p>
http://stackoverflow.com/questions/861864/is-there-a-safe-subset-of-python-for-use-as-an-embedded-scripting-language/1135067#11350670Answer by CesarB for Is there a "safe" subset of Python for use as an embedded scripting language?CesarB2009-07-16T02:00:45Z2009-07-16T02:00:45Z<p>This sounds like what you want: <a href="http://lwn.net/Articles/321872/" rel="nofollow">Reviving Python restricted mode</a>.</p>
<p>The Python interpreter has a built-in "restricted" mode, enabled by changing the <code>__builtins__</code> magic variable. The article <a href="http://tav.espians.com/paving-the-way-to-securing-the-python-interpreter.html" rel="nofollow">Paving the Way to Securing the Python Interpreter</a> explains the trick in more detail. Note that to work completely, it needs a patch to the Python intrepreter; I do not know if it has already been applied.</p>
<p>For a pure python proof-of-concept, see his previous post <a href="http://tav.espians.com/a-challenge-to-break-python-security.html" rel="nofollow">A Challenge To Break Python Security</a>.</p>
http://stackoverflow.com/questions/1105634/is-there-a-definitieve-resource-that-documents-navigation-of-the-linux-proc-and/1105737#11057373Answer by CesarB for Is there a definitieve resource that documents navigation of the linux /proc and /sys filesystems?CesarB2009-07-09T18:34:25Z2009-07-09T18:34:25Z<p>The definitive resource for <code>/sys</code> is <a href="http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=blob;f=Documentation/sysfs-rules.txt" rel="nofollow">Documentation/sysfs-rules.txt</a>. The definitive resource for <code>/proc/sys</code> is <a href="http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=tree;f=Documentation/sysctl" rel="nofollow">Documentation/sysctl/</a>. The definitive resource for the rest of <code>/proc</code> appears to be <a href="http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=blob;f=Documentation/filesystems/proc.txt" rel="nofollow">Documentation/filesystems/proc.txt</a>. The rest of the <code>Documentation/</code> directory in the Linux kernel source has other interesting information. In particular, <a href="http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=tree;f=Documentation/ABI" rel="nofollow">Documentation/ABI/</a> mentions the stability of each interface.</p>
http://stackoverflow.com/questions/575350/why-cant-gcc-find-the-random-interface-when-stdc99-is-set/1085096#10850960Answer by CesarB for Why can't gcc find the random() interface when -std=c99 is set?CesarB2009-07-06T01:46:44Z2009-07-06T01:46:44Z<p>Yes, there is a trick you are missing: you can use <code>-std=gnu99</code> instead of <code>-std=c99</code>.</p>
<p><code>-std=c99</code> <code>#define</code>s <code>__STRICT_ANSI__</code>, which <code>/usr/include/features.h</code> interprets as "do not enable anything outside the C standard by default" (without it, you get at least both <code>_SVID_SOURCE</code> and <code>_BSD_SOURCE</code>). <code>-std=gnu99</code>, on the other hand, means "C99 plus GNU extensions" (the gcc default is currently <code>-std=gnu89</code>, its C89 equivalent, which is why you needed to specify something to get the new C99 features).</p>
<p>As an alternative, you can enable the feature test macros (as mentioned in @litb's answer). Looking at <code>/usr/include/stdlib.h</code> in my system, it expects one of <code>__USE_SVID</code>, <code>__USE_XOPEN_EXTENDED</code>, or <code>__USE_BSD</code>. <code>/usr/include/features.h</code> tells me that the feature test macros which would enable these are:</p>
<ul>
<li><code>_SVID_SOURCE</code> (enables <code>__USE_SVID</code>)</li>
<li><code>_BSD_SOURCE</code> (enables <code>__USE_BSD</code>)</li>
<li><code>_XOPEN_SOURCE</code> with a value of at least <code>500</code> (enables <code>__USE_XOPEN_EXTENDED</code>)</li>
<li><code>_XOPEN_SOURCE_EXTENDED</code> (also enables <code>__USE_XOPEN_EXTENDED</code>)</li>
<li><code>_GNU_SOURCE</code> (enables everything, including the four feature test macros above)</li>
</ul>
<p>For new programs where you are not too concerned about potential name collisions with new functions from future standards, using both <code>-std=gnu99</code> and <code>-D_GNU_SOURCE</code> is a good idea. It allows you to use all the new standard features and GNU extensions, which combined with some sort of fallback (for instance, <code>autoconf</code>-style feature tests) gives the most flexibility.</p>
<p>References:</p>
<ul>
<li><a href="http://gcc.gnu.org/onlinedocs/gcc-4.4.0/gcc/C-Dialect-Options.html" rel="nofollow">Options Controlling C Dialect</a></li>
<li><a href="http://www.gnu.org/software/libc/manual/html_node/Feature-Test-Macros.html" rel="nofollow">Feature Test Macros</a></li>
</ul>
http://stackoverflow.com/questions/1078677/why-do-i-get-different-results-when-i-dereference-a-pointer-after-freeing-it/1079208#10792088Answer by CesarB for Why do I get different results when I dereference a pointer after freeing it?CesarB2009-07-03T12:47:11Z2009-07-03T12:47:11Z<p><code>free()</code> (and <code>malloc()</code>) are not from gcc. They come from the C library, which on Debian is usually glibc. So, what you are seeing is glibc's behavior, not gcc's (and would change with a different C library, or a different version of the C library).</p>
<p>I particular, after you use <code>free()</code> you are releasing the memory block <code>malloc()</code> gave you. It's not yours anymore. Since it is not supposed to be used anymore, the memory manager within glibc is free to do whatever it wants with the memory block, including using parts of it as its own memory structures (which is probably why you are seeing its contents change; they have been overwritten with bookkeeping information, probaly pointers to other blocks or counters of some sort).</p>
<p>There are other things that can happen; in particular, if the size of your allocation was large enough, glibc can ask the kernel for a separate memory block for it (with <code>mmap()</code> or similar calls), and <em>release it back to the kernel</em> during the <code>free()</code>. In that case, your program would crash. This can in theory also happen in some circunstances even with small allocations (glibc can grow/shrink the heap).</p>
http://stackoverflow.com/questions/486842/equivalent-of-pthreadrwlocktimedrdlock-and-pthreadrwlocktimedwrlock-i/1069648#10696480Answer by CesarB for Equivalent of "pthread_rwlock_timedrdlock()" and "pthread_rwlock_timedwrlock()" in MSVC/WindowsCesarB2009-07-01T15:04:20Z2009-07-01T15:04:20Z<p>Take a look at <a href="http://sourceware.org/pthreads-win32/" rel="nofollow">pthreads-win32</a>, which implements both functions (and the rest of pthreads) using the Win32 API. Its implementation of these functions should be enough to get you started. Or you could use it directly instead of the native Win32 thread and synchronization primitives.</p>
http://stackoverflow.com/questions/1069352/is-it-possible-to-turn-off-support-for-and-or-boolean-operator-usage-in-gcc/1069397#106939714Answer by CesarB for Is it possible to turn off support for "and" / "or" boolean operator usage in gcc?CesarB2009-07-01T14:22:46Z2009-07-01T14:28:21Z<p>They are part of the C++ standard, see for instance <a href="http://stackoverflow.com/questions/555505/c-alternative-tokens/555517#555517">this StackOverflow answer</a> (which quotes the relevant parts of the standard).</p>
<p>Another answer in the same question mentions how to do the opposite: make them work in MSVC.</p>
<p>To disable them in GCC, use <a href="http://gcc.gnu.org/onlinedocs/gcc-4.4.0/gcc/C_002b_002b-Dialect-Options.html" rel="nofollow"><code>-fno-operator-names</code></a>. Note that, by doing so, you are in fact switching to a non-standard dialect of C++, and there is a risk that you end up writing code which might not compile correctly on standard-compliant compilers (for instance, if you declare a variable with a name that would normally be reserved).</p>
http://stackoverflow.com/questions/1063585/udivdi3-undefined-howto-find-code/1063808#10638081Answer by CesarB for __udivdi3 undefined. Howto find code?CesarB2009-06-30T13:53:04Z2009-06-30T13:53:04Z<p>Actually, 64-bit integer divison and modulo <em>are</em> supported within a 32-bit Linux kernel; however, you must use the correct macros to do so (which ones depend on your kernel version, since recently new better ones were created IIRC). The macros will do the correct thing in the most efficient way for whichever architecture you are compiling for.</p>
<p>The easiest way to find where they are being used is (as mentioned in @shodanex's answer) to generate the assembly code; IIRC, the way to do so is something like <code>make directory/module.s</code> (together with whatever parameters you already have to pass to <code>make</code>). The next easiest way is to disassemble the <code>.o</code> file (with something like <code>objdump --disassemble</code>). Both ways will give you the functions where the calls are being generated (and, if you know how to read assembly, a general idea of where within the function the division is taking place).</p>
http://stackoverflow.com/questions/1057561/get-the-linux-kernel-make-process-to-rebuild-modified-files/1057609#10576091Answer by CesarB for Get the Linux Kernel make process to rebuild modified filesCesarB2009-06-29T10:27:05Z2009-06-29T10:27:05Z<p><code>debian/rules</code> is not the kernel Makefile. It has no way of knowing the file you edited is a dependency of the final kernel, since these dependencies are in the real Makefile.</p>
<p>In fact, I would expect the <code>debian/rules</code> <code>build</code> target (the one which actually does the compilation) to depend only on a "flag" file it creates after finishing the build. If that is the case, a simple workaround would be to remove that "flag" file; it would then compile everything again (by calling the kernel's <code>Makefile</code>, which would know how to do a partial rebuild. Of course, that's assuming the <code>build</code> target does not try to be tidy and do a <code>make clean</code> or equivalent...)</p>
<p>(I did not look at the <code>debian/rules</code> for the package you are using, so I might be wrong, but at least it is a start.)</p>
http://stackoverflow.com/questions/1048592/how-to-check-if-a-file-has-been-opened-by-another-application-in-c/1049461#10494611Answer by CesarB for How to check if a file has been opened by another application in C++CesarB2009-06-26T14:31:02Z2009-06-26T14:31:02Z<p>Not only the standard library does not have this funcionality, it's not even possible in general. You could (on linux) check <code>/proc/*/fd</code> — but it is possible that your program does not have permission to do it on processes from other users (this is the default in Ubuntu, for instance).</p>
http://stackoverflow.com/questions/1041059/header-files-in-subdirectories-e-g-gtk-gtk-h-vs-gtk-2-0-gtk-gtk-h/1041392#10413925Answer by CesarB for Header files in subdirectories (e.g. gtk/gtk.h vs gtk-2.0/gtk/gtk.h)CesarB2009-06-24T22:48:27Z2009-06-24T22:48:27Z<p>You need to use <code>pkg-config</code> to get the include paths:</p>
<pre><code>$ pkg-config --cflags gtk+-2.0
-I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12
</code></pre>
<p>You must also use it to get the libraries:</p>
<pre><code>$ pkg-config --libs gtk+-2.0
-lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lpangoft2-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lgio-2.0 -lcairo -lpango-1.0 -lfreetype -lz -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lglib-2.0
</code></pre>
<p>(The output of these commands will vary depending on your distribution, and will always be the correct ones for your distribution.)</p>
http://stackoverflow.com/questions/1029969/why-is-my-git-repository-so-big/1030279#10302793Answer by CesarB for Why is my git repository so big?CesarB2009-06-23T01:55:26Z2009-06-23T02:01:19Z<p>Are you sure you are counting just the .pack files and not the .idx files? They are in the same directory as the .pack files, but do not have any of the repository data (as the extension indicates, they are nothing more than indexes for the corresponding pack — in fact, if you know the correct command, you can easily recreate them from the pack file, and git itself does it when cloning, as only a pack file is transferred using the native git protocol).</p>
<p>As a representative sample, I took a look at my local clone of the linux-2.6 repository:</p>
<pre><code>$ du -c *.pack
505888 total
$ du -c *.idx
34300 total
</code></pre>
<p>Which indicates an expansion of around 7% should be common.</p>
<p>There are also the files outside <code>objects/</code>; in my personal experience, of them <code>index</code> and <code>gitk.cache</code> tend to be the biggest ones (totaling 11M in my clone of the linux-2.6 repository).</p>
http://stackoverflow.com/questions/1016681/arguments-to-kernel/1022918#10229180Answer by CesarB for Arguments to kernelCesarB2009-06-21T01:03:09Z2009-06-21T01:03:09Z<p>For the Linux kernel, there are several things the bootloader has to tell the kernel. It includes things like the kernel command line (as several other people already mentioned), where in the memory the <a href="http://en.wikipedia.org/wiki/Initrd" rel="nofollow">initrd</a> has been loaded and its size, if an initrd is being used (the kernel cannot load it by itself; often when using an initrd, the modules needed to acess storage devices are within the initrd, and it can also have to do some quite complex setup before being able to access the storage), and several assorted odds and ends.</p>
<p>See <a href="http://lxr.linux.no/linux+v2.6.30/Documentation/x86/boot.txt" rel="nofollow">Documentation/x86/boot.txt</a> (link to 2.6.30's version) for more detail for the traditional x86 architecture (both 32-bit and 64-bit), including how these variables are passed to the kernel setup code.</p>
http://stackoverflow.com/questions/1020653/how-can-you-do-anything-useful-without-mutable-state/1020827#10208271Answer by CesarB for How can you do anything useful without mutable state?CesarB2009-06-20T03:01:13Z2009-06-20T03:20:47Z<p>It is in fact quite easy to have something which looks like mutable state even in languages without mutable state.</p>
<p>Consider a function with type <code>s -> (a, s)</code>. Translating from Haskell syntax, it means a function which takes one parameter of type "<code>s</code>" and returns a pair of values, of types "<code>a</code>" and "<code>s</code>". If <code>s</code> is the type of our state, this function takes one state and returns a new state, and possibly a value (you can always return "unit" aka <code>()</code>, which is sort of equivalent to "<code>void</code>" in C/C++, as the "<code>a</code>" type). If you chain several calls of functions with types like this (getting the state returned from one function and passing it to the next), you have "mutable" state (in fact you are in each function creating a new state and abandoning the old one).</p>
<p>It might be easier to understand if you imagine the mutable state as the "space" where your program is executing, and then think of the time dimension. At instant t1, the "space" is in a certain condition (say for example some memory location has value 5). At a later instant t2, it is in a different condition (for example that memory location now has value 10). Each of these time "slices" is a state, and it is immutable (you cannot go back in time to change them). So, from this point of view, you went from the full spacetime with a time arrow (your mutable state) to a set of slices of spacetime (several immutable states), and your program is just treating each slice as a value and computing each of them as a function applied to the previous one.</p>
<p>OK, maybe that was not easier to understand :-)</p>
<p>It might seem inneficient to explicitly represent the whole program state as a value, which has to be created only to be discarded the next instant (just after a new one is created). For some algorithms it might be natural, but when it is not, there is another trick. Instead of a real state, you can use a fake state which is nothing more than a marker (let's call the type of this fake state <code>State#</code>). This fake state exists from the point of view of the language, and is passed like any other value, but the compiler completely omits it when generating the machine code. It only serves to mark the sequence of execution.</p>
<p>As an example, suppose the compiler gives us the following functions:</p>
<pre><code>readRef :: Ref a -> State# -> (a, State#)
writeRef :: Ref a -> a -> State# -> (a, State#)
</code></pre>
<p>Translating from these Haskell-like declarations, <code>readRef</code> receives something which resembles a pointer or a handle to a value of type "<code>a</code>", and the fake state, and returns the value of type "<code>a</code>" pointed to by the first parameter and a new fake state. <code>writeRef</code> is similar, but changes the value pointed to instead.</p>
<p>If you call <code>readRef</code> and then pass it the fake state returned by <code>writeRef</code> (perhaps with other calls to unrelated functions in the middle; these state values create a "chain" of function calls), it will return the value written. You can call <code>writeRef</code> again with the same pointer/handle and it will write to the same memory location — but, since conceptually it is returning a new (fake) state, the (fake) state is still imutable (a new one has been "created"). The compiler will call the functions in the order it would have to call them if there was a real state variable which had to be computed, but the only state which there is is the full (mutable) state of the real hardware.</p>
<p>(Those who know Haskell will notice I simplified things a lot and ommited several important details. For those who want to see more details, take a look at <code>Control.Monad.State</code> from the <code>mtl</code>, and at the <code>ST s</code> and <code>IO</code> (aka <code>ST RealWorld</code>) monads.)</p>
<p>You might wonder why doing it in such a roundabout way (instead of simply having mutable state in the language). The real advantage is that you have <a href="http://en.wikipedia.org/wiki/Reification_(computer_science)" rel="nofollow">reified</a> your program's state. What before was implicit (your program state was global, allowing for things like <a href="http://en.wikipedia.org/wiki/Action_at_a_distance_(computer_science)" rel="nofollow">action at a distance</a>) is now explicit. Functions which do not receive and return the state cannot modify it or be influenced by it; they are "pure". Even better, you can have separate state threads, and with a bit of type magic, they can be used to embed an imperative computation within a pure one, without making it impure (the <code>ST</code> monad in Haskell is the one normally used for this trick; the <code>State#</code> I mentioned above is in fact GHC's <code>State# s</code>, used by its implementation of the <code>ST</code> and <code>IO</code> monads).</p>
http://stackoverflow.com/questions/1020443/making-numerous-pointers-null-at-the-same-time/1020520#102052011Answer by CesarB for making numerous pointers NULL at the same timeCesarB2009-06-19T23:49:57Z2009-06-20T00:06:31Z<p>Instead of <code>int *</code>, create a smart-pointer-like class which works exactly like a <code>int *</code>, but default-constructs with NULL:</p>
<pre><code>template <typename T>
class MyPointer {
T *p;
public:
MyPointer() : p(NULL) { }
MyPointer(T *o) : p(o) { }
operator T*() const { return p; }
// ...and the rest of the traditional smart-pointer operators
};
</code></pre>
<p>Then, use it in your class:</p>
<pre><code>class SomeClass
{
private:
MyPointer<int> ptr1;
MyPointer<int> ptr2;
...
MyPointer<int> ptrn;
private:
// constructors, destructors, and methods
};
</code></pre>
<p>Every variable of the <code>MyPointer<int></code> type will be automatically initialized correctly in <code>SomeClass</code>'s constructors, without the need for any extra typing. If you did not forget or incorrectly implement any of <code>MyPointer</code>'s methods, it will act exactly like a normal pointer, and have the exact same size and performance.</p>
http://stackoverflow.com/questions/1019707/sandboxing-in-linux/1020010#10200101Answer by CesarB for Sandboxing in LinuxCesarB2009-06-19T21:01:57Z2009-06-19T21:01:57Z<p>On <a href="http://fedoraproject.org/" rel="nofollow">Fedora 11</a>, there is the <a href="http://danwalsh.livejournal.com/28545.html" rel="nofollow">SELinux Sandbox</a> which seems to do exactly what you want (except perhaps limiting spawning new processes; the linked blog post does not mention that).</p>
<p>Of course, there is always the risk of kernel bugs; even with SELinux, parts of the kernel are still exposed to all processes.</p>
http://stackoverflow.com/questions/1010724/what-parts-of-linux-kernel-can-i-read-for-fun/1016109#10161095Answer by CesarB for What parts of Linux kernel can I read for fun?CesarB2009-06-19T02:31:48Z2009-06-19T02:31:48Z<p>I would recommend looking at <a href="http://lxr.linux.no/linux" rel="nofollow">LXR</a>. It makes it easier to follow the flow of the code (you do not have to search for each function that is called — well, you have, but the site does it for you).</p>
<p>Some starting points, for the current version (2.6.30):</p>
<ul>
<li><a href="http://lxr.linux.no/linux+v2.6.30/init/main.c#L536" rel="nofollow"><code>start_kernel()</code></a> — think of it as the kernel equivalent of <code>main()</code>. This function initializes almost all the kernel subsystems; follow it to see in code what you see scrolling on the screen during the boot.</li>
<li><a href="http://lxr.linux.no/linux+v2.6.30/arch/x86/kernel/entry_32.S" rel="nofollow">entry_32.S</a> — system calls and interrupts (x86-32 version, which should be nearer what you know; note the use of the AT&T assembly dialect instead of the Intel dialect you might be more used to).</li>
<li><a href="http://lxr.linux.no/linux+v2.6.30/arch/x86/kernel/head_32.S" rel="nofollow">head_32.S</a> — the kernel entry point. This is where the kernel starts after switching to protected mode; in the end, it will call <code>start_kernel()</code>.</li>
<li><a href="http://lxr.linux.no/linux+v2.6.30/arch/x86/boot/" rel="nofollow">arch/x86/boot</a> — the real-mode bootstrap code. It starts in assembly (<a href="http://lxr.linux.no/linux+v2.6.30/arch/x86/boot/header.S" rel="nofollow">boot/header.S</a>), but quickly jumps into C code (starting at <a href="http://lxr.linux.no/linux+v2.6.30/arch/x86/boot/main.c" rel="nofollow">boot/main.c</a>). Does the real-mode initialization (mostly BIOS calls which have to be done before switching to protected mode); it is compiled using a weird GCC trick (<code>.code16gcc</code>), which allows the generation of 32-bit real-mode code.</li>
<li><a href="http://lxr.linux.no/linux+v2.6.30/arch/x86/boot/compressed/" rel="nofollow">arch/x86/boot/compressed</a> — if you ever wondered where does the "Decompressing Linux..." message comes from, it is from here.</li>
</ul>
http://stackoverflow.com/questions/1015927/is-there-much-of-an-anti-cookie-movement-anymore/1015983#10159830Answer by CesarB for Is there much of an anti-cookie movement anymore?CesarB2009-06-19T01:23:13Z2009-06-19T01:23:13Z<p>Nowadays, there are other ways to block these annoyances. <a href="http://easylist.adblockplus.org/" rel="nofollow">Rick752's EasyList</a> has the EasyPrivacy list, which blocks most of them with no work at all other than adding the subscription once to <a href="http://adblockplus.org/" rel="nofollow">Adblock Plus</a>. <a href="http://noscript.net/" rel="nofollow">NoScript</a> can (with a little configuration, mostly removing some misguided entries on the default whitelist) easily block the ones which depend on JavaScript.</p>
<p>That said, I set up my browser to empty all the cookies on logout. Then they can track you only for the duration of a session, which will be short unless you tend to keep your browser open for a long time (or use the session save/restore all the time).</p>
<p>If you use Flash, know that it also has a kind of cookies, and the interface to manage them is most probably poorer than your browser's.</p>
http://stackoverflow.com/questions/997425/how-are-sbrk-brk-implemented-in-linux/1003882#10038821Answer by CesarB for How are sbrk/brk implemented in Linux?CesarB2009-06-16T20:52:22Z2009-06-16T20:52:22Z<p>In a very high level view, the Linux kernel tracks the memory visible to a process as several "memory areas" (<code>struct vm_area_struct</code>). There is also a structure which represents (again in a very high level view) a process' whole address space (<code>struct mm_struct</code>). Each process (except some kernel threads) has exactly one <code>struct mm_struct</code>, which in turn points to all the <code>struct vm_area_struct</code> for the memory it can accesss.</p>
<p>The <code>sys_brk</code> system call (found in <code>mm/mmap.c</code>) simply adjusts some of these memory areas. (<code>sbrk</code> is a glibc wrapper around <code>brk</code>). It does so by comparing the old value of the <code>brk</code> address (found inside <code>struct mm_struct</code>) and the requested value.</p>
<p>It would be simpler to look at the <code>mmap</code> family of functions first, since <code>brk</code> is a special case of it.</p>
http://stackoverflow.com/questions/1003264/is-there-any-msdn-equivalent-for-mac-os-and-linux/1003433#10034331Answer by CesarB for Is there any MSDN equivalent for Mac OS and Linux?CesarB2009-06-16T19:13:34Z2009-06-16T19:13:34Z<p><a href="http://www.kernel.org/doc/man-pages/" rel="nofollow">The Linux man-pages project</a> is a useful reference for the system APIs. However, a lot of the time you will be using higher-level libraries; each one has its own documentation.</p>
http://stackoverflow.com/questions/274885/what-to-do-when-a-stackoverflow-user-deletes-all-his-questions-and-answers9What to do when a stackoverflow user deletes all his questions and answers? [closed]CesarB2008-11-08T16:19:19Z2009-06-15T17:38:20Z
<p>A stackoverflow user seems to have deleted all his questions and answers. He had more than 100 answers to other people's questions, and some of his answers had more than 10 upvotes.</p>
<p>I already recovered one of his answers (which had according to Google cache 14 upvotes and was the accepted answer; another answer was even mentioning his answer, so I posted the small recovered answer as a comment to that one), but what should be done to the rest?</p>
<ul>
<li>Undelete them (I believe only moderators can do so)?</li>
<li>Quickly recover the answers from Google cache and repost them?</li>
<li>Do nothing?</li>
<li>Something else?</li>
</ul>
<p>Edit: Also, if the answer is to recover the answers, what is the best way to do so?</p>
<ul>
<li>Comments to another answer which was referencing that one (only possible for small answers)?</li>
<li>Comments to the question (also only possible for small answers)?</li>
<li>A community wiki answer?</li>
<li>Something else?</li>
</ul>
http://stackoverflow.com/questions/689327/is-it-possible-to-compile-linux-kernel-with-something-other-than-gcc/994073#9940731Answer by CesarB for Is it possible to compile Linux kernel with something other than gccCesarB2009-06-15T00:00:19Z2009-06-15T00:00:19Z<p>The <a href="http://llvm.org/" rel="nofollow">LLVM</a> developers are trying to compile it with <a href="http://clang.llvm.org/" rel="nofollow">clang</a>. The <a href="http://llvm.org/bugs/show_bug.cgi?id=4068" rel="nofollow">meta-bug on compiling the Linux kernel with clang</a> has more details (the <a href="http://llvm.org/bugs/showdependencytree.cgi?id=4068&hide_resolved=1" rel="nofollow">dependency tree for that meta-bug</a> shows how little seems to be left).</p>
http://stackoverflow.com/questions/261419/arm-to-c-calling-convention-registers-to-save/261496#2614967Answer by CesarB for ARM to C calling convention, registers to saveCesarB2008-11-04T10:46:02Z2009-04-29T06:15:40Z<p>It depends on the <a href="http://en.wikipedia.org/wiki/Application_binary_interface" rel="nofollow">ABI</a> for the platform you are compiling for. On Linux, there are two ARM ABIs; the old one and the new one. AFAIK, the new one (EABI) is in fact ARM's AAPCS. I have a bookmark pointing to <a href="http://www.arm.com/pdfs/bsabi.zip" rel="nofollow">http://www.arm.com/pdfs/bsabi.zip</a> as a place to get the ARM ABI specification, but that link seems to be stale.</p>
<p>Briefly:</p>
<ul>
<li>r0-r3 are the argument and scratch registers; r0-r1 are also the result registers</li>
<li>r4-r8 are callee-save registers</li>
<li>r9 might be a callee-save register or not (on some variants of AAPCS it is a special register)</li>
<li>r10-r11 are callee-save registers</li>
<li>r12-r15 are special registers</li>
</ul>
<p>A callee-save register must be saved by the callee (in opposition to a caller-save register, where the caller saves the register); so, <em>if</em> this is the ABI you are using, you do not have to save r10 before calling another function (the other function is responsible for saving it).</p>
<p><strong>Edit:</strong> Which compiler you are using makes no difference; gcc in particular can be configured for several different ABIs, and it can even be changed on the command line. Looking at the prologue/epilogue code it generates is not that useful, since it is tailored for each function <em>and</em> the compiler can use other ways of saving a register (for instance, saving it in the middle of a function).</p>
http://stackoverflow.com/questions/328490/monitoring-a-displays-state-in-python/328947#3289474Answer by CesarB for Monitoring a displays state in python?CesarB2008-11-30T15:21:13Z2009-02-01T08:36:35Z<p>It seems that, when Windows wants to start the screen saver or turn the monitor off, it will send a <code>WM_SYSCOMMAND</code> to the topmost window with a <code>wParam</code> of <code>SC_SCREENSAVE</code> (to start the screen saver) or a <code>wParam</code> of <code>SC_MONITORPOWER</code> and a <code>lParam</code> of 1 or 2 (to turn the monitor off). This message will then be passed to <code>DefWindowProc</code>, which will actually do the action. So, if your window happens to be the topmost one, you can intercept these events and ignore them (or do anything else you want before passing them to <code>DefWindowProc</code>).</p>
<p>On Windows Vista, there seems to be a more intuitive, and more reliable, way to know the monitor power state. You call <code>RegisterPowerSettingNotification</code> to tell the system to send your window a <code>WM_POWERBROADCAST</code> message with a <code>wParam</code> of <code>PBT_POWERSETTINGCHANGE</code> and a <code>lParam</code> pointing to a <code>POWERBROADCAST_SETTING</code> structure.</p>
<p>I cannot test either of them since I currently do not have any computer with Windows nearby. I hope, however, they point you in the right direction.</p>
<p>References:</p>
<ul>
<li><a href="http://blogs.msdn.com/oldnewthing/archive/2006/06/13/629451.aspx" rel="nofollow">The Old New Thing : Fumbling around in the dark and stumbling across the wrong solution</a></li>
<li><a href="http://groups.google.com/group/borland.public.delphi.nativeapi.win32/browse_thread/thread/81afbb4aff7503d4" rel="nofollow">Recursive hook ... - borland.public.delphi.nativeapi.win32 | Google Groups</a></li>
<li><a href="http://msdn.microsoft.com/en-us/library/aa373195(VS.85).aspx" rel="nofollow">Registering for Power Events (Windows)</a></li>
</ul>
http://stackoverflow.com/questions/276512/what-is-the-full-for-loop-syntax-in-c-and-others-in-case-they-are-compatible/276519#27651957Answer by CesarB for What is the full "for" loop syntax in C (and others in case they are compatible) ?CesarB2008-11-09T21:47:03Z2008-12-03T23:08:34Z<p>The comma is not exclusive of for loops; it is the comma operator.</p>
<pre><code>x = (a, b);
</code></pre>
<p>will do first a, then b, then set x to the value of b.</p>
<p>The for syntax is:</p>
<pre><code>for (init; condition; increment)
...
</code></pre>
<p>Which is somewhat (ignoring <code>continue</code> and <code>break</code> for now) equivalent to:</p>
<pre><code>init;
while (condition) {
...
increment;
}
</code></pre>
<p>So your for loop example is (again ignoring <code>continue</code> and <code>break</code>) equivalent to</p>
<pre><code>p=0;
while (p+=(a&1)*b,a!=1) {
...
a>>=1,b<<=1;
}
</code></pre>
<p>Which acts as if it were (again ignoring <code>continue</code> and <code>break</code>):</p>
<pre><code>p=0;
p+=(a&1)*b;
while (a!=1) {
...
a>>=1;
b<<=1;
p+=(a&1)*b;
}
</code></pre>
<p>Two extra details of the for loop which were not in the simplified conversion to a while loop above:</p>
<ul>
<li>If the condition is omitted, it is always <code>true</code> (resulting in an infinite loop unless a <code>break</code>, <code>goto</code>, or something else breaks the loop).</li>
<li>A <code>continue</code> acts as if it were a goto to a label just before the increment, unlike a <code>continue</code> in the while loop which would skip the increment.</li>
</ul>
<p>Also, an important detail about the comma operator: it is a sequence point, like <code>&&</code> and <code>||</code> (which is why I can split it in separate statements and keep its meaning intact).</p>
http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/238378#238378Comment by CesarB on Worst UI You've Ever UsedCesarB2009-11-24T13:03:32Z2009-11-24T13:03:32ZThe "pro mode" screen seems to be quite simple in comparison: <a href="http://www.jensroesner.de/wgetgui/data/wgetguipromode.jpg" rel="nofollow">jensroesner.de/wgetgui/data/…</a>http://stackoverflow.com/questions/700655/flow-controlling-macros-with-goto/780202#780202Comment by CesarB on Flow controlling macros with 'goto'CesarB2009-11-24T13:00:06Z2009-11-24T13:00:06ZFrom the pulseaudio maintainer: "On modern systems it has become pretty clear that for normal userspace software only an aborting malloc() makes sense [...]" <a href="http://article.gmane.org/gmane.comp.audio.jackit/19998" rel="nofollow">article.gmane.org/gmane.comp.audio.jackit/19998/…</a>http://stackoverflow.com/questions/230989/what-is-caps-lock-good-for/231024#231024Comment by CesarB on What is Caps Lock good for?CesarB2009-11-13T13:32:17Z2009-11-13T13:32:17ZEVEN WITH CRUISE CONTROL YOU STILL HAVE TO STEERhttp://stackoverflow.com/questions/1259163/to-find-a-git-repo-by-its-id/1259164#1259164Comment by CesarB on To find a Git Repo by its IDCesarB2009-08-10T18:28:37Z2009-08-10T18:28:37ZThis is wrong. It is not <random two letters>/<sha1>; it is <first two letters of the sha1>/<the rest of the sha1>. Also, older objects will probably be packed, in files (in .git/objects/pack) which have thousands of objects each.http://stackoverflow.com/questions/1215432/merge-sort-in-haskell/1215457#1215457Comment by CesarB on Merge sort in HaskellCesarB2009-08-01T13:04:10Z2009-08-01T13:04:10Z@alexey_r: I meant arrays for replacing [String], not for replacing String aka [Char] itself. Replacing String is a separate optimization.http://stackoverflow.com/questions/1193868/is-recursion-that-important-in-any-programing-language-why/1193879#1193879Comment by CesarB on Is recursion that important in any programing language? Why?CesarB2009-07-28T13:51:47Z2009-07-28T13:51:47Z@Mitch: any use of recursion can be replaced by a stack, that is what the compiler for imperative languages usually does!http://stackoverflow.com/questions/621707/can-a-single-setevent-trigger-multiple-waitforsingleobject/621764#621764Comment by CesarB on Can a single SetEvent() trigger multiple WaitForSingleObject() CesarB2009-07-23T02:33:38Z2009-07-23T02:33:38ZDo not use PulseEvent, see <a href="http://blogs.msdn.com/oldnewthing/archive/2005/01/05/346888.aspx" rel="nofollow">blogs.msdn.com/oldnewthing/archive/…</a>http://stackoverflow.com/questions/1158012/gcc-atomic-builtins-instead-of-pthread/1158039#1158039Comment by CesarB on GCC Atomic Builtins instead of pthread?CesarB2009-07-22T13:26:44Z2009-07-22T13:26:44ZThese builtins were defined by Intel, as the page mentions; I would expect they also work on other compilers.http://stackoverflow.com/questions/1140995/build-an-linux-executable-using-gcc/1141006#1141006Comment by CesarB on Build An Linux Executable Using GCCCesarB2009-07-17T00:58:09Z2009-07-17T00:58:09ZDoesn't gcc (in fact the linker it calls) already set the executable bit in its output file?http://stackoverflow.com/questions/372580/why-is-array-a-reserved-word-in-c-c/380623#380623Comment by CesarB on Why is "array" a reserved word in C/C++?CesarB2009-07-15T18:03:14Z2009-07-15T18:03:14ZCygwin is a Unix-like system. "link" is a global function declared in unistd.h, which iostream ended up including. This is what is confusing the compiler; it is probably using the definition of "link" as a function, instead of your definition as a struct. When compiling for Unix, you should avoid using names reserved for the POSIX headers; when compiling for Win32, you should avoid the names from the Win32 headers. Since you are using cygwin, you have to avoid both sets of names.http://stackoverflow.com/questions/88/is-gettimeofday-guaranteed-to-be-of-microsecond-resolution/367#367Comment by CesarB on Is gettimeofday() guaranteed to be of microsecond resolution?CesarB2009-07-07T23:03:19Z2009-07-07T23:03:19ZNote that the TSC might not always be synchronized between cores, might stop or change its frequency when the processor enters lower power modes (and you have no way of knowing it did so), and in general is not always reliable. The kernel is able to detect when it is reliable, detect other alternatives like HPET and ACPI PM timer, and automatically select the best one. It's a good idea to always use the kernel for timing unless you are really sure the TSC is stable and monotonic.http://stackoverflow.com/questions/1083959/purpose-of-struct-typedef-struct-in-c/1084204#1084204Comment by CesarB on Purpose of struct, typedef struct, in C++CesarB2009-07-07T16:38:37Z2009-07-07T16:38:37ZAnother difference would be in name mangling of functions within these structs or receiving them or pointers to them as parameters.http://stackoverflow.com/questions/1071953/most-wanted-database-feature/1072051#1072051Comment by CesarB on Most wanted database feature?CesarB2009-07-02T01:50:54Z2009-07-02T01:50:54ZAlready exists on PostgreSQL: <a href="http://www.postgresql.org/docs/8.4/interactive/indexes-partial.html" rel="nofollow">postgresql.org/docs/8.4/…</a>http://stackoverflow.com/questions/1067346/alternatives-to-dlsym-and-dlopen-in-c/1067684#1067684Comment by CesarB on Alternatives to dlsym() and dlopen() in C++CesarB2009-07-01T14:41:54Z2009-07-01T14:41:54ZInstead of getting a pointer to a table, you could instead get a pointer to a function which when called returns the pointer to the table. This allows the plugin to initialize itself before any other function is called, and even create the table dynamically.http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/219874#219874Comment by CesarB on What was the strangest coding standard rule that you were forced to follow?CesarB2009-06-29T19:21:58Z2009-06-29T19:21:58ZSomewhat related questions (both mine): <a href="http://stackoverflow.com/questions/224138/infinite-loops-top-or-bottom" rel="nofollow" title="infinite loops top or bottom">stackoverflow.com/questions/224138/…</a> and <a href="http://stackoverflow.com/questions/224421/constant-value-in-conditional-expression" rel="nofollow" title="constant value in conditional expression">stackoverflow.com/questions/224421/…</a>