mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-02 08:42:48 +00:00
Some machines can not only consist of CPUs running at different speeds
but also of different types, f.e. Sun Fire V890 can be equipped with a mix of UltraSPARC IV and IV+ CPUs, requiring different MMU initialization and different workarounds for model specific errata. Therefore move the CPU implementation number from a global variable to the per-CPU data. Functions which are called before the latter is available are passed the implementation number as a parameter now. This file was missed in r204152.
This commit is contained in:
parent
cc611daaf4
commit
ba96c16ae8
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=204164
@ -31,8 +31,8 @@
|
||||
|
||||
extern u_int hardclock_use_stick;
|
||||
|
||||
void tick_clear(void);
|
||||
void tick_clear(u_int cpu_impl);
|
||||
void tick_start(void);
|
||||
void tick_stop(void);
|
||||
void tick_stop(u_int cpu_impl);
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user