mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-01-22 18:05:10 +00:00
23 lines
567 B
Protocol Buffer
Executable file
23 lines
567 B
Protocol Buffer
Executable file
// 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];
|
|
}
|