You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
OMO: Operating system for Multichain Optimistic rollup with fraud proofs
A compatibility layer is added on the basis of OMO to act as a bridge between the system and the user's executable program (VM). It is compiled together with the user's executable program in the form of an SDK to shield the differences in system calls, memory allocation and other characteristics in various programming languages and application programs.
The text was updated successfully, but these errors were encountered:
When employing this approach, we are obliged to impose certain restrictions on the application, as this is tantamount to reconstructing an operating system. @steelgeek091 What's ur suggestion?
The glibc or other C runtime libraries are typically bundled with the operating system in most cases. For languages like C/C++/Rust, they use the compiler toolchain to link against the C runtime library during the compilation process.
Our work involves linking our own SDK as the C runtime library during the linking phase of the compilation process. Alternatively, we intercept and modify system call access during runtime.
Users typically rely on third-party libraries that also depend on the C runtime library. We can achieve the same functionality for these libraries as well.
These two approaches are applicable to different languages and will be chosen based on the specific scenario.
In summary, we will not require users to modify their way of accessing system calls.
OMO: Operating system for Multichain Optimistic rollup with fraud proofs
A compatibility layer is added on the basis of OMO to act as a bridge between the system and the user's executable program (VM). It is compiled together with the user's executable program in the form of an SDK to shield the differences in system calls, memory allocation and other characteristics in various programming languages and application programs.
The text was updated successfully, but these errors were encountered: