Does my application work in Shadow? #1899
-
|
I want to run my application in Shadow, but it doesn't seem to be working correctly. What could be wrong and how do I get started trying to understand the issues? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Shadow works by intercepting system calls and reimplementing them in a simulated environment. So far the Shadow dev team has focused on getting the syscalls used by Tor working well, but your application may be using unsupported syscalls and/or some unsupported aspects of the currently supported syscalls. There are two ways to get some hints about what could be failing when running your app in Shadow:
Feel free to open a discussion if you notice some missing system calls that you think are important to add! |
Beta Was this translation helpful? Give feedback.
Shadow works by intercepting system calls and reimplementing them in a simulated environment. So far the Shadow dev team has focused on getting the syscalls used by Tor working well, but your application may be using unsupported syscalls and/or some unsupported aspects of the currently supported syscalls.
There are two ways to get some hints about what could be failing when running your app in Shadow:
shadow.logfile (format explained here) that contains the following string: "Detected unsupported syscall”…