Xuejun Yang
Xuejun Yang
When a signal handler is installed with `SA_RESTART`, the kernel is responsible for restarting an operation that was interrupted by the corresponding signal. For details, checkout "Interruption of system calls...
In the [document](https://github.com/deislabs/mystikos/blob/main/doc/sign-package.md) it says: > HostEnvironmentVariables | A list of environment variables that can be imported from the insecure host Without an explicit entry in config.json that's measured, we...
According to Linux man page: > POSIX.1-2001 says: "The only portable use of mknod() is to create a FIFO-special file. If mode is not S_IFIFO or dev is not 0,...
The test pipeline implementation does not have artifacts for Azure DevOps statistic support, a.k.a Publish Test Results task.
We need this because the multi-memory-region implementation has very fragile support for debugger. The test should ensure breakpoints in application and myst runtime (kernel + target + enc) can be...
We should support M:N mapping from target threads to user threads in the kernel. Target threads are from underlying platforms, in the case of SGX, it would be ethreads. In...
The target interface (between the kernel and target) employs tcalls, which are defined as follows. ``` long tcall(long n, long params[6]); ``` Consider formalizing this API as an interface in...