alpha_generic.py (9380:e428871da248) | alpha_generic.py (9447:156f74caf0d4) |
---|---|
1# Copyright (c) 2012 ARM Limited 2# All rights reserved. 3# 4# The license below extends only to copyright in the software and shall 5# not be construed as granting a license to any other intellectual 6# property including but not limited to intellectual property relating 7# to a hardware implementation of the functionality of the software 8# licensed hereunder. You may use the software subject to the license --- 77 unchanged lines hidden (view full) --- 86 Note: This class is a specialization of the AlphaFSSystem and is 87 only really needed to provide backwards compatibility for existing 88 test cases. 89 """ 90 91 def __init__(self, **kwargs): 92 BaseFSSystemUniprocessor.__init__(self, **kwargs) 93 LinuxAlphaSystemBuilder.__init__(self) | 1# Copyright (c) 2012 ARM Limited 2# All rights reserved. 3# 4# The license below extends only to copyright in the software and shall 5# not be construed as granting a license to any other intellectual 6# property including but not limited to intellectual property relating 7# to a hardware implementation of the functionality of the software 8# licensed hereunder. You may use the software subject to the license --- 77 unchanged lines hidden (view full) --- 86 Note: This class is a specialization of the AlphaFSSystem and is 87 only really needed to provide backwards compatibility for existing 88 test cases. 89 """ 90 91 def __init__(self, **kwargs): 92 BaseFSSystemUniprocessor.__init__(self, **kwargs) 93 LinuxAlphaSystemBuilder.__init__(self) |
94 95class LinuxAlphaFSSwitcheroo(LinuxAlphaSystemBuilder, BaseFSSwitcheroo): 96 """Uniprocessor Alpha system prepared for CPU switching""" 97 98 def __init__(self, **kwargs): 99 BaseFSSwitcheroo.__init__(self, **kwargs) 100 LinuxAlphaSystemBuilder.__init__(self) |
|