From 0b8f94c167e99a5a5768cdcccbeec4ec3d0ebb27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Sur=C3=BD?= Date: Wed, 15 Aug 2018 08:24:28 -0400 Subject: [PATCH] ondrej created page: stdatomic usage in master --- stdatomic-usage-in-master.md | 47 ++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 stdatomic-usage-in-master.md diff --git a/stdatomic-usage-in-master.md b/stdatomic-usage-in-master.md new file mode 100644 index 0000000..d427761 --- /dev/null +++ b/stdatomic-usage-in-master.md @@ -0,0 +1,47 @@ +### CentOS 6 amd64 +``` +lib/isc/include/isc/rwlock.h:46: note: #pragma message: ISC_RWLOCK_USEATOMIC is defined +lib/isc/stats.c:85: note: #pragma message: ISC_STATS_HAVEATOMICQ is defined +``` + +### CentOS 7 amd64 +``` +lib/isc/include/isc/rwlock.h:46:9: note: #pragma message: ISC_RWLOCK_USEATOMIC is defined +lib/isc/stats.c:85:9: note: #pragma message: ISC_STATS_HAVEATOMICQ is defined +``` + +### Debian Jessie amd64 +``` +lib/isc/include/isc/refcount.h:109:9: note: #pragma message: ISC_REFCOUNT_HAVESTDATOMIC is defined +lib/isc/include/isc/rwlock.h:46:9: note: #pragma message: ISC_RWLOCK_USEATOMIC is defined +lib/isc/include/isc/rwlock.h:49:9: note: #pragma message: ISC_RWLOCK_USESTDATOMIC is defined +lib/isc/stats.c:85:9: note: #pragma message: ISC_STATS_HAVEATOMICQ is defined +lib/isc/stats.c:88:9: note: #pragma message: ISC_STATS_HAVESTDATOMICQ is defined +``` + +### Debian Stretch amd64 +``` +lib/isc/include/isc/refcount.h:109:9: note: #pragma message: ISC_REFCOUNT_HAVESTDATOMIC is defined +lib/isc/include/isc/rwlock.h:46:9: note: #pragma message: ISC_RWLOCK_USEATOMIC is defined +lib/isc/include/isc/rwlock.h:49:9: note: #pragma message: ISC_RWLOCK_USESTDATOMIC is defined +lib/iscstats.c:85:9: note: #pragma message: ISC_STATS_HAVEATOMICQ is defined +lib/isc/stats.c:88:9: note: #pragma message: ISC_STATS_HAVESTDATOMICQ is defined +``` + +### Debian Sid amd64 +``` +lib/isc/include/isc/refcount.h:109:9: note: #pragma message: ISC_REFCOUNT_HAVESTDATOMIC is defined +lib/isc/include/isc/rwlock.h:46:9: note: #pragma message: ISC_RWLOCK_USEATOMIC is defined +lib/isc/include/isc/rwlock.h:49:9: note: #pragma message: ISC_RWLOCK_USESTDATOMIC is defined +lib/isc/stats.c:85:9: note: #pragma message: ISC_STATS_HAVEATOMICQ is defined +lib/isc/stats.c:88:9: note: #pragma message: ISC_STATS_HAVESTDATOMICQ is defined +``` + +### Debian Sid i386 +``` +lib/isc/include/isc/refcount.h:109:9: note: #pragma message: ISC_REFCOUNT_HAVESTDATOMIC is defined +lib/isc/include/isc/rwlock.h:46:9: note: #pragma message: ISC_RWLOCK_USEATOMIC is defined +lib/isc/include/isc/rwlock.h:49:9: note: #pragma message: ISC_RWLOCK_USESTDATOMIC is defined +lib/isc/stats.c:85:9: note: #pragma message: ISC_STATS_HAVEATOMICQ is defined +lib/isc/stats.c:88:9: note: #pragma message: ISC_STATS_HAVESTDATOMICQ is defined +```