truck-code
delay.h
Go to the documentation of this file.
1 
13 #ifndef INCLUDE_CAN_DELAY_H_
14 #define INCLUDE_CAN_DELAY_H_
15 
16 
17 #include "utils/timestamp.h"
18 #include <sys/time.h> /* timeval */
19 
20 
22 static inline unsigned int udelay(unsigned int usec)
23 {
24  timespec requested, remaining;
25  requested.tv_sec = usec/1000000;
26  requested.tv_nsec = usec*1000;
27  return ((unsigned int) nanosleep(&requested, &remaining));
28 }
29 
30 
33 static inline void do_gettimeofday(timeval *tv)
34 {
35  gettimeofday(tv, NULL);
36 }
37 
38 
45 typedef struct {
46  int counter;
47 } atomic_t;
48 
49 
54 #define atomic_read(v) ((v)->counter)
55 
56 
64 #define atomic_set(v,i) (v->counter = i)
65 
66 
67 #endif /* INCLUDE_CAN_DELAY_H_ */
Definition: delay.h:45