mirror of
https://github.com/nasa/trick.git
synced 2024-12-21 14:07:51 +00:00
10 lines
182 B
Python
10 lines
182 B
Python
|
|
||
|
def main():
|
||
|
trick.real_time_enable()
|
||
|
trick.itimer_enable()
|
||
|
trick.exec_set_thread_process_type(1, trick.PROCESS_TYPE_ASYNC_CHILD)
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
main()
|
||
|
|