mirror of
https://github.com/clearlinux/graphene.git
synced 2026-08-29 06:15:42 +00:00
7108de9534
This example shows how to write manifests for multi-process applications and highlights the trick of breaking an endless loop of SGX trusted children by using symlinks. This example also stresses the FS checkpointing system of Graphene.
6 lines
141 B
Python
6 lines
141 B
Python
#!/usr/bin/env python3
|
|
|
|
import os
|
|
RESULT = os.system('python3 scripts/helloworld.py')
|
|
print('exit code of child process: {}'.format(RESULT))
|