[Title] remove qemu thread in launching java skin
authorSon Hyunjun <hj79.son@samsung.com>
Sat, 17 Mar 2012 16:57:07 +0000 (01:57 +0900)
committerSon Hyunjun <hj79.son@samsung.com>
Sat, 17 Mar 2012 16:57:07 +0000 (01:57 +0900)
[Type] Bugfix
[Module]
[Priority] Major
[CQ#]
[Redmine#]
[Problem] Booting timing issue
[Cause]
[Solution]

tizen/src/skin/maruskin_client.c

index 12e21686e9c2eff9ad67b7f0f4983bec2f38dd00..2d7345bc511b74ef8970de45d5c5d358c8f563a1 100644 (file)
@@ -34,8 +34,8 @@
 #include <unistd.h>
 #include "maruskin_client.h"
 #include "maruskin_server.h"
-#include "qemu-thread.h"
 #include "debug_ch.h"
+#include <pthread.h>
 
 #define SKIN_SERVER_READY_TIME 3 // second
 #define SKIN_SERVER_SLEEP_TIME 10 // milli second
@@ -100,7 +100,6 @@ static void* run_skin_client(void* arg)
 
 int start_skin_client(int argc, char* argv[])
 {
-    QemuThread qemu_thread;
     int count = 0;
     int skin_server_ready = 0;
 
@@ -133,17 +132,13 @@ int start_skin_client(int argc, char* argv[])
     skin_argc = argc;
     skin_argv = argv;
 
-    /*pthread_t thread_id;
+    pthread_t thread_id;
 
     if (0 != pthread_create(&thread_id, NULL, run_skin_client, NULL)) {
         ERR( "fail to create skin_client pthread.\n" );
         return -1;
     }
 
-    return 1;*/
-
-    qemu_thread_create( &qemu_thread, run_skin_client, NULL );
-
     return 1;
 }