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
Given that I am planning on using all the mesabox utilities as built-ins for the shell, I thought I would use this issue to categorize any issues that come up.
One issue that I don't know how to solve until OOM can panic (instead of aborting) is that if one of the built-in utilities encounters an OOM error the entire shell will abort. Clearly, this is not intended behavior, so we should be careful with how much memory we allocate until OOM can panic (in which case we will just need to catch_unwind() the built-ins or something to make sure they don't crash the entire shell.
The text was updated successfully, but these errors were encountered:
Given that I am planning on using all the
mesabox
utilities as built-ins for the shell, I thought I would use this issue to categorize any issues that come up.One issue that I don't know how to solve until OOM can panic (instead of aborting) is that if one of the built-in utilities encounters an OOM error the entire shell will abort. Clearly, this is not intended behavior, so we should be careful with how much memory we allocate until OOM can panic (in which case we will just need to
catch_unwind()
the built-ins or something to make sure they don't crash the entire shell.The text was updated successfully, but these errors were encountered: