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

crit: update protobuf bindings #198

Merged
merged 1 commit into from
Jan 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions crit/images/apparmor/apparmor.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crit/images/autofs/autofs.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crit/images/binfmt-misc/binfmt-misc.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crit/images/bpfmap-data/bpfmap-data.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crit/images/bpfmap-file/bpfmap-file.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crit/images/cgroup/cgroup.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crit/images/core-aarch64/core-aarch64.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crit/images/core-arm/core-arm.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 23 additions & 0 deletions crit/images/core-loongarch64.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
// SPDX-License-Identifier: MIT

syntax = "proto2";

import "opts.proto";

message user_loongarch64_gpregs_entry {
repeated uint64 regs = 1;
required uint64 pc = 2;
}

message user_loongarch64_fpregs_entry {
repeated uint64 regs = 1;
required uint64 fcc = 2;
required uint32 fcsr = 3;
}

message thread_info_loongarch64 {
required uint64 clear_tid_addr = 1[(criu).hex = true];
required uint64 tls = 2;
required user_loongarch64_gpregs_entry gpregs = 3[(criu).hex = true];
required user_loongarch64_fpregs_entry fpregs = 4[(criu).hex = true];
}
Loading
Loading