* when OOM happens.
* Application should register SIGTERM handler and silently free every critical resource and exit.
*/
-void CDrApp::_onSigtermHanlder(int signum)
+void CDrApp::_onSigtermHandler(int signum)
{
/* do something for signal handling */
WINFO("SIGTERM CDrApp ");
bool CDrApp::onCreate()
{
/* registering sigterm */
- if (signal(SIGTERM, CDrApp::_onSigtermHanlder) == SIG_IGN) {
+ if (signal(SIGTERM, CDrApp::_onSigtermHandler) == SIG_IGN) {
WINFO("SIG_IGN SIGTERM");
signal(SIGTERM, SIG_IGN);
}
virtual void onResume();
private:
- static void _onSigtermHanlder(int signum);
+ static void _onSigtermHandler(int signum);
static Eina_Bool onCallerDestroy(void *data, int nType, void *pEvent);
void _getAppControlRequest(app_control_h request);
static void _onRotateWin(void *data, Evas_Object * obj, void *event_info);
WLEAVE();
}
-// detach swallow content from parent and then destory Control object
+// detach swallow content from parent and then destroy Control object
// use this method to unset an evasObject from layout
void CDrControlManager::detach(Evas_Object * parent, const char *position, bool isSwallow2Parent)
{