Merge branch 'failpanda'
Conflicts: src/core/comm/DatabaseCampaignMessage.proto.in src/core/cpn/CMakeLists.txt src/core/cpn/DatabaseCampaign.cc src/core/sal/ConcreteCPU.hpp src/core/sal/SALConfig.hpp src/core/util/CMakeLists.txt Change-Id: Id86b93d0e3ea4d9963fcc88605eec0603575ec83
This commit is contained in:
24
src/core/comm/DatabaseCampaignMessage.proto.in
Normal file
24
src/core/comm/DatabaseCampaignMessage.proto.in
Normal file
@ -0,0 +1,24 @@
|
||||
import "google/protobuf/descriptor.proto";
|
||||
extend google.protobuf.FieldOptions {
|
||||
optional bool sql_primary_key = 32382 [ default = false];
|
||||
optional bool sql_ignore = 32383 [ default = false];
|
||||
}
|
||||
|
||||
import "@CONCRETE_INJECTION_POINT@";
|
||||
|
||||
message DatabaseCampaignMessage {
|
||||
required uint32 pilot_id = 1 [(sql_primary_key) = true];
|
||||
required uint32 variant_id = 2 [(sql_ignore) = true];
|
||||
required uint32 fspmethod_id = 3 [(sql_ignore) = true];
|
||||
|
||||
// ToDo: injection_instr can be deleted if all experiments switched to
|
||||
// using generic InjectionPointMessage
|
||||
required uint32 injection_instr = 4 [(sql_ignore) = true];
|
||||
optional uint32 injection_instr_absolute = 5 [(sql_ignore) = true];
|
||||
required uint32 data_address = 6 [(sql_ignore) = true];
|
||||
required uint32 data_width = 7 [(sql_ignore) = true];
|
||||
required string variant = 8 [(sql_ignore) = true];
|
||||
required string benchmark = 9 [(sql_ignore) = true];
|
||||
|
||||
required InjectionPointMessage injection_point = 10 [(sql_ignore) = true];
|
||||
}
|
||||
Reference in New Issue
Block a user