Fix timestamp counter on s390/s390x

Fixes #811
This commit is contained in:
Alessandro Ghedini 2014-01-12 12:31:31 +01:00
parent d4f988649d
commit 2493a99735

View File

@ -193,7 +193,6 @@ uint64_t zmq::clock_t::rdtsc ()
#elif defined(__s390__)
uint64_t tsc;
asm("\tstck\t%0\n" : "=Q" (tsc) : : "cc");
tsc >>= 12; /* convert to microseconds just to be consistent */
return(tsc);
#else
return 0;