Old:
(without-interrupts
(push value *global-list*))
(pop *global-list*))
New: use low level atomic operations.
(sys:atomic-push value *global-list*)
(sys:atomic-pop *global-list*)