This ensures `isort` is applied to all files in the repo. Change-Id: Ib7ced1c924ef1639542bf0d1a01c5737f6ba43e9
18 lines
497 B
Python
18 lines
497 B
Python
from m5.params import Param
|
|
from m5.proxy import Parent
|
|
from m5.SimObject import SimObject
|
|
|
|
|
|
class SharedMemoryServer(SimObject):
|
|
type = "SharedMemoryServer"
|
|
cxx_header = "mem/shared_memory_server.hh"
|
|
cxx_class = "gem5::memory::SharedMemoryServer"
|
|
|
|
system = Param.System(
|
|
Parent.any,
|
|
"The system where the target shared memory is actually stored.",
|
|
)
|
|
server_path = Param.String(
|
|
"The unix socket path where the server should be running upon."
|
|
)
|