svn commit: r297645 - stable/10/sys/amd64/include

Hans Petter Selasky hselasky at FreeBSD.org
Thu Apr 7 07:21:28 UTC 2016


Author: hselasky
Date: Thu Apr  7 07:21:27 2016
New Revision: 297645
URL: https://svnweb.freebsd.org/changeset/base/297645

Log:
  MFC r294526:
  Add missing atomic wrapper macro.
  
  Reviewed by:	alfred @
  Sponsored by:	Mellanox Technologies

Modified:
  stable/10/sys/amd64/include/atomic.h
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/amd64/include/atomic.h
==============================================================================
--- stable/10/sys/amd64/include/atomic.h	Thu Apr  7 07:19:30 2016	(r297644)
+++ stable/10/sys/amd64/include/atomic.h	Thu Apr  7 07:21:27 2016	(r297645)
@@ -483,6 +483,7 @@ u_long	atomic_swap_long(volatile u_long 
 #define	atomic_cmpset_rel_64	atomic_cmpset_rel_long
 #define	atomic_swap_64		atomic_swap_long
 #define	atomic_readandclear_64	atomic_readandclear_long
+#define	atomic_fetchadd_64	atomic_fetchadd_long
 #define	atomic_testandset_64	atomic_testandset_long
 
 /* Operations on pointers. */


More information about the svn-src-all mailing list