summaryrefslogtreecommitdiff
path: root/editors/openoffice.org-3/files/patch-sal::osl::unx::interlck.c
diff options
context:
space:
mode:
authorMartin Blapp <mbr@FreeBSD.org>2002-10-21 09:02:08 +0000
committerMartin Blapp <mbr@FreeBSD.org>2002-10-21 09:02:08 +0000
commit403bb5464a5b30c3853b1554265d0c8741c72690 (patch)
treec828046c732cde09938fa2839d8f8c5d8855f415 /editors/openoffice.org-3/files/patch-sal::osl::unx::interlck.c
parentAll patches have been repocopied to use + as separator and not "::". (diff)
All patches will be a repocopy from ports/openoffice/files. Remove old
patches with "::" delimiters.
Notes
Notes: svn path=/head/; revision=68481
Diffstat (limited to 'editors/openoffice.org-3/files/patch-sal::osl::unx::interlck.c')
-rw-r--r--editors/openoffice.org-3/files/patch-sal::osl::unx::interlck.c30
1 files changed, 0 insertions, 30 deletions
diff --git a/editors/openoffice.org-3/files/patch-sal::osl::unx::interlck.c b/editors/openoffice.org-3/files/patch-sal::osl::unx::interlck.c
deleted file mode 100644
index 60ea1f414d1a..000000000000
--- a/editors/openoffice.org-3/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");
- }
-