elementary/exmaples - fixed typo

SVN revision: 63838
This commit is contained in:
ChunEon Park 2011-10-05 11:13:06 +00:00
parent 9eb246a733
commit 37866acb06
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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;
}