vote up 2 vote down star
3

I've found following article: Use GCC-provided atomic lock operations to replace pthread_mutex_lock functions

It refers to GCC Atomic Builtins.

What the article suggest, is to use GCC atomic builtins instead of pthread synchronization tools.

Is this a good idea?

PS. The mysql post is obviously misleading. Atomic Builtins can't replace all pthread tools. For example, the locking requires, that if a lock can't be acquired, a thread has to wait. In other words, it asks the OS to wait, so that the wait is passive. Simple GCC builtin can't do that.

flag

4 Answers

vote up 2 vote down

If you are already using pthread, and the pthread lock functions already do what you want, it is best to use the pthread lock functions.

These atomic builtins are just the building blocks for higher-level primitives; writing these higher-level primitives tends to be tricky, and any mistakes can cause errors which can take a long time to show up (since they usually depend on timing). If you already have a library with higher-level primitives which do what you want and are fast enough for your needs (and do not assume they are too slow just because you have to do a function call), it is best to not reinvent the wheel.

link|flag
vote up 1 vote down

No. The GCC built-ins probably make good sense to the guys who write operating systems, libc, and maybe pthreads itself, but for your average application there is no reason not to use the pthreads approach.

And even if you always use GCC, some day you may want to run a static analysis tool which won't handle all the customer GCC extensions.

link|flag
vote up 4 vote down

Is this a good idea?

Not if you ever intend to compile the code with something other than gcc. Is pthreads causing you any specific problems?

link|flag
No problems with pthreads, just wondering if it would be rewarding to switch to those GCC builtins. I will always compile using GCC, no chances to change this. – anon Jul 21 at 8:58
1  
"If it ain't broke, don't fix it" is my motto. – Neil Butterworth Jul 21 at 9:07
These builtins were defined by Intel, as the page mentions; I would expect they also work on other compilers. – CesarB Jul 22 at 13:26
1  
Including ones for non-intel processors? – Neil Butterworth Jul 22 at 13:31

Your Answer

Get an OpenID
or

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