diff options
author | Jeff Dike <jdike@addtoit.com> | 2008-02-05 01:31:11 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-05 12:44:30 -0500 |
commit | a9b71b6c5473d2c1526deac0a1a207fe476f6088 (patch) | |
tree | af124559352283f663671bb59fa6346a1cc913ad /include/asm-um | |
parent | 00a905e6145ba200308a6a13e00248b85c600bd0 (diff) |
uml: get rid of syscall counters
Get rid of some syscall counters which haven't been useful in ages.
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/asm-um')
-rw-r--r-- | include/asm-um/processor-generic.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/asm-um/processor-generic.h b/include/asm-um/processor-generic.h index ecf67069941a..b7d9a16a7451 100644 --- a/include/asm-um/processor-generic.h +++ b/include/asm-um/processor-generic.h | |||
@@ -27,7 +27,6 @@ struct thread_struct { | |||
27 | * as of 2.6.11). | 27 | * as of 2.6.11). |
28 | */ | 28 | */ |
29 | int forking; | 29 | int forking; |
30 | int nsyscalls; | ||
31 | struct pt_regs regs; | 30 | struct pt_regs regs; |
32 | int singlestep_syscall; | 31 | int singlestep_syscall; |
33 | void *fault_addr; | 32 | void *fault_addr; |
@@ -59,7 +58,6 @@ struct thread_struct { | |||
59 | #define INIT_THREAD \ | 58 | #define INIT_THREAD \ |
60 | { \ | 59 | { \ |
61 | .forking = 0, \ | 60 | .forking = 0, \ |
62 | .nsyscalls = 0, \ | ||
63 | .regs = EMPTY_REGS, \ | 61 | .regs = EMPTY_REGS, \ |
64 | .fault_addr = NULL, \ | 62 | .fault_addr = NULL, \ |
65 | .prev_sched = NULL, \ | 63 | .prev_sched = NULL, \ |