Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/ecore

Dir     : e17/libs/ecore/src/lib/ecore_file


Modified Files:
        ecore_file_monitor.c ecore_file_monitor_inotify.c 


Log Message:
Remove debug info.

===================================================================
RCS file: 
/cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore_file/ecore_file_monitor.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- ecore_file_monitor.c        27 Aug 2005 11:50:50 -0000      1.3
+++ ecore_file_monitor.c        27 Aug 2005 12:25:22 -0000      1.4
@@ -22,7 +22,6 @@
 ecore_file_monitor_init(void)
 {
 #ifdef HAVE_INOTIFY
-   printf("inotify\n");
    monitor_type = ECORE_FILE_MONITOR_TYPE_INOTIFY;
    if (ecore_file_monitor_inotify_init())
      return 1;
@@ -35,12 +34,10 @@
 #endif
 #endif
 #ifdef HAVE_POLL
-   printf("poll\n");
    monitor_type = ECORE_FILE_MONITOR_TYPE_POLL;
    if (ecore_file_monitor_poll_init())
      return 1;
 #endif
-   printf("none\n");
    monitor_type = ECORE_FILE_MONITOR_TYPE_NONE;
    return 0;
 }
@@ -81,7 +78,6 @@
         return NULL;
 #ifdef HAVE_INOTIFY
       case ECORE_FILE_MONITOR_TYPE_INOTIFY:
-        printf("inotify add\n");
         return ecore_file_monitor_inotify_add(path, func, data);
 #endif
 #ifdef HAVE_FAM
@@ -90,7 +86,6 @@
 #endif
 #ifdef HAVE_POLL
       case ECORE_FILE_MONITOR_TYPE_POLL:
-        printf("poll add\n");
         return ecore_file_monitor_poll_add(path, func, data);
 #endif
      }
===================================================================
RCS file: 
/cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore_file/ecore_file_monitor_inotify.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- ecore_file_monitor_inotify.c        27 Aug 2005 11:50:50 -0000      1.5
+++ ecore_file_monitor_inotify.c        27 Aug 2005 12:25:22 -0000      1.6
@@ -82,13 +82,10 @@
 {
    int fd;
 
-   /* Check if we can open /dev/inotify */
-   printf("open\n");
    fd = inotify_init();
    if (fd < 0)
      return 0;
 
-   printf("handler\n");
    _fdh = ecore_main_fd_handler_add(fd, ECORE_FD_READ, 
_ecore_file_monitor_inotify_handler,
                                    NULL, NULL, NULL);
    if (!_fdh)




-------------------------------------------------------
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to