5,548 reputation
421
bio website
location
age
visits member for 1 year, 6 months
seen 47 mins ago
stats profile views 201

21h
revised access struct member using a user variable
added 644 characters in body
21h
answered access struct member using a user variable
May
13
comment C - What is a proper way to loop inside a system() function?
@DevSolar: system() is more portable than doing fork, exec, wait. If you need to call an external program, and are ok with the output going to the user, then system is the right tool for the job. That said, you need to be doing more than just this for C to be the right tool for the job.
May
13
comment C - What is a proper way to loop inside a system() function?
Agreed, C is the wrong tool for the job. However, if this is a small part of a larger project then @unwind's answer is better.
May
5
awarded  Nice Answer
May
3
answered Calculation of sizeof structure
May
3
answered How to pass variables to intel format inline asm code compiled with gcc
May
3
comment task switching didn't work out
The code looks ok to me, but it all depends what's stored in current_p, so I'd look there.
May
3
comment How to use C++0x in gcc
I'm guessing you don't actually need to build "gnu-libstdc++" if you're using GCC: it'll already have that, and I imagine that whatever they did to port it to MSVC isn't compatible with GCC. Maybe the build system can turn that off somehow?
Apr
24
comment Codesourcery toolchain under Win7/cygwin can't find some files
Do you have cygpath in your PATH, or do you have $CYGPATH set?
Apr
22
comment Why does the compiler not schedule or eliminate instructions optimally?
Optimizing code is a hard problem. The compiler probably does better than you can do on average (especially if you wanted the code to be maintainable), but you can certainly find examples where it does silly things. Instruction scheduling and register allocation is the hardest problem. 4.6.3 is quite old now, and this area had a major overhaul for 4.8.0. Perhaps you should try that?
Apr
22
comment Resetting gcc's asm inline input
What do you dislike about it? It tells the compiler exactly what it needs to know to produce the desired output. The extra variable is necessary because, as you've discovered, writing to a constant is not what you want.
Apr
19
comment local gcc build links system dynamic libraries
Or, you could use -Wl,-rpath,/home/testuser/selfcompiled/gcc-4.6.4/lib,-rpath,/home/testuser/self‌​compiled/gcc-4.6.4/lib64/lib at link time.
Apr
19
comment local gcc build links system dynamic libraries
Does it link the wrong library, or does it use the wrong one when you run the built program?
Apr
19
answered Resetting gcc's asm inline input
Apr
19
revised read semicolon separated strings from a file
added 1 characters in body
Apr
19
comment read semicolon separated strings from a file
True, although the space before the ; is superfluous. Also beware CRLF line endings, so maybe you'd want this: " %[^;]; %[^\r\n]"
Apr
19
revised read semicolon separated strings from a file
added 1 characters in body
Apr
19
revised read semicolon separated strings from a file
added 1 characters in body
Apr
19
comment read semicolon separated strings from a file
I believe the s is an error.