Merge "Revert "Revert "Modify the packet size in transport protocol.""" into tizen_3.0
[sdk/target/sdbd.git] / src / transport_local.c
index dd145bd..cae3d04 100644 (file)
@@ -612,14 +612,6 @@ void local_init(int port)
 #else
         /* For the sdbd daemon in the system image we need to distinguish
          * between the device, and the emulator. */
-#if 0 /* tizen specific */
-        char is_qemu[PROPERTY_VALUE_MAX];
-        property_get("ro.kernel.qemu", is_qemu, "");
-        if (!strcmp(is_qemu, "1")) {
-            /* Running inside the emulator: use QEMUD pipe as the transport. */
-            func = qemu_socket_thread;
-        } else
-#endif
         {
             /* Running inside the device: use TCP socket as the transport. */
             func = server_socket_thread;