vote up 0 vote down star

UPDATED: Is there a thread-safe, lock-free and available on all Linux distros increment function available in C or C++ ?

flag

1  
This will be a part of C++0x when that comes out. – rlbond Nov 8 at 1:10
You say "lock-free", and the alternatives specified below are lock-free. But they are not cost-free; atomic operations require coordination of all cores on a processor, which includes flushing the cache. So if you find your multi-threaded program incrementing this counter thousands of times per second, the atomic operations will have a noticeable effect on your performance. – Martin Del Vecchio Nov 9 at 12:59
@Martin: "there is nothing free in this universe" that's what I always say :-) Thanks for you comment: the frequency at which I'll be using this facility is very low. – jldupont Nov 9 at 13:16

3 Answers

vote up 5 vote down check

GLib has functions to do this. You might check out http://library.gnome.org/devel/glib/stable/glib-Atomic-Operations.html

Specifically, it sounds like you want g_atomic_int_inc()

link|flag
Would I need to include GLib as a dependency to my project? Or is this just a .lib ? – jldupont Nov 8 at 1:05
1  
Yes, you would need to link to glib, but that shouldn't be a problem since it is available by default on every(?) Linux distro out there. – jstedfast Nov 8 at 1:15
1  
It's only available on systems with GNOME installed. – HalfBrian Nov 8 at 1:43
1  
While technically GLib is used in GTK+ programs, and typically GTK+ programs run on GNOME, most Linux distributions I'd expect would have a copy of GLib as GTK+ programs are just so prevalent on Linux. Failing which, it's easy enough to download via the distro's package manager – blwy10 Nov 8 at 2:21
vote up 5 vote down

I think these are GNU extensions, and processor specific, but have a look at GNU C Atomic Builtins.

I think there are also atomic "libraries" available that use inline assembly etc. to provide such features.

link|flag
vote up 3 vote down

The current C and C++ standards don't define such a thing. Your implementation may well have one.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.