Enlightenment CVS committal

Author  : barbieri
Project : e17
Module  : libs/evas

Dir     : e17/libs/evas/src/lib/engines/common


Modified Files:
        evas_pipe.c 


Log Message:
Destroy pthread_attr when we do not need it anymore.

pthread manual says it is safe to destroy them after they are used
with pthread_create: "If the attributes specified by attr are modified
later, the thread’s attributes shall not be affected."



===================================================================
RCS file: /cvs/e/e17/libs/evas/src/lib/engines/common/evas_pipe.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -3 -r1.12 -r1.13
--- evas_pipe.c 31 May 2008 04:16:39 -0000      1.12
+++ evas_pipe.c 28 Jun 2008 15:29:57 -0000      1.13
@@ -141,6 +141,7 @@
             /* setup initial locks */
             pthread_create(&(thinfo[i].thread_id), &attr, 
                            evas_common_pipe_thread, &(thinfo[i]));
+            pthread_attr_destroy(&attr);
          }
      }
    y = 0;



-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to