diff options
author | kay.sievers@vrfy.org <kay.sievers@vrfy.org> | 2004-03-31 23:03:46 -0800 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 21:35:13 -0700 |
commit | e5a2989efbae81f40b60885a8f92ea1f87df7ea9 (patch) | |
tree | e23fdb064f57cdaa9a48527c30ac5d877d32d924 /klibc_fixups.h | |
parent | f27125f98f6487e881a957726da895aebd799f0d (diff) |
[PATCH] udevd race conditions and performance, assorted cleanups - take 2
here is a patch on top of your nice improvements.
I fixed the whitespace and it hopefully fixes the stupid timestamp bug in
udevd. Some stupid OS sets the hwclock to localtime and linux changes it
to UTC while starting. If any events are pending they may be delayed by
the users time distance from UTC :) So we use the uptime seconds now.
Diffstat (limited to 'klibc_fixups.h')
-rw-r--r-- | klibc_fixups.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/klibc_fixups.h b/klibc_fixups.h index f6c91cdd94..6dfd5a5c17 100644 --- a/klibc_fixups.h +++ b/klibc_fixups.h @@ -3,6 +3,11 @@ #ifndef KLIBC_FIXUPS_H #define KLIBC_FIXUPS_H +#include <linux/kernel.h> +#include <linux/unistd.h> + +int sysinfo(struct sysinfo *info); + struct passwd { char *pw_name; /* user name */ char *pw_passwd; /* user password */ |