User Zan Lynx - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T20:42:39Zhttp://stackoverflow.com/feeds/user/13422http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1844036/linking-loadable-plugins-against-symbols-in-the-executable-on-linux-and-windows/1844108#18441080Answer by Zan Lynx for Linking loadable plugins against symbols in the executable on Linux and WindowsZan Lynx2009-12-04T00:33:38Z2009-12-04T00:33:38Z<p>A plugin model I often see is to call an initialization function in the plugin, passing it a structure or class that contains function pointers in the host executable.</p>
http://stackoverflow.com/questions/1824190/how-to-partition-the-2d-arrays-among-the-processes-for-the-game-of-life/1824369#18243690Answer by Zan Lynx for how to partition the 2d arrays among the processes for "The Game of Life"Zan Lynx2009-12-01T06:31:25Z2009-12-01T06:31:25Z<p>However you do it, don't forget to make your partitions bigger on each side with some overlap.</p>
<p>This will mean duplicating some data, but it also means each partition can compute independently. At the end of each tick your partitions can copy their overlap to their neighbors.</p>
http://stackoverflow.com/questions/1811447/populating-int-array-that-is-a-member-variable/1811506#18115063Answer by Zan Lynx for populating int array that is a member variableZan Lynx2009-11-28T03:58:52Z2009-11-28T21:14:52Z<p>You should be able to do something like this:</p>
<pre><code>class Map
{
int mapArray[15][20];
public:
Map() : mapArray( (int[15][20]) {
{ 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 },
{ 20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39 },
{ 40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59 },
{ 60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79 },
{ 80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99 },
{ 100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119 },
{ 120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139 },
{ 140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159 },
{ 160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179 },
{ 180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199 },
{ 200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219 },
{ 220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239 },
{ 240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259 },
{ 260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279 },
{ 280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299 }
} )
{
}
};
</code></pre>
<p>Note that this initialization style is part of C99 and may not be included with your compiler or may not work for C++. Works on GCC 4 for me.</p>
<p>Also note that I did not compile this code. I adapted it for your case from some other code of mine that does work though.</p>
http://stackoverflow.com/questions/1811456/calling-a-function-from-a-string-with-the-functions-name-in-c/1811480#18114805Answer by Zan Lynx for Calling a Function From a String With the Function’s Name in C++Zan Lynx2009-11-28T03:43:38Z2009-11-28T03:43:38Z<p>Create a std::map made of strings and function pointers. Create the map with all of the functions that you will want to call.</p>
<p>There are other ways to do it, involving symbol tables and dynamic loaders but those ways are not portable or friendly.</p>
http://stackoverflow.com/questions/1805862/socket-available-data-for-read/1806256#18062560Answer by Zan Lynx for Socket available data for readZan Lynx2009-11-27T00:22:24Z2009-11-27T00:22:24Z<p>You need to use completion ports on Windows. There are many online articles on how to use them.</p>
http://stackoverflow.com/questions/1787474/improving-the-performance-of-c-code/1787554#17875541Answer by Zan Lynx for Improving the performance of C code...Zan Lynx2009-11-24T03:14:03Z2009-11-24T03:14:03Z<p>There is nothing unorthodox left to do for C code performance. All of the <em>effective</em> techniques have been "orthodoxed".</p>
<p>The best I've found is to use a profiler with access to CPU performance counters and pay special attention to cache and branch misses. Add cache prefetches wherever you can and remove unpredictable branches wherever you can.</p>
<p>Don't bother with loop unrolling. If the branch is predictable it is almost free. Let the compiler worry about it.</p>
<p>On some very parallel architectures like IA64 it can be faster to unroll a loop all the way to the end. One example of this is avoiding the C string functions. Use memset to zero a string array, memcpy to set the string and memcmp to compare the entire array against another similar array. This can use 64-bit loads, never has to check for the zero terminator and can be optimized to not loop or branch at all if using a "small" array size of 64 or 128. The memxxx() functions are usually compiler built-ins and <em>very</em> optimized.</p>
http://stackoverflow.com/questions/1787079/do-you-actually-remember-all-of-the-different-ways-to-progam-via-many-apis/1787256#17872561Answer by Zan Lynx for Do you actually remember all of the different ways to progam via many API'sZan Lynx2009-11-24T01:34:29Z2009-11-24T01:34:29Z<p>I know that it is hard to remember all of the details. </p>
<p>This is why when I give a technical interview and I want to ask some specific programming questions, I give the candidate my laptop and ask him to write a small program that requires him to use a few tricky bits of the language (like a C++ template or a Perl list of hash references). I tell him that he can look up anything in the IDE help or on the web or even ask for a reference book. </p>
<p>I just want to see if he really can write Perl or PHP or C++ or if he is just good at talking.</p>
<p>Something that may have happened in an interview is miscommunication between who talked to the candidate and whoever talked to the interviewer. I've had to skip the Perl questions because the candidate didn't know it. He was good at C though. He just said he'd never done any Perl and that was okay with me. It's easy enough to learn. It did make my part of the interview shorter because I wasn't told he didn't know Perl.</p>
<p>But if you've got a language on your résumé then I think it's reasonable to expect you can turn out some code in 10 or 15 minutes if you've got access to references.</p>
http://stackoverflow.com/questions/1787174/how-does-c-handle-multiple-source-files/1787202#17872020Answer by Zan Lynx for How does C++ handle multiple source files?Zan Lynx2009-11-24T01:13:37Z2009-11-24T01:13:37Z<p>#include with angle brackets looks in the system include directories. Like this:<br>
<code>#include <iostream></code></p>
<p>With double quotes it looks in the current directory and other directories given to the compiler to search.<br>
<code>#include "foo.h"<br>
g++ -I../include foo.cpp</code></p>
http://stackoverflow.com/questions/1776912/make-part-of-a-c-lib-private/1776925#17769250Answer by Zan Lynx for Make part of a C lib "private"Zan Lynx2009-11-21T21:59:24Z2009-11-21T21:59:24Z<p>Yes you should worry about symbol visibility. On Windows, set up to use DLLEXPORT. On Linux, define DLLEXPORT to set default symbol visibility, but compile everything with -fvisibility=hidden. There's an Ulrich Drepper article on it that is useful.</p>
<p>For the include files, you can separate them into directories and/or you can use your packaging system to just copy the public files.</p>
http://stackoverflow.com/questions/1764423/prevent-undock-computer-in-windows/1767610#17676100Answer by Zan Lynx for Prevent undock computer in WindowsZan Lynx2009-11-20T00:33:38Z2009-11-20T00:33:38Z<p>I couldn't say for certain, but I believe I read that Microsoft changed some things regarding sleep, hibernate, and maybe this undock although I didn't read about undock.</p>
<p>The change I recall reading about was that applications can no longer stop a laptop from sleeping. They get notified and about 1 second to do something, that is it.</p>
<p>Double check all of the above with MS documentation if you can find it.</p>
http://stackoverflow.com/questions/1765790/should-i-read-file-in-separate-thread-in-this-case/1766202#17662021Answer by Zan Lynx for Should I read file in separate thread in this case ?Zan Lynx2009-11-19T20:13:35Z2009-11-19T20:13:35Z<p>I recommend not using another thread. Instead use posix_fadvise() to tell Linux to read more of your file in advance. The kernel can be reading the file via DMA while your program is processing data.</p>
<p>This assumes that the kernel has enough free memory for data buffering. If your data processing is using all of the memory then the kernel will ignore posix_fadvise().</p>
<p>The exact call that you need would look something like this:</p>
<pre><code>while( 1 ) {
ret = read(fd, buffer, 2*1024);
if( ret < 0 ) abort();
if( ret == 0 ) break;
if( ret != 2*1024 ) abort();
pos += ret;
ret = posix_fadvise(fd, pos, 8*1024, POSIX_FADV_WILLNEED);
if( ret ) abort();
process(buffer);
}
</code></pre>
http://stackoverflow.com/questions/1746830/check-internet-connection-in-linux-using-mono/1753254#17532540Answer by Zan Lynx for check internet connection in linux using mono?Zan Lynx2009-11-18T02:32:39Z2009-11-18T02:32:39Z<p>No matter what you end up using, it won't be reliable.</p>
<p>I see it all the time with Windows Vista and 7 at home. I use a home network, so my computers are always "connected." However, they are not always connected to the Internet.</p>
<p>That said, I would recommend checking the network interfaces as Gonzalo said. It is your best bet. </p>
<p>I would not rely on NetworkManager being present. I hate that thing and turn it off whenever I can. It is huge, ungainly, has an ugly name, relies on junk like HAL and DBUS. Early versions permanently put me off because they didn't work unless you were logged in to a GUI. It also collected bug work-arounds for wifi that were completely ridiculous in an open-source operating system that should have just fixed the original bugs. That led to other wifi managers and the command-line not being able to work properly and people being told to use NetworkManager, only because no one ever bothered to <em>fix the actual bug!</em></p>
http://stackoverflow.com/questions/1729515/sql-table-size-and-query-performance/1729793#17297930Answer by Zan Lynx for SQL Table Size And Query PerformanceZan Lynx2009-11-13T15:09:49Z2009-11-13T15:09:49Z<p>I'm not sure about MS SQL Server but most databases seem to have a way to partition tables. That is, make a virtual table from many smaller tables and divide the data between them based on some simple rules.</p>
<p>This is very good for time based data like this. Divide the table on a time period like a day or an hour. Then once per time period add a new table partition and drop the oldest table partition. Much more efficient than doing a DELETE WHERE time< now - '1 hour', or whatever.</p>
<p>Or instead of dropping the oldest, archive it or just let it stick around taking up space. As long as your queries always specify the date range, the queries can use only the most appropriate sub-tables.</p>
http://stackoverflow.com/questions/1727208/fastest-method-for-running-a-binary-search-on-a-file-in-c/1727228#17272285Answer by Zan Lynx for Fastest method for running a binary search on a file in C?Zan Lynx2009-11-13T05:04:27Z2009-11-13T05:04:27Z<p>You cannot seek by line. It's pretty obvious once you think about it.</p>
<p>But you can do a sort-of binary search on a text file.</p>
<p>What you do is:</p>
<ul>
<li>Stat the file to get the length or seek to the end and get the position.</li>
<li>Memory map the file.<br>
(This is best, I think, but you can use lseek and read if you must.)</li>
<li>Seek to the middle of the file, minus your average line length. Just guess.</li>
<li>Scan forward for a newline, unless you are at position 0.</li>
<li>Read your line and compare.</li>
<li>Repeat for 1/4th or 3/4ths, 1/8th, 1/16th, etc.</li>
</ul>
http://stackoverflow.com/questions/1704165/is-there-a-way-to-improve-the-speed-or-efficiency-of-this-lookup-c-c/1708535#17085351Answer by Zan Lynx for Is there a way to improve the speed or efficiency of this lookup? (C/C++)Zan Lynx2009-11-10T14:53:13Z2009-11-10T14:53:13Z<p>If you could add two more symbols so that it is converting to base-64, your modulus and division operations would turn into a bit mask and shift. Much faster than a division.</p>
http://stackoverflow.com/questions/1573732/using-dlopen-how-can-i-cope-with-changes-to-the-library-file-i-have-loaded/1704777#17047771Answer by Zan Lynx for Using dlopen, how can I cope with changes to the library file I have loaded?Zan Lynx2009-11-10T00:00:21Z2009-11-10T00:00:21Z<p>It is not possible to defend against someone overwriting your library if they have file write permission.</p>
<p>Because <code>dlopen</code> memory maps the library file, all changes to the file are visible in every process that has it open.</p>
<p>The <code>dlopen</code> function uses memory mapping because it is the most memory efficient way to use shared libraries. A private copy would waste memory.</p>
<p>As others have said, the proper way to replace a shared library in a Unix is to use unlink or rename, <strong>not</strong> to overwrite the library with a new copy. The <code>install</code> command will do this properly.</p>
http://stackoverflow.com/questions/1674150/null-definition-problem-on-64-bit-system/1674351#16743511Answer by Zan Lynx for NULL definition problem on 64 bit systemZan Lynx2009-11-04T15:01:23Z2009-11-05T03:37:15Z<p>You may not be able to fix the includes because system includes are a twisty maze.</p>
<p>You might fix the problem by using (void*)0 or (char*)0 instead of NULL.</p>
<p>After considering it I am rejecting my previous idea of redefining NULL. That would be a bad thing to do and could mess up a lot of other code.</p>
http://stackoverflow.com/questions/1677724/pointers-in-c-programming/1677745#16777452Answer by Zan Lynx for pointers in C programmingZan Lynx2009-11-05T01:17:55Z2009-11-05T01:17:55Z<p>You are using a char size pointer to write into an int size memory space. The only reason it ever gets set to -1 is because of luck. -1 happens to be 0xff for a char and 0xffffffff for a int so after writing four 0xff you get one int sized -1.</p>
http://stackoverflow.com/questions/1662342/how-does-a-syscall-get-located-in-linux/1664983#16649832Answer by Zan Lynx for How does a syscall get located in Linux?Zan Lynx2009-11-03T03:02:43Z2009-11-03T03:02:43Z<p>The C library provides functions which happen to look like system calls. What actually happens is that the C library function is called and then it makes the system call.</p>
<p>If you add a new system call, then to make it easily usable you would need to add it to the C library and recompile that too.</p>
<p>Or you can use the syscall function and macros provided by the C library: syscall and _syscall.</p>
<p>Try <code>man syscall</code> and <code>man _syscall</code> to see details.</p>
http://stackoverflow.com/questions/1661238/how-can-a-client-gracefully-detect-when-a-server-disconnects/1661785#16617851Answer by Zan Lynx for How can a client gracefully detect when a server disconnects?Zan Lynx2009-11-02T14:59:55Z2009-11-02T14:59:55Z<p>Without more details about the error, we are all just guessing.</p>
<p>What makes you believe an exception is causing the error?</p>
<p>It might be a segmentation fault or access violation or stack smashing if you compiled with stack security checking.</p>
<p>This can easily happen if something in the socket processing overwrites the return address of the main handling function. The handling function will then crash when the socket closes.</p>
<p>Or it could be heap memory corruption caused by a double free or by writing to memory that has been freed.</p>
http://stackoverflow.com/questions/1649398/how-do-i-ensure-buffer-memory-is-aligned/1651234#16512340Answer by Zan Lynx for How do I ensure buffer memory is aligned?Zan Lynx2009-10-30T17:28:51Z2009-10-30T17:28:51Z<p>I don't know your hardware and I don't know how you are getting your pPattern pointer, but this seems risky all around. Most DMA I am familiar with requires physical continuous RAM. The operating system only provides virtually continuous RAM to user programs. That means that a memory allocation of 1 MB might be composed of up to 256 unconnected 4K RAM pages.</p>
<p>Much of the time memory allocations will be made of continuous physical pieces which can lead to things working most of the time but not always. You need a kernel device driver to provide safe DMA.</p>
<p>I wonder about this because if your pPattern pointer <strong>is</strong> coming from a device driver, then why do you need to align it more?</p>
http://stackoverflow.com/questions/1644320/is-there-a-well-known-classifier-library/1646051#16460510Answer by Zan Lynx for Is there a well known classifier library?Zan Lynx2009-10-29T19:36:08Z2009-10-29T19:36:08Z<p>My current employer developed a system to categorize web pages. There were not any useful libraries that we could find so we had to do our own. We do not license ours out.</p>
<p>I can give you some hints. Spam analyzers classify email into Junk or Not Junk. You can use the same tools such as Bayesian, CRM-114, etc to do your own classifications on any text, including web pages.</p>
<p>You will have to watch the results of these very carefully and give them a <em>lot</em> of human feedback. You can often find keyword sets that will score very well for you. Finding those keyword sets will take time and effort and it will change some over time.</p>
<p>You will have to write code to divide web pages into topic sections because most pages are not all one thing. There are ad frames, navigation and other things.</p>
http://stackoverflow.com/questions/1637007/flushing-datacache-on-linux/1637294#16372941Answer by Zan Lynx for flushing datacache on linuxZan Lynx2009-10-28T13:38:23Z2009-10-28T13:38:23Z<p>How do you share the memory region without a driver?</p>
<p>But anyway, look at the <code>msync</code> functions.</p>
http://stackoverflow.com/questions/1604132/how-to-find-location-of-executable-on-linux-when-normal-methods-fail/1604401#16044010Answer by Zan Lynx for How to find location of executable on Linux when normal methods fail?Zan Lynx2009-10-22T00:28:18Z2009-10-22T00:28:18Z<p>I think that the answer is: give up.</p>
<p>Ask the user to pass the install directory (or whatever you are looking for) as a command line argument.</p>
http://stackoverflow.com/questions/1598111/tcp-ip-message-framing-examples/1598423#15984232Answer by Zan Lynx for TCP/IP Message Framing ExamplesZan Lynx2009-10-21T02:21:50Z2009-10-21T02:28:40Z<p>I've found that the simple method works pretty well.</p>
<ul>
<li>Allocate a buffer of fixed size double the size of your biggest message. One buffer. Keep a pointer to the end of the data in the buffer.</li>
<li>Allocation happens once. The next part is the message loop:</li>
<li>If not using blocking sockets, then <code>poll</code> or <code>select</code> here.</li>
<li>Read data into the buffer at the end-data pointer. Only read what will fit into the buffer.</li>
<li>Scan the new data for your delimiters with <code>strchr</code>. If you found a message:
<ul>
<li><code>memcpy</code> the message into its own buffer. (Note: I do this because I was using threading and you probably should too.)</li>
<li><code>memmove</code> the remaining buffer data to the beginning of the buffer and update the end of data pointer.</li>
<li>Call the processing function for the message. (Send it to the thread pool.)</li>
</ul></li>
</ul>
<p>There are more complicated methods. I haven't found them worth the bother in the end but you might depending on circumstances.</p>
<p>You could use a circular buffer with beginning and end of data pointers. Lots of hassle keeping track and computing remaining space, etc.</p>
<p>You could allocate a new buffer after finding each message. You wouldn't have to copy so much data around. You do still have to move the excess data into a new message buffer after finding the delimiter.</p>
<p>Do <strong>not</strong> think that dumb tricks like reading one byte at a time out of the socket will improve performance. Every system call round-trip makes an 8 kB <code>memmove</code> look cheap.</p>
http://stackoverflow.com/questions/1583142/c-programmer-looking-to-broaden-perspective/1583325#15833252Answer by Zan Lynx for C++ programmer looking to broaden perspectiveZan Lynx2009-10-17T21:53:31Z2009-10-17T21:53:31Z<p>A recent "This is so cool!" for me was Scala. It combines functional programming, objects and threads in a great way, and it all runs in the JVM.</p>
<p>For me it was the first really cool thing I'd seen that was Java related. :)</p>
<p>Oh, okay, it was the second. The first was a reversible debugger which I forget the name of, but it let you run the virtual machine "backwards" in order to find a bug.</p>
http://stackoverflow.com/questions/1583271/posix-threads-are-pthreadscondwait-and-others-systemcalls/1583315#15833157Answer by Zan Lynx for POSIX Threads: are pthreads_cond_wait() and others systemcalls?Zan Lynx2009-10-17T21:46:34Z2009-10-17T21:46:34Z<p>On Linux a pthread mutex makes a "futex" system call, but <em>only if the lock is contended</em>. That means that taking a lock no other thread wants is almost free.</p>
<p>In a similar way, sending a condition signal is only expensive when there is someone waiting for it.</p>
<p>So I believe that your answer is that pthread functions are library calls that <em>sometimes</em> result in a system call.</p>
http://stackoverflow.com/questions/1520884/how-to-calculate-computer-speed/1521044#15210440Answer by Zan Lynx for How to calculate computer speedZan Lynx2009-10-05T16:23:19Z2009-10-05T16:23:19Z<p>In combination with some of the ideas of running a little benchmark function of your own using your real calculation and sample data, I think it would be clever to offer the user the chance to upload the results to your web site. Your web site could then display charts showing the results of many combinations of CPU type and speed. That would enable new users of your program to know what sort of system they need before installing the program.</p>
http://stackoverflow.com/questions/1517868/performance-of-java-1-6-vs-c/1518324#15183241Answer by Zan Lynx for Performance of Java 1.6 vs C++ ?Zan Lynx2009-10-05T04:56:25Z2009-10-05T04:56:25Z<p>I find that Java performs very well.</p>
<p>However, why has no one ever fixed my biggest complaint?</p>
<p>Java uses <strong>FIVE TIMES</strong> as much memory as a C++ program doing the same job. At least!</p>
<p>And once it's used, <strong>Java keeps it</strong>!</p>
<p>Please, please, why won't anyone write a garbage collector for Java that uses minimum amounts of RAM? It could compact the heap and returns the memory to the OS. Instead of ridiculous piles of -Xm* options, use the memory needed and then <strong>give it back</strong>!</p>
<p>Actually I am sure some of the embedded system JVMs do this, but none of the desktop or server systems do. </p>
<p>This memory piggishness makes Java applications all want to act as if they own the entire computer system, that no one ever wants to run more than one application and that RAM is free and infinitely upgradable.</p>
<p>Therefore, no matter how great the performance, I would never write anything like a utility program in Java. Only gigantic server apps need apply.</p>
http://stackoverflow.com/questions/1504717/python-vs-is-comparing-strings-is-fails-sometimes-why/1504829#15048292Answer by Zan Lynx for Python '==' vs 'is' comparing strings, 'is' fails sometimes, why?Zan Lynx2009-10-01T15:59:38Z2009-10-01T15:59:38Z<p>I believe that this is known as "interned" strings. Python does this, so does Java, and so do C and C++ when compiling in optimized modes.</p>
<p>If you use two identical strings, instead of wasting memory by creating two string objects, all interned strings with the same contents point to the same memory.</p>
<p>This results in the Python "is" operator returning True because two strings with the same contents are pointing at the same string object. This will also happen in Java and in C.</p>
<p>This is only useful for memory savings though. You cannot rely on it to test for string equality, because the various interpreters and compilers and JIT engines cannot always do it.</p>
http://stackoverflow.com/questions/187085/how-do-we-recruit-great-mac-developers/190419#190419Comment by Zan Lynx on How do we recruit great Mac developers?Zan Lynx2009-12-01T01:24:25Z2009-12-01T01:24:25ZYeah. Giving your employer the IP rights to work they assign to you is one thing. Don't give them rights to work you do for yourself or you will have trouble contributing to Open Source or writing clever iPhone/Android apps on the side. http://stackoverflow.com/questions/1727208/fastest-method-for-running-a-binary-search-on-a-file-in-c/1727364#1727364Comment by Zan Lynx on Fastest method for running a binary search on a file in C?Zan Lynx2009-11-30T17:38:06Z2009-11-30T17:38:06ZThere is still no reason to keep calling malloc enough times to make it a speed bottleneck. Get the file size and malloc all the space up front, then stuff the strings into it.http://stackoverflow.com/questions/1811447/populating-int-array-that-is-a-member-variable/1811506#1811506Comment by Zan Lynx on populating int array that is a member variableZan Lynx2009-11-28T21:14:20Z2009-11-28T21:14:20Z@AndreyT: It looks like you are right. This syntax is C99 not C++0x. C++0x is going with a different style, which will also be useful in other situations. I will edit my answer.http://stackoverflow.com/questions/1800211/why-use-underscores-in-c-c-namesComment by Zan Lynx on Why Use Underscores In C/C++ Names?Zan Lynx2009-11-25T22:17:57Z2009-11-25T22:17:57ZIt changed because of two people editing at one time. SO should have an edit conflict check.http://stackoverflow.com/questions/317571/how-to-watch-fs-for-change/317588#317588Comment by Zan Lynx on how to watch FS for changeZan Lynx2009-11-25T21:36:17Z2009-11-25T21:36:17ZI may misunderstand what you intend to do here. Add logic to timer tick? Does that mean you intend to get a directory listing every tick and compare it? No! Don't do that!http://stackoverflow.com/questions/1787474/improving-the-performance-of-c-code/1787496#1787496Comment by Zan Lynx on Improving the performance of C code...Zan Lynx2009-11-24T03:03:04Z2009-11-24T03:03:04ZExcept that most of this is useless because the compiler will do it.http://stackoverflow.com/questions/1727208/fastest-method-for-running-a-binary-search-on-a-file-in-c/1727364#1727364Comment by Zan Lynx on Fastest method for running a binary search on a file in C?Zan Lynx2009-11-23T05:34:21Z2009-11-23T05:34:21ZWell, I suppose I can see using realloc to get a bigger buffer when needed, but there is no need to keep freeing it. That would be a mostly static buffer.http://stackoverflow.com/questions/1773897/why-is-argc-an-int-rather-than-an-unsigned-int/1773913#1773913Comment by Zan Lynx on Why is argc an 'int' (rather than an 'unsigned int')?Zan Lynx2009-11-21T00:23:45Z2009-11-21T00:23:45ZAnd languages with one letter keywords are suppressed by the international keyboard conspiracy?http://stackoverflow.com/questions/954945/large-number-of-simulteneous-connections-in-thrift/1041235#1041235Comment by Zan Lynx on Large number of simulteneous connections in thrift.Zan Lynx2009-11-21T00:20:17Z2009-11-21T00:20:17ZBut he does not want to increase the number of threads.http://stackoverflow.com/questions/1773897/why-is-argc-an-int-rather-than-an-unsigned-int/1773913#1773913Comment by Zan Lynx on Why is argc an 'int' (rather than an 'unsigned int')?Zan Lynx2009-11-20T23:51:31Z2009-11-20T23:51:31ZC could have named them int and uint, then it is only one extra character.http://stackoverflow.com/questions/1771659/format-a-string-in-c/1772325#1772325Comment by Zan Lynx on Format a string in CZan Lynx2009-11-20T18:18:42Z2009-11-20T18:18:42Z-1: freopen's first parameter is a filename, not an output string. I can't predict what your example will do but I am sure it won't be good.http://stackoverflow.com/questions/1765790/should-i-read-file-in-separate-thread-in-this-caseComment by Zan Lynx on Should I read file in separate thread in this case ?Zan Lynx2009-11-19T20:15:54Z2009-11-19T20:15:54ZI think that the C and C++ libraries on Linux generally use 8KiB system calls when doing buffered I/O. The Linux block devices default to 128KiB read-ahead when doing sequential reads.http://stackoverflow.com/questions/1727208/fastest-method-for-running-a-binary-search-on-a-file-in-c/1727364#1727364Comment by Zan Lynx on Fastest method for running a binary search on a file in C?Zan Lynx2009-11-16T19:46:03Z2009-11-16T19:46:03ZNot really any clearer. I don't see <i>why</i> you would call malloc for each line. I never have done fgets that way, I have always used a static char buffer.http://stackoverflow.com/questions/1020188/fast-average-without-division/1020723#1020723Comment by Zan Lynx on Fast average without divisionZan Lynx2009-11-13T05:15:48Z2009-11-13T05:15:48Z@Nils: Yes indeed, on modern CPUs it is the unpredictable branches of a binary search that are the speed killers.http://stackoverflow.com/questions/1727208/fastest-method-for-running-a-binary-search-on-a-file-in-c/1727228#1727228Comment by Zan Lynx on Fastest method for running a binary search on a file in C?Zan Lynx2009-11-13T05:09:04Z2009-11-13T05:09:04ZI suppose not, but the last time I did this (a while back) it seemed to get the middle string more reliably. For some reason this seemed important at the time. Heh.