X-Git-Url: https://git.liburcu.org/?p=urcu.git;a=blobdiff_plain;f=urcu%2Farch%2Farm.h;h=d7affaabe85685b6c62929073e7baa732ef69a1d;hp=2d766cd61059684ac30f3cb2989d2a52d07571e1;hb=67ecffc0f530a7b5c4dd5111ea7dd3213da8eb91;hpb=999991c6e4600c410181baea65bda9f406464872 diff --git a/urcu/arch/arm.h b/urcu/arch/arm.h index 2d766cd..d7affaa 100644 --- a/urcu/arch/arm.h +++ b/urcu/arch/arm.h @@ -28,7 +28,7 @@ #ifdef __cplusplus extern "C" { -#endif +#endif #ifdef CONFIG_RCU_ARM_HAVE_DMB #define cmm_mb() __asm__ __volatile__ ("dmb":::"memory") @@ -39,20 +39,15 @@ extern "C" { #include #include -typedef unsigned long long cycles_t; - -static inline cycles_t caa_get_cycles (void) -{ - cycles_t thetime; - struct timeval tv; - - if (gettimeofday(&tv, NULL) != 0) - return 0; - thetime = ((cycles_t)tv.tv_sec) * 1000000ULL + ((cycles_t)tv.tv_usec); - return (cycles_t)thetime; -} +/* + * Define the membarrier system call number if not yet available in the + * system headers. + */ +#ifndef __NR_membarrier +#define __NR_membarrier 389 +#endif -#ifdef __cplusplus +#ifdef __cplusplus } #endif