summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>2017-12-15 14:36:30 +0900
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>2017-12-15 14:36:30 +0900
commit02737b1308ef62f0c12dd35b145bbd8148ec3385 (patch)
tree20c3e1022260093c32a15c2d28b46de9c08f91b2
parent5bd7beb53fc4e417759442d09ee657c21d177e82 (diff)
downloadefl-02737b1308ef62f0c12dd35b145bbd8148ec3385.tar.gz
ecore - unify comment style
-rw-r--r--src/lib/ecore/ecore_main.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/ecore/ecore_main.c b/src/lib/ecore/ecore_main.c
index 59631892e7..ed115abff9 100644
--- a/src/lib/ecore/ecore_main.c
+++ b/src/lib/ecore/ecore_main.c
@@ -560,7 +560,7 @@ _ecore_main_fdh_glib_mark_active(Eo *obj, Efl_Loop_Data *pd)
Ecore_Fd_Handler *fdh;
int ret = 0;
- /* call the prepare callback for all handlers */
+ // call the prepare callback for all handlers
EINA_INLIST_FOREACH(pd->fd_handlers, fdh)
{
if (fdh->delete_me) continue;
@@ -577,7 +577,7 @@ _ecore_main_fdh_glib_mark_active(Eo *obj, Efl_Loop_Data *pd)
return ret;
}
-/* like we are about to enter main_loop_select in _ecore_main_select */
+// like we are about to enter main_loop_select in _ecore_main_select
static gboolean
_ecore_main_gsource_prepare(GSource *source EINA_UNUSED,
gint *next_time)
@@ -871,7 +871,7 @@ _ecore_main_loop_setup(Eo *obj, Efl_Loop_Data *pd)
pd->epoll_pid = getpid();
- /* add polls on all our file descriptors */
+ // add polls on all our file descriptors
Ecore_Fd_Handler *fdh;
EINA_INLIST_FOREACH(pd->fd_handlers, fdh)
{
@@ -2382,7 +2382,7 @@ start_loop: //-*************************************************************
// no timers - spin
if (next_time < 0) action = _ecore_main_loop_spin_no_timers(obj, pd);
- /* timers - spin */
+ // timers - spin
else action = _ecore_main_loop_spin_timers(obj, pd);
if (action == SPIN_RESTART) goto start_loop;
}