X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=glib%2Fgbitlock.c;h=572c2d1873d81fb01ccddca19c866cd29977b7cf;hb=40650e33239994237917322d4cfecc34e4cc4394;hp=e183d39cfe686bfe0045f9511095d9d68a040073;hpb=13958ee4292947e0a074ebf4a0e697462ba58e79;p=platform%2Fupstream%2Fglib.git diff --git a/glib/gbitlock.c b/glib/gbitlock.c index e183d39..572c2d1 100644 --- a/glib/gbitlock.c +++ b/glib/gbitlock.c @@ -13,9 +13,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. + * License along with this library; if not, see . * * Author: Ryan Lortie */ @@ -208,12 +206,12 @@ g_bit_lock (volatile gint *address, { #ifdef USE_ASM_GOTO retry: - asm volatile goto ("lock bts %1, (%0)\n" - "jc %l[contended]" - : /* no output */ - : "r" (address), "r" (lock_bit) - : "cc", "memory" - : contended); + __asm__ volatile goto ("lock bts %1, (%0)\n" + "jc %l[contended]" + : /* no output */ + : "r" (address), "r" (lock_bit) + : "cc", "memory" + : contended); return; contended: @@ -281,12 +279,12 @@ g_bit_trylock (volatile gint *address, #ifdef USE_ASM_GOTO gboolean result; - asm volatile ("lock bts %2, (%1)\n" - "setnc %%al\n" - "movzx %%al, %0" - : "=r" (result) - : "r" (address), "r" (lock_bit) - : "cc", "memory"); + __asm__ volatile ("lock bts %2, (%1)\n" + "setnc %%al\n" + "movzx %%al, %0" + : "=r" (result) + : "r" (address), "r" (lock_bit) + : "cc", "memory"); return result; #else