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
Currently, we copy data between clients and runtime since the runtime is in a different address space. However, if we intercept mmap/sbrk and put all data in SHM, this will allow applications to avoid the data copy, particularly for GET.
Each process will have to register its private allocator with the runtime. The runtime will have to store a mapping between process ID and allocator.
A well-formed version will have to have a wreaper thread to unregister dead processes automatically.
The text was updated successfully, but these errors were encountered:
Currently, we copy data between clients and runtime since the runtime is in a different address space. However, if we intercept mmap/sbrk and put all data in SHM, this will allow applications to avoid the data copy, particularly for GET.
Each process will have to register its private allocator with the runtime. The runtime will have to store a mapping between process ID and allocator.
A well-formed version will have to have a wreaper thread to unregister dead processes automatically.
The text was updated successfully, but these errors were encountered: