summaryrefslogtreecommitdiff
path: root/editors/openoffice-3/files/patch-sal::osl::unx::interlck.c
diff options
context:
space:
mode:
Diffstat (limited to 'editors/openoffice-3/files/patch-sal::osl::unx::interlck.c')
-rw-r--r--editors/openoffice-3/files/patch-sal::osl::unx::interlck.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/editors/openoffice-3/files/patch-sal::osl::unx::interlck.c b/editors/openoffice-3/files/patch-sal::osl::unx::interlck.c
new file mode 100644
index 000000000000..60ea1f414d1a
--- /dev/null
+++ b/editors/openoffice-3/files/patch-sal::osl::unx::interlck.c
@@ -0,0 +1,30 @@
+--- ../sal/osl/unx/interlck.c.orig Mon Jul 22 17:51:34 2002
++++ ../sal/osl/unx/interlck.c Mon Jul 22 18:03:42 2002
+@@ -81,10 +81,10 @@
+ __asm__ __volatile__ (
+ "movl $1, %0\n\t"
+ "lock\n\t"
+- "xadd %0, %2\n\t"
++ "xadd %0, %1\n\t"
+ "incl %0"
+- : "=a" (nCount), "=m" (*pCount)
+- : "m" (*pCount)
++ : "=&a" (nCount), "+m" (*pCount)
++ :
+ : "memory");
+ }
+
+@@ -95,10 +95,10 @@
+ __asm__ __volatile__ (
+ "movl $-1, %0\n\t"
+ "lock\n\t"
+- "xadd %0, %2\n\t"
++ "xadd %0, %1\n\t"
+ "decl %0"
+- : "=a" (nCount), "=m" (*pCount)
+- : "m" (*pCount)
++ : "=&a" (nCount), "+m" (*pCount)
++ :
+ : "memory");
+ }
+