Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Codegen: convert Arc<Box<T>> to Arc<T> #235

Merged
merged 2 commits into from
Sep 25, 2024
Merged

Commits on Sep 9, 2024

  1. Codegen: convert Arc<Box<T>> to Arc<T>

    This commit changes the generated ttrpc server from Arc<Box<T>>
    to Arc<T>. This helps the type conversion and also avoids extra runtime
    cost caused by double pointer.
    
    Fixes containerd#234
    
    Signed-off-by: Xynnn007 <[email protected]>
    Xynnn007 committed Sep 9, 2024
    Configuration menu
    Copy the full SHA
    1f2a266 View commit details
    Browse the repository at this point in the history

Commits on Sep 25, 2024

  1. example: update to match new ttrpc-compiler

    update for commit 1f2a26
    
    Signed-off-by: Tim Zhang <[email protected]>
    Tim-Zhang committed Sep 25, 2024
    Configuration menu
    Copy the full SHA
    444a490 View commit details
    Browse the repository at this point in the history