From 3622d695c041ea137b3d2103166bdd2c553b052e Mon Sep 17 00:00:00 2001 From: rtrimana Date: Mon, 19 Mar 2018 09:12:59 -0700 Subject: [PATCH] Adjusting Object IDs to the Java side. --- benchmarks/drivers/Cpp/LabRoom/Room_Skeleton.hpp | 2 +- benchmarks/drivers/Cpp/LifxLightBulb/LightBulb_Skeleton.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/benchmarks/drivers/Cpp/LabRoom/Room_Skeleton.hpp b/benchmarks/drivers/Cpp/LabRoom/Room_Skeleton.hpp index 715450c..5570778 100644 --- a/benchmarks/drivers/Cpp/LabRoom/Room_Skeleton.hpp +++ b/benchmarks/drivers/Cpp/LabRoom/Room_Skeleton.hpp @@ -21,7 +21,7 @@ class Room_Skeleton : public Room IoTRMIComm *rmiComm; char* methodBytes; int methodLen; - int objectId = 0; + int objectId = 4; static set set0Allowed; // Synchronization variables bool methodReceived = false; diff --git a/benchmarks/drivers/Cpp/LifxLightBulb/LightBulb_Skeleton.hpp b/benchmarks/drivers/Cpp/LifxLightBulb/LightBulb_Skeleton.hpp index 2a06e73..ab5f981 100644 --- a/benchmarks/drivers/Cpp/LifxLightBulb/LightBulb_Skeleton.hpp +++ b/benchmarks/drivers/Cpp/LifxLightBulb/LightBulb_Skeleton.hpp @@ -19,7 +19,7 @@ class LightBulb_Skeleton : public LightBulb IoTRMIComm *rmiComm; char* methodBytes; int methodLen; - int objectId = 0; + int objectId = 1; static set set0Allowed; // Synchronization variables bool methodReceived = false; -- 2.34.1