zvrba

2,683
Reputation
118 views

Registered User

Name zvrba
Member for 1 year
Seen 4 hours ago
Website
Location Oslo
Age
Nov
16
answered How to create a symbol table in C without hashing?
Nov
12
answered Is user + sys time equal to real/wall clock time?
Aug
24
comment Which programming technique helps you most to avoid or resolve bugs before they come into production
Yes, asserts are a life-saver when used properly.
Aug
24
answered Bit manipulation library for ANSI C
Aug
24
awarded  Yearling
Aug
15
answered UNIX Timestamp to MySQL DATETIME
Aug
9
answered How to use “make” to use 64 bit libs because of ELFCLASS64 error
Aug
3
asked APIs for accessing Intel TXT (trusted execution mode) or AMD SVM ?
Aug
3
answered What should every web developer know about encryption?
Aug
3
answered C: Returning a pointer to an automatic variable
Aug
3
awarded  Nice Answer
Aug
1
comment Cake Comparison Algorithm
It's a Norwegian idiom... I googled a bit and it doesn't appear to be an English idiom :/ You got the point anyway :)
Aug
1
answered Cake Comparison Algorithm
Jul
23
awarded  Nice Answer
Jul
19
awarded  Nice Answer
Jul
18
answered BigInt for Standard ML/NJ
Jul
15
answered Continue in nested while loops
Jul
15
comment Continue in nested while loops
This is problematic because the separate metod will not have access to existing local variables.
Jul
8
comment What are some interesting, small Linux kernel projects to help learn the source?
Is this good enough citation: linuxtoday.com/news_story.php3?ltsn=2000-09-07-00…
Jul
7
comment Where is InterlockedRead?
The thread starting with this post may also be insightful: newsgroups.derkeiler.com/Archive/Comp/…
Jul
7
comment Where is InterlockedRead?
AFAIK, 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.)
Jul
6
answered How can I tell if a file is open elsewhere in C on Linux?
Jul
6
comment How can I tell if a file is open elsewhere in C on Linux?
Yes, he can also use inotify to detect that a file has been closed.
Jul
6
comment How can I tell if a file is open elsewhere in C on Linux?
This will not work, he needs to find out whether another program has a file open.
Jul
6
comment Where is InterlockedRead?
This is an answer -- interlocked read (whatever that might be) is not necessary.
Jul
5
answered Where is InterlockedRead?
Jul
4
answered Why does C++ use pointers?
Jul
1
answered EMMS instuction execution time?
Jun
29
comment Examples of good gotos in C or C++
Which 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.
Jun
21
answered Finding current executable’s path without /proc/self/exe
Jun
12
comment Hidden features of C
I said that the standard should have provided library support for checking for arithmetic overflow. Now, how can a library routine incur a performance hit if you never use it?
Jun
9
comment How can I put a pointer on the pipe?
Passing 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.
Jun
7
comment What one feature would you cut from your favorite language?
Fallthrough is not nonsense; I've found it quite handy in some situations.
Jun
4
awarded  Nice Answer
May
31
comment Opening a file on unix using c++
+1, I didn't know about wordexp.