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, a symbol table reserves 2MiB space to store symbols (e.g. function names) of the kernel. Because symbols in Rust tend to be lengthy, they are truncated to 55 characters.
This issue aims to implement a simple symbol table compression to:
Decrease the kernel image size.
Print the whole symbol name (avoid truncating).
The text was updated successfully, but these errors were encountered:
Currently, a symbol table reserves 2MiB space to store symbols (e.g. function names) of the kernel. Because symbols in Rust tend to be lengthy, they are truncated to 55 characters.
This issue aims to implement a simple symbol table compression to:
The text was updated successfully, but these errors were encountered: