User zvrba - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T22:00:59Zhttp://stackoverflow.com/feeds/user/2583http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/119414/how-would-you-unittest-a-memory-allocator5How would you unittest a memory allocator?zvrba2008-09-23T06:36:32Z2009-11-24T12:55:00Z
<p>There's a lot of people today who sell unittesting as bread-and-butter of development. That might even work for strongly algorithmically-oriented routines. However, how would you unit-test, for example, a memory allocator (think malloc()/realloc()/free()). It's not hard to produce a working (but absolutely useless) memory allocator that satisfies the specified interface. But how to provide the proper context for unit-testing functionality that is absolutely desired, yet not part of the contract: coalescing free blocks, reusing free blocks on next allocations, returning excess free memory to the system, asserting that the allocation policy (e.g. first-fit) really is respected, etc.</p>
<p>My experience is that assertions, even if complex and time-consuming (e.g. traversing the whole free list to check invariants) are much less work and are more reliable than unit-testing, esp. when coding complex, time-dependent algorithms.</p>
<p>Any thoughts?</p>
http://stackoverflow.com/questions/1742370/how-to-create-a-symbol-table-in-c-without-hashing/1742411#17424110Answer by zvrba for How to create a symbol table in C without hashing?zvrba2009-11-16T14:13:25Z2009-11-16T14:13:25Z<p>Yes, linked list is one of the simplest ways of implementing a symbol table.</p>
http://stackoverflow.com/questions/1723361/is-user-sys-time-equal-to-real-wall-clock-time/1723431#17234319Answer by zvrba for Is user + sys time equal to real/wall clock time?zvrba2009-11-12T16:17:08Z2009-11-12T20:00:59Z<p>No, it is not. User and system time account only for used CPU time. While the program is asleep, real time still passes, but the user and system time stand still. Also, on multi-CPU systems, it may well happen that user+system is <em>greater</em> than real time.</p>
http://stackoverflow.com/questions/1322018/bit-manipulation-library-for-ansi-c/1322202#13222021Answer by zvrba for Bit manipulation library for ANSI Czvrba2009-08-24T12:50:00Z2009-08-24T12:50:00Z<p>Maybe the <a href="http://www.jjj.de/fxt/" rel="nofollow">algorithms</a> from the "FXT" book (link at the bottom of the page) will be useful.</p>
http://stackoverflow.com/questions/1281859/unix-timestamp-to-mysql-datetime/1281880#12818801Answer by zvrba for UNIX Timestamp to MySQL DATETIMEzvrba2009-08-15T13:20:52Z2009-08-15T13:20:52Z<ol>
<li>use alter table to create a new column (eg. time2) with the datetime type in the same table</li>
<li>update stats set time2=from_unixtime(time);</li>
<li>use alter table to a) delete the time column, and b) rename the time2 to time.</li>
</ol>
http://stackoverflow.com/questions/1242400/how-to-use-make-to-use-64-bit-libs-because-of-elfclass64-error/1251945#12519450Answer by zvrba for How to use "make" to use 64 bit libs because of ELFCLASS64 errorzvrba2009-08-09T18:35:58Z2009-08-09T18:35:58Z<p>Maybe the runtime linker's library path is wrong. Does the directory /opt/lampp/lib64 exist? Is lampp a shell script? If so, to what value (and whether) does it set the LD_LIBRARY_PATH variable? </p>
http://stackoverflow.com/questions/1224097/apis-for-accessing-intel-txt-trusted-execution-mode-or-amd-svm0APIs for accessing Intel TXT (trusted execution mode) or AMD SVM ?zvrba2009-08-03T19:10:02Z2009-08-04T21:51:53Z
<p>Do any current operating systems (windows, linux, BSD) provide drivers that enable user-mode programs to execute partly in the trusted execution mode (isolated from everything else running on the computer)? If so, where can the documentation be found?</p>
http://stackoverflow.com/questions/1224021/what-should-every-web-developer-know-about-encryption/1224090#12240906Answer by zvrba for What should every web developer know about encryption?zvrba2009-08-03T19:07:22Z2009-08-03T19:07:22Z<p>Where to learn about security: get Schneier's book <a href="http://www.schneier.com/book-applied.html" rel="nofollow">Applied Cryptography</a>.</p>
http://stackoverflow.com/questions/1224042/c-returning-a-pointer-to-an-automatic-variable/1224074#12240742Answer by zvrba for C: Returning a pointer to an automatic variablezvrba2009-08-03T19:04:37Z2009-08-03T19:04:37Z<p>It will not cause memory leak, but it will cause undefined behavior. This case is particularly dangerous because the pointer will point somewhere in the program's stack, and if you use it, you will be accessing random data. Such pointer, when written through, can also be used to compromise program security and make it execute arbitrary code.</p>
http://stackoverflow.com/questions/1215949/cake-comparison-algorithm/1216115#12161152Answer by zvrba for Cake Comparison Algorithmzvrba2009-08-01T07:56:07Z2009-08-01T07:56:07Z<p>Perhaps reading about <a href="http://en.wikipedia.org/wiki/Voting%5Fsystem" rel="nofollow">voting systems</a> will be helpful. PS: don't take whatever is written on Wikipedia as "good fish". I have found factual errors in advanced topics there.</p>
http://stackoverflow.com/questions/127137/sample-code-for-r/127147#12714714Answer by zvrba for Sample Code for R?zvrba2008-09-24T13:33:48Z2009-07-23T18:50:32Z<p>Why not look at <a href="http://www.r-project.org" rel="nofollow">www.r-project.org</a> under documentation and read at least the introduction? The language is sufficiently different from what you're used to that just looking at code samples won't be enough for you to pick it up. (At least, not beyond basic calculator-like functionality.)</p>
<p>If you want to look a bit deeper, you might want to look at <a href="http://cran.r-project.org" rel="nofollow">CRAN</a>: an online collection of R modules with source code: <a href="http://cran.r-project.org" rel="nofollow">cran.r-project.org</a></p>
http://stackoverflow.com/questions/1148294/bigint-for-standard-ml-nj/1148355#11483554Answer by zvrba for BigInt for Standard ML/NJzvrba2009-07-18T19:24:52Z2009-07-18T19:24:52Z<p>Yes, see the <a href="http://www.standardml.org/Basis/int-inf.html#IntInf:STR:SPEC" rel="nofollow">IntInf</a> structure.</p>
http://stackoverflow.com/questions/1133408/continue-in-nested-while-loops/1133531#1133531-1Answer by zvrba for Continue in nested while loopszvrba2009-07-15T19:41:41Z2009-07-15T19:41:41Z<p>Use an own exception type, e.g., MyException. Then:</p>
<pre><code>while
{
try {
// outer loop
while
{
// inner loop
try
{
throw;
}
catch
{
// how do I continue on the outer loop from here?
throw MyException;
}
}
} catch(MyException)
{ ; }
}
</code></pre>
<p>This will work for continuing and breaking out of several levels of nested while statements.
Sorry for bad formatting ;)</p>
http://stackoverflow.com/questions/1087204/how-can-i-tell-if-a-file-is-open-elsewhere-in-c-on-linux/1087275#10872750Answer by zvrba for How can I tell if a file is open elsewhere in C on Linux?zvrba2009-07-06T14:26:48Z2009-07-06T14:26:48Z<p>If you are in control of both producer and consumer, you could use lockf() of flock() to lock the file.</p>
http://stackoverflow.com/questions/1084594/where-is-interlockedread/1084734#10847342Answer by zvrba for Where is InterlockedRead?zvrba2009-07-05T20:10:42Z2009-07-05T20:10:42Z<p>I think that your interpretation of "not synchronized" is wrong. Simple reads <em>are</em> atomic, but you have to take care of reordering and memory visibility issues yourself. The former is handled by using fence instructions at appropriate places, the latter is a non-issue with read (but a potential concurrent write has to ensure proper visibility, which Interlocked functions <em>should</em> do <em>if</em> they map to LOCKED asm instructions).</p>
http://stackoverflow.com/questions/1081519/why-does-c-use-pointers/1081605#10816055Answer by zvrba for Why does C++ use pointers?zvrba2009-07-04T05:49:15Z2009-07-04T05:49:15Z<p>You're mixing up pointer arithmetic with immutable pointers, AKA, <strong>references</strong>. All of these languages, including Java, which you didn't mention, do have references. References are slightly less powerful than pointers, but you won't notice this until you get to the stage where you need pointer arithmetic or double or triple pointers. But, under the hood, references <em>are</em> really the same thing as pointers, just that the language won't let you do whatever you want to them (i.e., they're not first-class objects). </p>
<p>Consider this python code:</p>
<pre><code>class X: z=13
y=X()
def f(aa): aa.z = aa.z+1
print(y.z)
f(y)
print(y.z)
</code></pre>
<p>f() changes the value of y.z, and this is exactly what would happen in the corresponding C or C++ code written with pointers.</p>
http://stackoverflow.com/questions/685761/emms-instuction-execution-time/1070601#10706010Answer by zvrba for EMMS instuction execution time? zvrba2009-07-01T18:19:35Z2009-07-01T18:19:35Z<p>You need a serializing instruction, such as CPUID, to ensure that RDTSC is not executed out of order. You can read more <a href="http://en.wikipedia.org/wiki/Time%5FStamp%5FCounter" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/1023306/finding-current-executables-path-without-proc-self-exe/1023358#10233580Answer by zvrba for Finding current executable's path without /proc/self/exezvrba2009-06-21T07:14:44Z2009-06-21T07:14:44Z<p>AFAIK, no such way. And there is also an ambuiguity: what would you like to get as the answer if the same executable has multiple hard-links "pointing" to it? (Hard-links don't actually "point", they <em>are</em> the same file, just at another place in the FS hierarchy.) Once execve() successfully executes a new binary, all information about its arguments is lost.</p>
http://stackoverflow.com/questions/902038/lua-vs-other-scripting-languages/902052#9020520Answer by zvrba for Lua vs. Other scripting languageszvrba2009-05-23T17:53:32Z2009-05-23T17:53:32Z<p>First and foremost: where did you see this claim about speed?</p>
<p>Anyway, a wild guess: a simpler and smaller language, with cleaner semantics and a small number of orthogonal mechanisms eliminates many special cases that a larger language, such as Python, must handle.</p>
http://stackoverflow.com/questions/891554/aix-xlc-implementation-of-stl-significantly-slower-than-other-platforms/891657#8916570Answer by zvrba for AIX xlC implementation of STL significantly slower than other platforms?zvrba2009-05-21T06:47:52Z2009-05-21T06:47:52Z<p>I suspect a suboptimal memory allocation strategy. What happens if you add</p>
<pre><code>vec.reserve(10000);
</code></pre>
<p>before the for-loop?</p>
http://stackoverflow.com/questions/879603/how-do-i-remove-an-element-of-an-array-and-shift-the-reamining-elements-down/879633#8796333Answer by zvrba for how do i remove an element of an array and shift the reamining elements downzvrba2009-05-18T20:28:49Z2009-05-18T20:28:49Z<p>You can't achieve what you want with arrays. Use vectors instead, and read about the std::remove algorithm. Something like:</p>
<pre><code>std::remove(array, array+5, 3)
</code></pre>
<p>will work on your array, but it will not shorten it (why -- because it's impossible). With vectors, it'd be something like</p>
<pre><code>v.erase(std::remove(v.begin(), v.end(), 3), v.end())
</code></pre>
http://stackoverflow.com/questions/869744/how-to-write-a-scalable-tcp-ip-based-server/873983#8739832Answer by zvrba for How to write a scalable Tcp/Ip based serverzvrba2009-05-17T05:56:15Z2009-05-17T05:56:15Z<p>You can find a nice overview of techniques at the <a href="http://www.kegel.com/c10k.html" rel="nofollow">C10k problem page</a>.</p>
http://stackoverflow.com/questions/871234/circular-lock-free-buffer/871773#8717733Answer by zvrba for Circular lock-free bufferzvrba2009-05-16T05:29:44Z2009-05-16T05:29:44Z<p>I would agree with <a href="http://queue.acm.org/detail.cfm?id=1454462" rel="nofollow">this article</a> and recommend against using lock-free data structures. A relatively recent paper on lock-free fifo queues is <a href="http://www.cs.chalmers.se/~tsigas/papers/latest-spaa01.ps.gz" rel="nofollow">this</a>, search for further papers by the same author(s); there's also a PhD thesis on Chalmers regarding lock-free data structures (I lost the link). However, you did not say how large your elements are -- lock-free data structures work efficiently only with word-sized items, so you'll have to dynamically allocate your elements if they're larger than a machine word (32 or 64 bits). If you dynamically allocate elements, you shift the (supposed, since you haven't profiled your program and you're basically doing premature optimization) bottleneck to memory allocator, so you need a lock-free memory allocator, e.g., <a href="http://people.cs.vt.edu/~scschnei/streamflow/" rel="nofollow">Streamflow</a>, and integrate it with your application. </p>
http://stackoverflow.com/questions/871388/why-are-ssl-certs-self-signed-if-they-have-no-real-signature/871750#8717500Answer by zvrba for Why are SSL certs self-signed if they have no real signature zvrba2009-05-16T05:16:09Z2009-05-16T05:16:09Z<p>Certificate contains the server's public key. Self-signature is a proof that whoever generated the certificate also posseses the private key.</p>
http://stackoverflow.com/questions/814823/how-do-i-refer-to-a-global-variable-in-a-dynamically-linked-library/814857#8148571Answer by zvrba for How do I refer to a global variable in a dynamically linked library?zvrba2009-05-02T13:18:31Z2009-05-02T13:18:31Z<p>Yes, I believe you have to go through GOT to address private data. See section 9.2 <a href="http://www.nasm.us/doc/" rel="nofollow">here</a>. Although NASM is x86 assembler, the general principles should be the same also on SPARC/Solaris.</p>
<p>Also, AT&T assemblers usually use '@got' syntax to specify relocation wrt. GOT. The exact details will be described in your assembler manual, i.e., the syntax details of NASM will not work with Solaris' assembler.</p>
http://stackoverflow.com/questions/814159/mips-syscall-eof-cant-read-the-entire-file/814182#8141820Answer by zvrba for Mips syscall + eof = can't read the entire file?zvrba2009-05-02T05:05:20Z2009-05-02T05:05:20Z<p>Try opening the file in binary mode.</p>
http://stackoverflow.com/questions/810923/where-is-java-going/811107#8111070Answer by zvrba for Where is Java going?zvrba2009-05-01T12:01:14Z2009-05-01T12:01:14Z<p>Java was never "innovative". It began as a crippled, "programmer-friendly" version of C++, and then started to slowly reintroduce missing features which have been existing in other programming languages for a looong time. Only that those decades-old "novelties" were mangled in order to make them fit into the limitations of the JVM.</p>
<p>But maybe I misunderstand your notion of "innovative".</p>
http://stackoverflow.com/questions/790537/question-about-lgpl-gpl-licensing/790550#7905500Answer by zvrba for Question about LGPL/GPL licensingzvrba2009-04-26T09:31:07Z2009-04-26T09:31:07Z<p>I am not a lawyer, but.. as long as you do not distribute the program (making it available for use as web app is not distribution), you do not have to release the source for anything.</p>
http://stackoverflow.com/questions/789085/expressing-an-integer-as-a-series-of-multipliers/789104#7891040Answer by zvrba for Expressing an integer as a series of multiplierszvrba2009-04-25T15:16:02Z2009-04-25T15:16:02Z<p>Just set x:=x/n where n is the <em>largest</em> number that is less both than x and y. When you end up with x<=y, this is your last number in the sequence.</p>
http://stackoverflow.com/questions/403687/switching-ok-cancel-and-cancel-ok-to-enforce-user-interaction/765958#7659580Answer by zvrba for Switching OK-Cancel and Cancel-OK to enforce user interaction?zvrba2009-04-19T19:45:58Z2009-04-19T19:45:58Z<p>Why not reformulate the UI to make the OK the "safe choice"?</p>
http://stackoverflow.com/questions/1321467/which-programming-technique-helps-you-most-to-avoid-or-resolve-bugs-before-they-c/1321479#1321479Comment by zvrba on Which programming technique helps you most to avoid or resolve bugs before they come into productionzvrba2009-08-24T14:09:28Z2009-08-24T14:09:28ZYes, asserts are a life-saver when used properly.http://stackoverflow.com/questions/1251791/what-are-the-limits-of-type-checking-and-type-systems/1251840#1251840Comment by zvrba on What are the limits of type checking and type systems?zvrba2009-08-09T17:53:19Z2009-08-09T17:53:19ZThat's not a problem at all. Haskell is a statically, strongly-typechecked language and it is possible to make a function composition operator. See, for example, definition of the dot (.) operator on this page:
<a href="http://www.uni-bonn.de/~manfear/haskell-functions.php" rel="nofollow">uni-bonn.de/~manfear/haskell-functions.php/…</a>http://stackoverflow.com/questions/1215949/cake-comparison-algorithm/1216115#1216115Comment by zvrba on Cake Comparison Algorithmzvrba2009-08-01T16:25:40Z2009-08-01T16:25:40ZIt's a Norwegian idiom... I googled a bit and it doesn't appear to be an English idiom :/ You got the point anyway :)http://stackoverflow.com/questions/1133408/continue-in-nested-while-loops/1133425#1133425Comment by zvrba on Continue in nested while loopszvrba2009-07-15T19:34:53Z2009-07-15T19:34:53ZThis is problematic because the separate metod will not have access to existing local variables.http://stackoverflow.com/questions/135637/what-are-some-interesting-small-linux-kernel-projects-to-help-learn-the-source/135711#135711Comment by zvrba on What are some interesting, small Linux kernel projects to help learn the source?zvrba2009-07-08T13:50:57Z2009-07-08T13:50:57ZIs this good enough citation:
<a href="http://www.linuxtoday.com/news_story.php3?ltsn=2000-09-07-002-21-OS-CY-KN" rel="nofollow">linuxtoday.com/news_story.php3?ltsn=2000-09-07-00…</a>http://stackoverflow.com/questions/1084594/where-is-interlockedread/1084734#1084734Comment by zvrba on Where is InterlockedRead?zvrba2009-07-07T14:12:33Z2009-07-07T14:12:33ZThe thread starting with this post may also be insightful:
<a href="http://newsgroups.derkeiler.com/Archive/Comp/comp.programming.threads/2006-03/msg00003.html" rel="nofollow">newsgroups.derkeiler.com/Archive/Comp/…</a>http://stackoverflow.com/questions/1084594/where-is-interlockedread/1084734#1084734Comment by zvrba on Where is InterlockedRead?zvrba2009-07-07T14:09:52Z2009-07-07T14:09:52ZAFAIK, bus transactions can be larger than 32 bits even on 32-bit x86. You could use 64-bit floating-point or MMX loads to read a 64-bit value atomically if the value is aligned to 64-bits. (from assembly. it's probably not possible within CLR due to many ugly casts that would be involved.)http://stackoverflow.com/questions/1087204/how-can-i-tell-if-a-file-is-open-elsewhere-in-c-on-linux/1087234#1087234Comment by zvrba on How can I tell if a file is open elsewhere in C on Linux?zvrba2009-07-06T14:25:13Z2009-07-06T14:25:13ZYes, he can also use inotify to detect that a file has been closed.http://stackoverflow.com/questions/1087204/how-can-i-tell-if-a-file-is-open-elsewhere-in-c-on-linux/1087232#1087232Comment by zvrba on How can I tell if a file is open elsewhere in C on Linux?zvrba2009-07-06T14:20:50Z2009-07-06T14:20:50ZThis will not work, he needs to find out whether <i>another</i> program has a file open.http://stackoverflow.com/questions/1084594/where-is-interlockedread/1084734#1084734Comment by zvrba on Where is InterlockedRead?zvrba2009-07-06T14:17:52Z2009-07-06T14:17:52ZThis is an answer -- interlocked read (whatever that might be) is not necessary. http://stackoverflow.com/questions/245742/examples-of-good-gotos-in-c-or-c/246027#246027Comment by zvrba on Examples of good gotos in C or C++zvrba2009-06-29T17:08:29Z2009-06-29T17:08:29ZWhich assumptions? His examples are as real today for a procedural language as C (he gives them in some pseudo-code) as they were at that time.http://stackoverflow.com/questions/132241/hidden-features-of-c/132509#132509Comment by zvrba on Hidden features of Czvrba2009-06-12T18:52:55Z2009-06-12T18:52:55ZI said that the standard should have provided <i>library</i> support for checking for arithmetic overflow. Now, how can a library routine incur a performance hit if you never use it?http://stackoverflow.com/questions/971802/how-can-i-put-a-pointer-on-the-pipe/971818#971818Comment by zvrba on How can I put a pointer on the pipe?zvrba2009-06-09T21:04:41Z2009-06-09T21:04:41ZPassing a pointer to shared memory won't work because the shared memory segment is not necessarily mapped at the same base address in both processes.http://stackoverflow.com/questions/962007/what-one-feature-would-you-cut-from-your-favorite-language/962380#962380Comment by zvrba on What one feature would you cut from your favorite language?zvrba2009-06-07T18:09:32Z2009-06-07T18:09:32ZFallthrough is not nonsense; I've found it quite handy in some situations.http://stackoverflow.com/questions/932519/opening-a-file-on-unix-using-c/932571#932571Comment by zvrba on Opening a file on unix using c++zvrba2009-05-31T18:51:45Z2009-05-31T18:51:45Z+1, I didn't know about wordexp.