macros rename

This commit is contained in:
2022-05-11 16:49:33 +03:00
parent fa19ad1093
commit 0897a8369f
20 changed files with 76 additions and 76 deletions

View File

@@ -58,11 +58,11 @@ public:
};
BINARY_STREAM_STORE(PIIntrospectionThreads::ThreadInfo) {
BINARY_STREAM_WRITE(PIIntrospectionThreads::ThreadInfo) {
s << v.classname << v.name << v.id << v.state << v.priority << v.delay << v.run_us << v.run_count;
return s;
}
BINARY_STREAM_RESTORE(PIIntrospectionThreads::ThreadInfo) {
BINARY_STREAM_READ(PIIntrospectionThreads::ThreadInfo) {
s >> v.classname >> v.name >> v.id >> v.state >> v.priority >> v.delay >> v.run_us >> v.run_count;
return s;
}