Zan Lynx

3,730
reputation
379 views

Registered User

name Zan Lynx
member for 1 year
seen 32 mins ago
website
location Boulder, CO
age 35
Nothing interesting about me. This is not the user you are looking for. Move along. Move along.
14h
answered C++ problem with std::pair and forward declarations
1d
comment What shall I do while waiting in a thread.
@Mick: I find the Microsoft documentation is usually programmer friendly, if not user friendly. Look for keywords and go up levels to find summaries in MSDN. You want to "wait" for some "event" so that your threads are "synchronized." So you follow the links around and pop up levels until you come to Synchronization Objects which has a very nice summary of everything useful.
1d
comment Advice on starting a large multi-threaded programming project
I don't hate this enough to downvote it, but recommending SQL database for anything involving high performance? -0.5 at least.
Dec
10
answered What advantages are there to programming for a non-cache-coherent multi-core machine?
Dec
9
answered In what areas of programming is a knowledge of mathematics helpful?
Dec
9
awarded  Cleanup
Dec
8
answered Is there a way to prevent a header defined c++ function from being treated as inlined.
Dec
8
revised How to properly initialize class value member?
Update with test code and output
Dec
7
comment How to use multiple versions of GCC
That sounds like something distribution specific. Reminds me of Gentoo or Debian but I am not sure.
Dec
7
revised How to properly initialize class value member?
Update answer because it is wrong
Dec
6
answered How to properly initialize class value member?
Dec
5
comment Why are file handles such an expensive resource?
@hobbs: His array does not look static to me. long* and a long count looks dynamic.
Dec
5
comment Hello world without using libraries
I think you want file descriptor 1 in your write syscall.
Dec
5
comment Calling static pointer to a list from a shared library in c++
There isn't enough detail here to answer the question. The problem could be that barRepHash isn't set to a valid memory location. Got a GDB backtrace of the crash?
Dec
4
answered Linking loadable plugins against symbols in the executable on Linux and Windows
Dec
1
answered how to partition the 2d arrays among the processes for “The Game of Life”
Dec
1
comment How do we recruit great Mac developers?
Yeah. 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.
Nov
30
comment Fastest method for running a binary search on a file in C?
There 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.
Nov
30
accepted Do you actually remember all of the different ways to progam via many API’s
Nov
28
revised populating int array that is a member variable
added 22 characters in body
Nov
28
comment populating int array that is a member variable
@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.
Nov
28
answered populating int array that is a member variable
Nov
28
answered Calling a Function From a String With the Function’s Name in C++
Nov
27
answered Socket available data for read
Nov
25
comment how to watch FS for change
I 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!
Nov
24
answered Improving the performance of C code…
Nov
24
comment Improving the performance of C code…
Except that most of this is useless because the compiler will do it.
Nov
24
answered Do you actually remember all of the different ways to progam via many API’s
Nov
24
answered How does C++ handle multiple source files?
Nov
23
comment Fastest method for running a binary search on a file in C?
Well, 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.
Nov
21
answered Make part of a C lib “private”
Nov
21
comment Why is argc an ‘int’ (rather than an ‘unsigned int’)?
And languages with one letter keywords are suppressed by the international keyboard conspiracy?
Nov
21
comment Large number of simulteneous connections in thrift.
But he does not want to increase the number of threads.
Nov
20
comment Why is argc an ‘int’ (rather than an ‘unsigned int’)?
C could have named them int and uint, then it is only one extra character.
Nov
20
answered Prevent undock computer in Windows
Nov
19
accepted Should I read file in separate thread in this case ?
Nov
19
comment Should I read file in separate thread in this case ?
I 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.
Nov
19
answered Should I read file in separate thread in this case ?
Nov
18
answered check internet connection in linux using mono?
Nov
16
comment Fastest method for running a binary search on a file in C?
Not really any clearer. I don't see why you would call malloc for each line. I never have done fgets that way, I have always used a static char buffer.
Nov
13
answered SQL Table Size And Query Performance
Nov
13
comment Fast average without division
@Nils: Yes indeed, on modern CPUs it is the unpredictable branches of a binary search that are the speed killers.
Nov
13
accepted Fastest method for running a binary search on a file in C?
Nov
13
comment Fastest method for running a binary search on a file in C?
I 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.
Nov
13
answered Fastest method for running a binary search on a file in C?
Nov
10
answered Is there a way to improve the speed or efficiency of this lookup? (C/C++)
Nov
10
answered Using dlopen, how can I cope with changes to the library file I have loaded?
Nov
5
comment variables scoping when inheriting
In C++ a virtual function is virtual forever. There is no way to make it "final."
Nov
5
comment How to execute a command with one parameter at a time in the *nix shell?
I voted this back up. Why the downvote? svn log does take more than one argument, and while this answer does not exactly answer the question, it may in fact be a better way to use xargs.
Nov
5
comment Datastructure alignment.
Those pragmas work in GCC as well.