diff options
author | Jeff Dike <[email protected]> | 2008-05-12 14:02:00 -0700 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2008-05-13 08:02:22 -0700 |
commit | fe2cc53ee013a4d4d0317d418e7019fe6533a5a8 (patch) | |
tree | 7a173e2703c638b8eab4a2a6762c256114acec60 /arch/um/os-Linux/signal.c | |
parent | 3d88958e01e71bb14a367db75f12f7a59c068f02 (diff) |
uml: track and make up lost ticks
Alarm delivery could be noticably late in the !CONFIG_NOHZ case because lost
ticks weren't being taken into account. This is now treated more carefully,
with the time between ticks being calculated and the appropriate number of
ticks delivered to the timekeeping system.
Cc: Nix <[email protected]>
Signed-off-by: Jeff Dike <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'arch/um/os-Linux/signal.c')
-rw-r--r-- | arch/um/os-Linux/signal.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/um/os-Linux/signal.c b/arch/um/os-Linux/signal.c index 3f1694b134cb..5aade6027e40 100644 --- a/arch/um/os-Linux/signal.c +++ b/arch/um/os-Linux/signal.c @@ -12,6 +12,7 @@ #include "as-layout.h" #include "kern_util.h" #include "os.h" +#include "process.h" #include "sysdep/barrier.h" #include "sysdep/sigcontext.h" #include "user.h" |