MCPcopy Create free account
hub / github.com/CloudOrc/SolidUI / kernel

Function kernel

solidui/cli/kernel.py:54–65  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

52@click.command()
53@with_appcontext
54def kernel() -> None:
55 kernel_program_process = Process(target=run_kernel_program)
56 try:
57 kernel_program_process.start()
58 print_banner()
59 kernel_program_process.join()
60 except DAOException:
61 print("Terminating processes...")
62 cleanup_kernel_program()
63 kernel_program_process.terminate()
64 kernel_program_process.join()
65 print("Processes terminated.")

Callers

nothing calls this directly

Calls 2

cleanup_kernel_programFunction · 0.90
print_bannerFunction · 0.85

Tested by

no test coverage detected