Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/common/lib/libc/atomic Fix typo; this is "and", not "add".
details: https://anonhg.NetBSD.org/src/rev/839b2cdcf705
branches: trunk
changeset: 366493:839b2cdcf705
user: rin <rin%NetBSD.org@localhost>
date: Sun May 29 08:09:19 2022 +0000
description:
Fix typo; this is "and", not "add".
diffstat:
common/lib/libc/atomic/atomic_and_64_nv_cas.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (18 lines):
diff -r 9e5fd67669ad -r 839b2cdcf705 common/lib/libc/atomic/atomic_and_64_nv_cas.c
--- a/common/lib/libc/atomic/atomic_and_64_nv_cas.c Sun May 29 08:06:40 2022 +0000
+++ b/common/lib/libc/atomic/atomic_and_64_nv_cas.c Sun May 29 08:09:19 2022 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: atomic_and_64_nv_cas.c,v 1.7 2014/02/22 17:08:30 martin Exp $ */
+/* $NetBSD: atomic_and_64_nv_cas.c,v 1.8 2022/05/29 08:09:19 rin Exp $ */
/*-
* Copyright (c) 2007 The NetBSD Foundation, Inc.
@@ -50,7 +50,7 @@
#undef atomic_and_64_nv
atomic_op_alias(atomic_and_64_nv,_atomic_and_64_nv)
-crt_alias(__sync_and_and_fetch_8,_atomic_add_64_nv)
+crt_alias(__sync_and_and_fetch_8,_atomic_and_64_nv)
#if defined(_LP64)
#undef atomic_and_ulong_nv
Home |
Main Index |
Thread Index |
Old Index