Files
gem5/src/mem/SharedMemoryServer.py
Bobby R. Bruce d11c40dcac misc: Run pre-commit run --all-files
This ensures `isort` is applied to all files in the repo.

Change-Id: Ib7ced1c924ef1639542bf0d1a01c5737f6ba43e9
2023-11-29 22:06:41 -08:00

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."
)