From 948caab031ac765d74e36b0dad2452cee1a05e74 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 29 Jun 2006 15:39:53 +0200 Subject: support for xadd emulation, workaround for Darwin include/atomic/nolock.h: support for xadd emulation include/atomic/x86-msvc.h: syntax error include/my_atomic.h: support for xadd emulation, cleanup mysys/my_atomic.c: assert --- mysys/my_atomic.c | 1 + 1 file changed, 1 insertion(+) (limited to 'mysys/my_atomic.c') diff --git a/mysys/my_atomic.c b/mysys/my_atomic.c index 21b80f0f6a1..6f56d76e6b8 100644 --- a/mysys/my_atomic.c +++ b/mysys/my_atomic.c @@ -36,6 +36,7 @@ */ int my_atomic_initialize() { + DBUG_ASSERT(sizeof(intptr) == sizeof(void *)); /* currently the only thing worth checking is SMP/UP issue */ #ifdef MY_ATOMIC_MODE_DUMMY return my_getncpus() == 1 ? MY_ATOMIC_OK : MY_ATOMIC_NOT_1CPU; -- cgit v1.2.1