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
BPF syscall symbols service both Rust and C and different symbols are exported for each language which is not necessary and confusing
Proposed Solution
Consolidate the exported syscall symbols to a single exported symbol where possible.
For example, instead of exporting sol_log and sol_log_ just export `sol_log_' and point all languages to it.
This is a breaking change for existing programs that require all pre-compiled programs to be rebuilt and should go into the first public release that supports programs.
The text was updated successfully, but these errors were encountered:
Problem
BPF syscall symbols service both Rust and C and different symbols are exported for each language which is not necessary and confusing
Proposed Solution
Consolidate the exported syscall symbols to a single exported symbol where possible.
For example, instead of exporting
sol_log
andsol_log_
just export `sol_log_' and point all languages to it.This is a breaking change for existing programs that require all pre-compiled programs to be rebuilt and should go into the first public release that supports programs.
The text was updated successfully, but these errors were encountered: