From: hermet Date: Wed, 5 Oct 2011 11:13:06 +0000 (+0000) Subject: elementary/exmaples - fixed typo X-Git-Tag: REL_F_I9500_20120323_1~17^2~1699 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ea867f2ae30c9950dd9d580deef373ea528f0508;p=framework%2Fuifw%2Felementary.git elementary/exmaples - fixed typo git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@63838 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/examples/efl_thread_4.c b/src/examples/efl_thread_4.c index b3fd4fd..2eee3b7 100644 --- a/src/examples/efl_thread_4.c +++ b/src/examples/efl_thread_4.c @@ -40,7 +40,7 @@ my_thread_run(void *arg) // and sleep and loop usleep(1000); t += 0.02; - // in case someone has asked us to cancel - then cacnel this loop + // in case someone has asked us to cancel - then cancel this loop // co-operatively (cancelling is co-operative) pthread_mutex_lock(&th_lock); do_exit = th_exit; diff --git a/src/examples/efl_thread_5.c b/src/examples/efl_thread_5.c index 0edeeee..7b3db3a 100644 --- a/src/examples/efl_thread_5.c +++ b/src/examples/efl_thread_5.c @@ -33,7 +33,7 @@ th_do(void *data, Ecore_Thread *th) // and sleep and loop usleep(1000); t += 0.02; - // in case someone has asked us to cancel - then cacnel this loop + // in case someone has asked us to cancel - then cancel this loop // co-operatively (cancelling is co-operative) if (ecore_thread_check(th)) break; }