From 0c16f3c7f6148217dd79db6bccc25d755a342285 Mon Sep 17 00:00:00 2001 From: "kibak.yoon" Date: Wed, 2 Mar 2016 22:49:00 +0900 Subject: [PATCH] sensord: clean up boiler plates Change-Id: I4740cd857c6b2b8c2f53bd0a14fa750c23c69de2 Signed-off-by: kibak.yoon --- src/client/client.cpp | 4 ++-- src/client/client_common.cpp | 4 ++-- src/client/client_common.h | 2 +- src/client/command_channel.cpp | 4 ++-- src/client/command_channel.h | 4 ++-- src/client/reg_event_info.h | 4 ++-- src/client/sensor_client_info.cpp | 4 ++-- src/client/sensor_client_info.h | 4 ++-- src/client/sensor_event_listener.cpp | 2 +- src/client/sensor_event_listener.h | 4 ++-- src/client/sensor_handle_info.cpp | 4 ++-- src/client/sensor_handle_info.h | 4 ++-- src/client/sensor_info_manager.cpp | 4 ++-- src/client/sensor_info_manager.h | 4 ++-- src/server/client_info_manager.cpp | 4 ++-- src/server/client_info_manager.h | 4 ++-- src/server/client_sensor_record.cpp | 4 ++-- src/server/client_sensor_record.h | 4 ++-- src/server/device_config.cpp | 2 +- src/server/device_config.h | 4 ++-- src/server/physical_sensor.cpp | 2 +- src/server/physical_sensor.h | 2 +- src/server/plugin_info_list.cpp | 4 ++-- src/server/plugin_info_list.h | 4 ++-- src/server/sensor_base.cpp | 2 +- src/server/sensor_base.h | 2 +- src/server/sensor_event_dispatcher.cpp | 4 ++-- src/server/sensor_event_dispatcher.h | 4 ++-- src/server/sensor_event_poller.cpp | 2 +- src/server/sensor_event_poller.h | 2 +- src/server/sensor_event_queue.cpp | 4 ++-- src/server/sensor_event_queue.h | 4 ++-- src/server/sensor_loader.cpp | 4 ++-- src/server/sensor_loader.h | 4 ++-- src/server/sensor_usage.cpp | 4 ++-- src/server/sensor_usage.h | 4 ++-- src/server/virtual_sensor.cpp | 2 +- src/server/virtual_sensor.h | 2 +- src/server/virtual_sensor_config.cpp | 2 +- src/server/virtual_sensor_config.h | 2 +- src/server/worker_thread.cpp | 2 +- src/server/worker_thread.h | 2 +- src/shared/cbase_lock.cpp | 4 ++-- src/shared/cbase_lock.h | 4 ++-- src/shared/cmutex.cpp | 6 +++--- src/shared/cmutex.h | 4 ++-- src/shared/command_common.h | 4 ++-- src/shared/cpacket.cpp | 4 ++-- src/shared/cpacket.h | 4 ++-- src/shared/csocket.cpp | 4 ++-- src/shared/csocket.h | 4 ++-- src/shared/poller.cpp | 4 ++-- src/shared/poller.h | 4 ++-- src/shared/sensor_common.h | 2 +- src/shared/sensor_deprecated.h | 4 ++-- src/shared/sensor_info.cpp | 4 ++-- src/shared/sensor_info.h | 4 ++-- src/shared/sensor_internal.h | 2 +- src/shared/sensor_internal_deprecated.h | 2 +- src/shared/sensor_log.cpp | 4 ++-- src/shared/sensor_log.h | 4 ++-- src/shared/sensor_types.h | 4 ++-- 62 files changed, 107 insertions(+), 107 deletions(-) diff --git a/src/client/client.cpp b/src/client/client.cpp index 81d00d0..6e1a416 100644 --- a/src/client/client.cpp +++ b/src/client/client.cpp @@ -1,7 +1,7 @@ /* - * libsensord + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2013 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/client/client_common.cpp b/src/client/client_common.cpp index 344af09..19831a2 100644 --- a/src/client/client_common.cpp +++ b/src/client/client_common.cpp @@ -1,7 +1,7 @@ /* - * libsensord + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2013 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/client/client_common.h b/src/client/client_common.h index 1d5938d..532cb8d 100644 --- a/src/client/client_common.h +++ b/src/client/client_common.h @@ -1,5 +1,5 @@ /* - * libsensord + * sensord * * Copyright (c) 2014 Samsung Electronics Co., Ltd. * diff --git a/src/client/command_channel.cpp b/src/client/command_channel.cpp index cdb8fe9..a034e0b 100644 --- a/src/client/command_channel.cpp +++ b/src/client/command_channel.cpp @@ -1,7 +1,7 @@ /* - * libsensord + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2013 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/client/command_channel.h b/src/client/command_channel.h index f205106..63d5ceb 100644 --- a/src/client/command_channel.h +++ b/src/client/command_channel.h @@ -1,7 +1,7 @@ /* - * libsensord + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2013 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/client/reg_event_info.h b/src/client/reg_event_info.h index 18e1335..cf2fd76 100644 --- a/src/client/reg_event_info.h +++ b/src/client/reg_event_info.h @@ -1,7 +1,7 @@ /* - * libsensord + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2013 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/client/sensor_client_info.cpp b/src/client/sensor_client_info.cpp index 30dfab2..3ffc120 100644 --- a/src/client/sensor_client_info.cpp +++ b/src/client/sensor_client_info.cpp @@ -1,7 +1,7 @@ /* - * libsensord + * sensord * - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/client/sensor_client_info.h b/src/client/sensor_client_info.h index b408356..e3869d2 100644 --- a/src/client/sensor_client_info.h +++ b/src/client/sensor_client_info.h @@ -1,7 +1,7 @@ /* - * libsensord + * sensord * - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/client/sensor_event_listener.cpp b/src/client/sensor_event_listener.cpp index 4550da6..568d8cb 100644 --- a/src/client/sensor_event_listener.cpp +++ b/src/client/sensor_event_listener.cpp @@ -1,5 +1,5 @@ /* - * libsensord + * sensord * * Copyright (c) 2014 Samsung Electronics Co., Ltd. * diff --git a/src/client/sensor_event_listener.h b/src/client/sensor_event_listener.h index d9fc2f8..aaa29a6 100644 --- a/src/client/sensor_event_listener.h +++ b/src/client/sensor_event_listener.h @@ -1,7 +1,7 @@ /* - * libsensord + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2013 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/client/sensor_handle_info.cpp b/src/client/sensor_handle_info.cpp index 1be96c0..6d9e429 100644 --- a/src/client/sensor_handle_info.cpp +++ b/src/client/sensor_handle_info.cpp @@ -1,7 +1,7 @@ /* - * libsensord + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2013 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/client/sensor_handle_info.h b/src/client/sensor_handle_info.h index d9b2ec9..c72fb00 100644 --- a/src/client/sensor_handle_info.h +++ b/src/client/sensor_handle_info.h @@ -1,7 +1,7 @@ /* - * libsensord + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2013 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/client/sensor_info_manager.cpp b/src/client/sensor_info_manager.cpp index 4a427f2..530eddd 100644 --- a/src/client/sensor_info_manager.cpp +++ b/src/client/sensor_info_manager.cpp @@ -1,7 +1,7 @@ /* - * libsensord + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2013 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/client/sensor_info_manager.h b/src/client/sensor_info_manager.h index 084b5a3..e36acc9 100644 --- a/src/client/sensor_info_manager.h +++ b/src/client/sensor_info_manager.h @@ -1,7 +1,7 @@ /* - * libsensord + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2013 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/client_info_manager.cpp b/src/server/client_info_manager.cpp index 6c84889..068778b 100644 --- a/src/server/client_info_manager.cpp +++ b/src/server/client_info_manager.cpp @@ -1,7 +1,7 @@ /* - * libsensord-share + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2013 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/client_info_manager.h b/src/server/client_info_manager.h index bee9995..7a9dde6 100644 --- a/src/server/client_info_manager.h +++ b/src/server/client_info_manager.h @@ -1,7 +1,7 @@ /* - * libsensord-share + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2013 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/client_sensor_record.cpp b/src/server/client_sensor_record.cpp index fbc4ed8..c7ee8e1 100644 --- a/src/server/client_sensor_record.cpp +++ b/src/server/client_sensor_record.cpp @@ -1,7 +1,7 @@ /* - * libsensord-share + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2013 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/client_sensor_record.h b/src/server/client_sensor_record.h index cad13f4..ac3f3db 100644 --- a/src/server/client_sensor_record.h +++ b/src/server/client_sensor_record.h @@ -1,7 +1,7 @@ /* - * libsensord-share + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2013 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/device_config.cpp b/src/server/device_config.cpp index 3497ca6..10239f1 100644 --- a/src/server/device_config.cpp +++ b/src/server/device_config.cpp @@ -1,5 +1,5 @@ /* - * libsensord-share + * sensord * * Copyright (c) 2014 Samsung Electronics Co., Ltd. * diff --git a/src/server/device_config.h b/src/server/device_config.h index a5f2339..3b85f2f 100644 --- a/src/server/device_config.h +++ b/src/server/device_config.h @@ -1,7 +1,7 @@ /* - * libsensord-share + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/physical_sensor.cpp b/src/server/physical_sensor.cpp index 0096e8e..f631265 100644 --- a/src/server/physical_sensor.cpp +++ b/src/server/physical_sensor.cpp @@ -1,5 +1,5 @@ /* - * libsensord-share + * sensord * * Copyright (c) 2014 Samsung Electronics Co., Ltd. * diff --git a/src/server/physical_sensor.h b/src/server/physical_sensor.h index 33378f6..a35edc8 100644 --- a/src/server/physical_sensor.h +++ b/src/server/physical_sensor.h @@ -1,5 +1,5 @@ /* - * libsensord-share + * sensord * * Copyright (c) 2014 Samsung Electronics Co., Ltd. * diff --git a/src/server/plugin_info_list.cpp b/src/server/plugin_info_list.cpp index 0de1b21..db36f04 100644 --- a/src/server/plugin_info_list.cpp +++ b/src/server/plugin_info_list.cpp @@ -1,7 +1,7 @@ /* - * libsensord-share + * sensord * - * Copyright (c) 2013 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/plugin_info_list.h b/src/server/plugin_info_list.h index b8ee5ea..e8b034e 100644 --- a/src/server/plugin_info_list.h +++ b/src/server/plugin_info_list.h @@ -1,7 +1,7 @@ /* - * libsensord-share + * sensord * - * Copyright (c) 2013 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/sensor_base.cpp b/src/server/sensor_base.cpp index 654ac97..4aaacf6 100644 --- a/src/server/sensor_base.cpp +++ b/src/server/sensor_base.cpp @@ -1,5 +1,5 @@ /* - * libsensord-share + * sensord * * Copyright (c) 2014 Samsung Electronics Co., Ltd. * diff --git a/src/server/sensor_base.h b/src/server/sensor_base.h index 144de20..072c3f2 100644 --- a/src/server/sensor_base.h +++ b/src/server/sensor_base.h @@ -1,5 +1,5 @@ /* - * libsensord-share + * sensord * * Copyright (c) 2014 Samsung Electronics Co., Ltd. * diff --git a/src/server/sensor_event_dispatcher.cpp b/src/server/sensor_event_dispatcher.cpp index d2deaa2..564ab70 100644 --- a/src/server/sensor_event_dispatcher.cpp +++ b/src/server/sensor_event_dispatcher.cpp @@ -1,7 +1,7 @@ /* - * libsensord-share + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2013 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/sensor_event_dispatcher.h b/src/server/sensor_event_dispatcher.h index bc23f5c..b597816 100644 --- a/src/server/sensor_event_dispatcher.h +++ b/src/server/sensor_event_dispatcher.h @@ -1,7 +1,7 @@ /* - * libsensord-share + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2013 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/sensor_event_poller.cpp b/src/server/sensor_event_poller.cpp index 1d5e69b..97fd19a 100644 --- a/src/server/sensor_event_poller.cpp +++ b/src/server/sensor_event_poller.cpp @@ -1,5 +1,5 @@ /* - * libsensord-share + * sensord * * Copyright (c) 2016 Samsung Electronics Co., Ltd. * diff --git a/src/server/sensor_event_poller.h b/src/server/sensor_event_poller.h index 4267b1e..03e5a59 100644 --- a/src/server/sensor_event_poller.h +++ b/src/server/sensor_event_poller.h @@ -1,5 +1,5 @@ /* - * libsensord-share + * sensord * * Copyright (c) 2016 Samsung Electronics Co., Ltd. * diff --git a/src/server/sensor_event_queue.cpp b/src/server/sensor_event_queue.cpp index 27865ea..9378c8d 100644 --- a/src/server/sensor_event_queue.cpp +++ b/src/server/sensor_event_queue.cpp @@ -1,7 +1,7 @@ /* - * libsensord-share + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2013 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/sensor_event_queue.h b/src/server/sensor_event_queue.h index ba9decb..df33035 100644 --- a/src/server/sensor_event_queue.h +++ b/src/server/sensor_event_queue.h @@ -1,7 +1,7 @@ /* - * libsensord-share + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2013 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/sensor_loader.cpp b/src/server/sensor_loader.cpp index 95dfd6c..74448da 100644 --- a/src/server/sensor_loader.cpp +++ b/src/server/sensor_loader.cpp @@ -1,7 +1,7 @@ /* - * libsensord-share + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2013 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/sensor_loader.h b/src/server/sensor_loader.h index 9585105..19997d7 100644 --- a/src/server/sensor_loader.h +++ b/src/server/sensor_loader.h @@ -1,7 +1,7 @@ /* - * libsensord-share + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2013 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/sensor_usage.cpp b/src/server/sensor_usage.cpp index 08963ce..6041913 100644 --- a/src/server/sensor_usage.cpp +++ b/src/server/sensor_usage.cpp @@ -1,7 +1,7 @@ /* - * libsensord-share + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2013 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/sensor_usage.h b/src/server/sensor_usage.h index 59165e4..f13018d 100644 --- a/src/server/sensor_usage.h +++ b/src/server/sensor_usage.h @@ -1,7 +1,7 @@ /* - * libsensord-share + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2013 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/virtual_sensor.cpp b/src/server/virtual_sensor.cpp index 232d7f1..fd03a49 100644 --- a/src/server/virtual_sensor.cpp +++ b/src/server/virtual_sensor.cpp @@ -1,5 +1,5 @@ /* - * libsensord-share + * sensord * * Copyright (c) 2014 Samsung Electronics Co., Ltd. * diff --git a/src/server/virtual_sensor.h b/src/server/virtual_sensor.h index 5ea14e3..270285b 100644 --- a/src/server/virtual_sensor.h +++ b/src/server/virtual_sensor.h @@ -1,5 +1,5 @@ /* - * libsensord-share + * sensord * * Copyright (c) 2014 Samsung Electronics Co., Ltd. * diff --git a/src/server/virtual_sensor_config.cpp b/src/server/virtual_sensor_config.cpp index 4e30ba8..bc59fb7 100644 --- a/src/server/virtual_sensor_config.cpp +++ b/src/server/virtual_sensor_config.cpp @@ -1,5 +1,5 @@ /* - * libsensord-share + * sensord * * Copyright (c) 2014 Samsung Electronics Co., Ltd. * diff --git a/src/server/virtual_sensor_config.h b/src/server/virtual_sensor_config.h index d9ed919..37d9fd7 100644 --- a/src/server/virtual_sensor_config.h +++ b/src/server/virtual_sensor_config.h @@ -1,5 +1,5 @@ /* - * libsensord-share + * sensord * * Copyright (c) 2014 Samsung Electronics Co., Ltd. * diff --git a/src/server/worker_thread.cpp b/src/server/worker_thread.cpp index 152cc19..afd188c 100644 --- a/src/server/worker_thread.cpp +++ b/src/server/worker_thread.cpp @@ -1,5 +1,5 @@ /* - * libsensord-share + * sensord * * Copyright (c) 2014 Samsung Electronics Co., Ltd. * diff --git a/src/server/worker_thread.h b/src/server/worker_thread.h index b12fed5..2f5acab 100644 --- a/src/server/worker_thread.h +++ b/src/server/worker_thread.h @@ -1,5 +1,5 @@ /* - * libsensord-share + * sensord * * Copyright (c) 2014 Samsung Electronics Co., Ltd. * diff --git a/src/shared/cbase_lock.cpp b/src/shared/cbase_lock.cpp index 2aec244..f30ce18 100644 --- a/src/shared/cbase_lock.cpp +++ b/src/shared/cbase_lock.cpp @@ -1,7 +1,7 @@ /* - * libsensord-share + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2013 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/shared/cbase_lock.h b/src/shared/cbase_lock.h index 5b82be2..5a6b5e5 100644 --- a/src/shared/cbase_lock.h +++ b/src/shared/cbase_lock.h @@ -1,7 +1,7 @@ /* - * libsensord-share + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2013 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/shared/cmutex.cpp b/src/shared/cmutex.cpp index d8ef7fe..a033061 100644 --- a/src/shared/cmutex.cpp +++ b/src/shared/cmutex.cpp @@ -1,7 +1,7 @@ /* - * libsensord-share + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2013 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -18,7 +18,7 @@ */ #include -#include "sensor_log.h" +#include cmutex::cmutex() { diff --git a/src/shared/cmutex.h b/src/shared/cmutex.h index 7537c7c..868500a 100644 --- a/src/shared/cmutex.h +++ b/src/shared/cmutex.h @@ -1,7 +1,7 @@ /* - * libsensord-share + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2013 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/shared/command_common.h b/src/shared/command_common.h index 6fa17b4..141c24c 100644 --- a/src/shared/command_common.h +++ b/src/shared/command_common.h @@ -1,7 +1,7 @@ /* - * libsensord-share + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/shared/cpacket.cpp b/src/shared/cpacket.cpp index a400b4e..fc908a4 100644 --- a/src/shared/cpacket.cpp +++ b/src/shared/cpacket.cpp @@ -1,7 +1,7 @@ /* - * libsensord-share + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2013 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/shared/cpacket.h b/src/shared/cpacket.h index 6cc69ec..6cf6317 100644 --- a/src/shared/cpacket.h +++ b/src/shared/cpacket.h @@ -1,7 +1,7 @@ /* - * libsensord-share + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2013 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/shared/csocket.cpp b/src/shared/csocket.cpp index b31cb0e..cf65aac 100644 --- a/src/shared/csocket.cpp +++ b/src/shared/csocket.cpp @@ -1,7 +1,7 @@ /* - * libsensord-share + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2013 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/shared/csocket.h b/src/shared/csocket.h index 81abac4..b538fe1 100644 --- a/src/shared/csocket.h +++ b/src/shared/csocket.h @@ -1,7 +1,7 @@ /* - * libsensord-share + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2013 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/shared/poller.cpp b/src/shared/poller.cpp index 50c1f18..b0180fe 100644 --- a/src/shared/poller.cpp +++ b/src/shared/poller.cpp @@ -1,7 +1,7 @@ /* - * libsensord + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2013 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/shared/poller.h b/src/shared/poller.h index 5f7e112..b43d491 100644 --- a/src/shared/poller.h +++ b/src/shared/poller.h @@ -1,7 +1,7 @@ /* - * libsensord + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2013 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/shared/sensor_common.h b/src/shared/sensor_common.h index abbb21c..de74ebb 100644 --- a/src/shared/sensor_common.h +++ b/src/shared/sensor_common.h @@ -1,5 +1,5 @@ /* - * libsensord-share + * sensord * * Copyright (c) 2014 Samsung Electronics Co., Ltd. * diff --git a/src/shared/sensor_deprecated.h b/src/shared/sensor_deprecated.h index bb80e6c..41b7945 100644 --- a/src/shared/sensor_deprecated.h +++ b/src/shared/sensor_deprecated.h @@ -1,7 +1,7 @@ /* - * libsensord + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/shared/sensor_info.cpp b/src/shared/sensor_info.cpp index 030b99e..394ee92 100644 --- a/src/shared/sensor_info.cpp +++ b/src/shared/sensor_info.cpp @@ -1,7 +1,7 @@ /* - * libsensord + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2013 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/shared/sensor_info.h b/src/shared/sensor_info.h index 536c6f9..6a7ab8b 100644 --- a/src/shared/sensor_info.h +++ b/src/shared/sensor_info.h @@ -1,7 +1,7 @@ /* - * libsensord + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2013 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/shared/sensor_internal.h b/src/shared/sensor_internal.h index d5b495f..c1a102b 100644 --- a/src/shared/sensor_internal.h +++ b/src/shared/sensor_internal.h @@ -1,5 +1,5 @@ /* - * libsensord + * sensord * * Copyright (c) 2014 Samsung Electronics Co., Ltd. * diff --git a/src/shared/sensor_internal_deprecated.h b/src/shared/sensor_internal_deprecated.h index a2c05bd..5116303 100644 --- a/src/shared/sensor_internal_deprecated.h +++ b/src/shared/sensor_internal_deprecated.h @@ -1,5 +1,5 @@ /* - * libsensord + * sensord * * Copyright (c) 2014 Samsung Electronics Co., Ltd. * diff --git a/src/shared/sensor_log.cpp b/src/shared/sensor_log.cpp index 98ccf20..d28ae63 100644 --- a/src/shared/sensor_log.cpp +++ b/src/shared/sensor_log.cpp @@ -1,7 +1,7 @@ /* - * libsensord-share + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2013 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/shared/sensor_log.h b/src/shared/sensor_log.h index c414264..9df8791 100644 --- a/src/shared/sensor_log.h +++ b/src/shared/sensor_log.h @@ -1,7 +1,7 @@ /* - * libsensord-share + * sensord * - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2013 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/shared/sensor_types.h b/src/shared/sensor_types.h index f364b87..57b20eb 100644 --- a/src/shared/sensor_types.h +++ b/src/shared/sensor_types.h @@ -1,7 +1,7 @@ /* - * libsensord-share + * sensord * - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. -- 2.7.4