File tree 2 files changed +7
-5
lines changed
src/app/clusters/icd-management-server
2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 98
98
#include < app/clusters/device-energy-management-server/DeviceEnergyManagementTestEventTriggerHandler.h>
99
99
#endif
100
100
#if CHIP_CONFIG_ENABLE_ICD_SERVER
101
- #include < app/icd/server/ICDManager.h>
101
+ #include < app/icd/server/ICDManager.h> // nogncheck
102
102
#endif
103
103
#include < app/TestEventTriggerDelegate.h>
104
104
@@ -722,9 +722,9 @@ void ChipLinuxAppMainLoop(AppMainLoopImplementation * impl)
722
722
signal (SIGTERM, StopSignalHandler);
723
723
// NOLINTEND(bugprone-signal-handler)
724
724
#else
725
- struct sigaction sa = {};
726
- sa.sa_handler = StopSignalHandler;
727
- sa.sa_flags = SA_RESETHAND;
725
+ struct sigaction sa = {};
726
+ sa.sa_handler = StopSignalHandler;
727
+ sa.sa_flags = SA_RESETHAND;
728
728
sigaction (SIGINT, &sa, nullptr );
729
729
sigaction (SIGTERM, &sa, nullptr );
730
730
#endif
Original file line number Diff line number Diff line change 25
25
#include < app-common/zap-generated/ids/Clusters.h>
26
26
#include < app/AttributeAccessInterface.h>
27
27
#include < app/AttributeAccessInterfaceRegistry.h>
28
- #include < app/icd/server/ICDNotifier.h>
28
+ #if CHIP_CONFIG_ENABLE_ICD_CIP
29
+ #include < app/icd/server/ICDNotifier.h> // nogncheck
30
+ #endif
29
31
#include < app/server/Server.h>
30
32
#include < app/util/attribute-storage.h>
31
33
You can’t perform that action at this time.
0 commit comments