forked from M-Labs/artiq
core: Add legacy_parallel
Signed-off-by: David Mak <csdavidmak@ust.hk>
This commit is contained in:
parent
f3655aa084
commit
4fa0419c82
|
@ -18,7 +18,7 @@ __all__ = [
|
||||||
"print_rpc",
|
"print_rpc",
|
||||||
"Option", "Some", "none", "UnwrapNoneError",
|
"Option", "Some", "none", "UnwrapNoneError",
|
||||||
"set_time_manager",
|
"set_time_manager",
|
||||||
"parallel", "sequential",
|
"parallel", "legacy_parallel", "sequential",
|
||||||
"delay_mu", "now_mu", "at_mu",
|
"delay_mu", "now_mu", "at_mu",
|
||||||
"set_watchdog_factory", "watchdog", "TerminationRequested",
|
"set_watchdog_factory", "watchdog", "TerminationRequested",
|
||||||
]
|
]
|
||||||
|
@ -211,6 +211,7 @@ class _SequentialContextManager:
|
||||||
_time_manager.exit()
|
_time_manager.exit()
|
||||||
|
|
||||||
parallel = _ParallelContextManager()
|
parallel = _ParallelContextManager()
|
||||||
|
legacy_parallel = _ParallelContextManager()
|
||||||
sequential = _SequentialContextManager()
|
sequential = _SequentialContextManager()
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue