Remove sync call when connection close 41/115941/1 accepted/tizen/3.0/common/20170223.122206 accepted/tizen/3.0/ivi/20170223.084242 accepted/tizen/3.0/mobile/20170223.084155 accepted/tizen/3.0/tv/20170223.084207 accepted/tizen/3.0/wearable/20170223.084223 submit/tizen_3.0/20170222.070231
authorJeongmo Yang <jm80.yang@samsung.com>
Wed, 22 Feb 2017 06:37:59 +0000 (15:37 +0900)
committerJeongmo Yang <jm80.yang@samsung.com>
Wed, 22 Feb 2017 06:37:59 +0000 (15:37 +0900)
It can waste too much time if file operation is working on target,
So, application could be crashed with ANR by watchdog.

[Version] 0.1.52
[Profile] Common
[Issue Type] Update
[Dependency module] N/A
[Test] [M(T) - Boot=(OK), sdb=(OK), Home=(OK), Touch=(OK), Version=]

Change-Id: I2eccd256a0766ffc07925ff13364d9e864e27a7d
Signed-off-by: Jeongmo Yang <jm80.yang@samsung.com>
packaging/mused.spec
src/muse_core.c

index 15721f2..68d160d 100644 (file)
@@ -1,6 +1,6 @@
 Name:       mused
 Summary:    A Multimedia Daemon in Tizen Native API
-Version:    0.1.51
+Version:    0.1.52
 Release:    0
 Group:      System/Libraries
 License:    Apache-2.0
index 8ae1445..5e0ed4c 100644 (file)
@@ -570,7 +570,6 @@ void muse_core_connection_close(int sock_fd)
                LOGE("[%d] failed to close %s", sock_fd, err_msg);
        }
 
-       sync();
        LOGI("[%d] connection close", sock_fd);
 }