diff options
author | Martin Blapp <mbr@FreeBSD.org> | 2002-10-21 08:57:17 +0000 |
---|---|---|
committer | Martin Blapp <mbr@FreeBSD.org> | 2002-10-21 08:57:17 +0000 |
commit | fb89e9b697585fc9977b488719536866ec4a4e14 (patch) | |
tree | 31749f632a8b91b25441b7239c6b397169f54572 /editors/openoffice/files/patch-sal::osl::unx::interlck.c | |
parent | Phoenix is a fast, minimal browser from the Mozilla project. This port (diff) |
All patches have been repocopied to use + as separator and not "::".
Notes
Notes:
svn path=/head/; revision=68480
Diffstat (limited to 'editors/openoffice/files/patch-sal::osl::unx::interlck.c')
-rw-r--r-- | editors/openoffice/files/patch-sal::osl::unx::interlck.c | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/editors/openoffice/files/patch-sal::osl::unx::interlck.c b/editors/openoffice/files/patch-sal::osl::unx::interlck.c deleted file mode 100644 index 60ea1f414d1a..000000000000 --- a/editors/openoffice/files/patch-sal::osl::unx::interlck.c +++ /dev/null @@ -1,30 +0,0 @@ ---- ../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"); - } - |