From b3c659c32c3f7ba0be17730696443892d637c0c5 Mon Sep 17 00:00:00 2001 From: Hans-Joachim Lankenau Date: Mon, 18 Aug 2003 14:18:36 +0000 Subject: INTEGRATION: CWS geordi2q01 (1.9.16); FILE MERGED 2003/08/18 13:16:34 hr 1.9.16.1: #i18350#: join changes from CWS ooo11rc3 --- sal/osl/unx/interlck.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'sal/osl/unx/interlck.c') diff --git a/sal/osl/unx/interlck.c b/sal/osl/unx/interlck.c index 9697b8e3744b..9458ec734142 100644 --- a/sal/osl/unx/interlck.c +++ b/sal/osl/unx/interlck.c @@ -2,9 +2,9 @@ * * $RCSfile: interlck.c,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: hr $ $Date: 2003-07-16 17:20:50 $ + * last change: $Author: hjs $ $Date: 2003-08-18 15:18:36 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -120,7 +120,8 @@ oslInterlockedCount SAL_CALL osl_incrementInterlockedCount(oslInterlockedCount* "1: lwarx %0,0,%2\n\t" " addi %0,%0,1\n\t" " stwcx. %0,0,%2\n\t" - " bne- 1b" + " bne- 1b\n\t" + " isync" : "=&r" (nCount), "=m" (*pCount) : "r" (pCount) : "memory"); @@ -137,7 +138,8 @@ oslInterlockedCount SAL_CALL osl_decrementInterlockedCount(oslInterlockedCount* "1: lwarx %0,0,%2\n\t" " subi %0,%0,1\n\t" " stwcx. %0,0,%2\n\t" - " bne- 1b" + " bne- 1b\n\t" + " isync" : "=&r" (nCount), "=m" (*pCount) : "r" (pCount) : "memory"); -- cgit