Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 30493
b: refs/heads/master
c: 05ebb76
h: refs/heads/master
i:
  30491: 3394ee7
v: v3
  • Loading branch information
Vojtech Pavlik authored and Linus Torvalds committed Jun 26, 2006
1 parent 6571fcb commit 371d1fa
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f3fa8ebc25129bb69929e20b0c84049c39029d8d
refs/heads/master: 05ebb76109f302b949e745724bbf0f0634dba43f
11 changes: 7 additions & 4 deletions trunk/include/linux/time.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,13 @@ struct timezone {
#ifdef __KERNEL__

/* Parameters used to convert the timespec values: */
#define MSEC_PER_SEC 1000L
#define USEC_PER_SEC 1000000L
#define NSEC_PER_SEC 1000000000L
#define NSEC_PER_USEC 1000L
#define MSEC_PER_SEC 1000L
#define USEC_PER_MSEC 1000L
#define NSEC_PER_USEC 1000L
#define NSEC_PER_MSEC 1000000L
#define USEC_PER_SEC 1000000L
#define NSEC_PER_SEC 1000000000L
#define FSEC_PER_SEC 1000000000000000L

static inline int timespec_equal(struct timespec *a, struct timespec *b)
{
Expand Down

0 comments on commit 371d1fa

Please sign in to comment.