X-Git-Url: http://rtime.felk.cvut.cz/gitweb/lincan.git/blobdiff_plain/a4c9ead4b64bd4de307f375c2ff313a7a07a06e0..d75979c94df320d1fb3d04731572a8031f8d5b18:/lincan/include/can_sysdep.h diff --git a/lincan/include/can_sysdep.h b/lincan/include/can_sysdep.h index 07e6021..3966e8f 100644 --- a/lincan/include/can_sysdep.h +++ b/lincan/include/can_sysdep.h @@ -16,6 +16,7 @@ #include #include #include +#include #endif /*CAN_WITH_RTL*/ /*#define __NO_VERSION__*/ @@ -145,6 +146,10 @@ #define del_timer_sync del_timer #endif /* <2.4.0 */ +#ifdef __HAVE_ARCH_CMPXCHG + #define CAN_HAVE_ARCH_CMPXCHG +#endif + #ifndef CAN_WITH_RTL /* Standard LINUX kernel */ @@ -169,6 +174,9 @@ #define can_printk printk +/* CAN message timestamp source, it is called from interrupt context */ +#define can_gettimeofday do_gettimeofday + #else /*CAN_WITH_RTL*/ #define can_spinlock_t rtl_spinlock_t @@ -197,6 +205,14 @@ extern can_spinlock_t can_irq_manipulation_lock; +/* CAN message timestamp source, it is called from interrupt context */ +#define can_gettimeofday(ptr) do {\ + struct timespec temp_timespec;\ + clock_gettime(CLOCK_REALTIME,&temp_timespec);\ + ptr->tv_usec=temp_timespec.tv_nsec/1000;\ + ptr->tv_sec=temp_timespec.tv_sec;\ + } while(0) + #endif /*CAN_WITH_RTL*/ #endif /*_CAN_SYSDEP_H*/