diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-12-05 22:02:55 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-12-08 23:44:36 +0900 |
commit | c86c2d084dbd8c004eaf9c81e2bf712a4318466c (patch) | |
tree | a1ef3ba929e7356f2037cdfe18b5a5d0251e1213 | |
parent | cda5e793560d852afa34db48a4894d59ae4d5b79 (diff) |
kern/machine.c: remove __volatile__
Shutdown can be optimised. Remove __volatile__.
* kern/machine.c [__GNUC__] (processor_doshutdown): Remove volatile function qualifier.
-rw-r--r-- | kern/machine.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/kern/machine.c b/kern/machine.c index 3dadeb5..8a33327 100644 --- a/kern/machine.c +++ b/kern/machine.c @@ -623,9 +623,6 @@ Restart_pset: * running on the processor's shutdown stack. */ -#ifdef __GNUC__ -__volatile__ -#endif void processor_doshutdown(processor) processor_t processor; { |