Skip to content
Snippets Groups Projects
Commit 69b513f6 authored by Grzegorz Kowalski's avatar Grzegorz Kowalski
Browse files

E3-1638: Remove --realtime iocsh argument

parent cf8defdb
No related branches found
No related tags found
1 merge request!38E3-1638: Remove --realtime iocsh argument
Pipeline #199797 passed
......@@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
* Fix truncated errorlog messages
* Remove `--realtime` option from `iocsh`
## [5.1.0]
......
......@@ -21,7 +21,6 @@ def iocsh(
command: List[str],
database: List[Path],
no_init: bool,
realtime: bool,
gdb: str,
valgrind: str,
debug: bool,
......@@ -83,9 +82,6 @@ def iocsh(
supp_file = os.path.abspath(os.path.dirname(__file__)) + "/iocsh_epics.supp"
non_optional = ["--suppressions=" + supp_file]
cmd = ["valgrind"] + non_optional + valgrind.split(" ") + cmd
elif realtime:
os.environ["LD_BIND_NOW"] = str(1)
cmd = "chrt --fifo 1".split(" ") + cmd
logging.debug(f"Running command `{' '.join(cmd)}`")
try:
......@@ -137,7 +133,6 @@ def generate_parser() -> argparse.ArgumentParser:
)
mutex_group_modifiers = parser.add_mutually_exclusive_group()
mutex_group_modifiers.add_argument("-rt", "--realtime", action="store_true")
mutex_group_modifiers.add_argument(
"-dg",
"--gdb",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment