diff options
author | serg@serg.mylan <> | 2006-06-29 15:39:53 +0200 |
---|---|---|
committer | serg@serg.mylan <> | 2006-06-29 15:39:53 +0200 |
commit | 5e2777b445ce35de7aec44ef41408d8f185b66a5 (patch) | |
tree | 6caa01d28f4377fb975fe7fcfb08fd25f8c8437e /mysys/my_atomic.c | |
parent | d4bdf2f447bba85660845ed1b5b9b7c3c0e355c4 (diff) | |
download | mariadb-git-5e2777b445ce35de7aec44ef41408d8f185b66a5.tar.gz |
support for xadd emulation, workaround for Darwin
Diffstat (limited to 'mysys/my_atomic.c')
-rw-r--r-- | mysys/my_atomic.c | 1 |
1 files changed, 1 insertions, 0 deletions
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; |