Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 8618
b: refs/heads/master
c: 2e8ad43
h: refs/heads/master
v: v3
  • Loading branch information
Andi Kleen authored and Linus Torvalds committed Sep 12, 2005
1 parent b974c42 commit 4093d7b
Show file tree
Hide file tree
Showing 2 changed files with 5 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: c1a71a1ede8f743209237b2736893f3aebe13bb0
refs/heads/master: 2e8ad43ec07545780ce7992cb18e2d82c7abd24c
8 changes: 4 additions & 4 deletions trunk/arch/x86_64/kernel/vsyscall.c
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ static force_inline long time_syscall(long *t)
return secs;
}

static int __vsyscall(0) vgettimeofday(struct timeval * tv, struct timezone * tz)
int __vsyscall(0) vgettimeofday(struct timeval * tv, struct timezone * tz)
{
if (unlikely(!__sysctl_vsyscall))
return gettimeofday(tv,tz);
Expand All @@ -120,7 +120,7 @@ static int __vsyscall(0) vgettimeofday(struct timeval * tv, struct timezone * tz

/* This will break when the xtime seconds get inaccurate, but that is
* unlikely */
static time_t __vsyscall(1) vtime(time_t *t)
time_t __vsyscall(1) vtime(time_t *t)
{
if (unlikely(!__sysctl_vsyscall))
return time_syscall(t);
Expand All @@ -129,12 +129,12 @@ static time_t __vsyscall(1) vtime(time_t *t)
return __xtime.tv_sec;
}

static long __vsyscall(2) venosys_0(void)
long __vsyscall(2) venosys_0(void)
{
return -ENOSYS;
}

static long __vsyscall(3) venosys_1(void)
long __vsyscall(3) venosys_1(void)
{
return -ENOSYS;
}
Expand Down

0 comments on commit 4093d7b

Please sign in to comment.