Advertisement
Guest User

Untitled

a guest
Oct 24th, 2014
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.78 KB | None | 0 0
  1. //http://lxr.free-electrons.com/ident?i=timespec64
  2. //http://lxr.free-electrons.com/source/include/linux/time64.h#L15
  3. struct timespec64 {
  4.         time64_t        tv_sec;                 /* seconds */
  5.         long            tv_nsec;                /* nanoseconds */
  6.  };
  7.  
  8. //http://lxr.free-electrons.com/ident?i=time64_t
  9. //http://lxr.free-electrons.com/source/include/linux/time64.h#L6
  10. typedef __s64 time64_t;
  11.  
  12. //http://lxr.free-electrons.com/ident?i=__s64
  13. //http://lxr.free-electrons.com/source/include/uapi/asm-generic/int-ll64.h#L32
  14. typedef __signed__ long long __s64;
  15.  
  16. //http://lxr.free-electrons.com/source/include/uapi/asm-generic/int-l64.h#L28
  17. typedef __signed__ long __s64;
  18.  
  19. //http://lxr.free-electrons.com/source/include/uapi/drm/drm.h#L55
  20. typedef int64_t  __s64;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement