Languages

Menu
Sites
Language
checking Logcat Message

the Logcat 2 message are....

 

Tizen::Base::Runtime         static Tizen::Base::Runtime::_EventManager* Tizen::Base::Runtime::_EventManager::GetCurrentEventManager() > This is not OSP thread

and

Tizen::Io       result Tizen::Io::_DirEnumeratorImpl::MoveNext()(143) > [E_END_OF_FILE] End of directory entries

 

 

i hava no idea..

 

 

 

Edited by: Kim YoungSu on 28 Nov, 2013

Responses

2 Replies
muditha murthy

which is this API GetCurrentEventManager i could not find any such in help docs.

John Re Mugar

It may be caused by the change of ID of the main form in Native UI builder.

Are you using Native UI builder?

I also experienced it recently and tried to find the cause.
By default, the UI builder makes a main form with an ID of IDL_FORM
I renamed it to ID_FORM and replaced all its instances.
I thought it was okay to do so, disregarding the comment that says, "This is automatically created by UI builder,

do not change by hand!"
Unfortunately, that error in the log came up.

"..._EventManager::GetCurrentEventManager() > This is not OSP thread"

In my case, this line means that the app cannot proceed with the main thread which is the OSP

beause it cannot access the IDL_FORM.xml which is explained by the next error which is

"...MoveNext()(143) > [E_END_OF_FILE] End of directory entries"

It tries to find IDL_FORM.xml but fails because I already renamed it to ID_FORM.xml, and returns an error.

It would have been tedious for me to change all ID_FORM back to IDL_FORM and its instances so
I deleted the project and started again. I did not rename the generated IDs of the UI builder anymore. It works now.
I hope this helps.