efl/legacy/eina
Eduardo de Barros Lima 2216c53641 Eina_List: Avoid Segfault
Some inputs in which tmp - cur is greater than the number of previous nodes
in list, were causing ct to be null at end of loop.

Patch by Jonas M. Gastal <jgastal@profusion.mobi>



SVN revision: 52253
2010-09-14 18:29:30 +00:00
..
debian ok... don't know what's up here... but how about debs actually build 2010-09-03 09:21:07 +00:00
doc whitespaces-- 2010-08-29 18:19:36 +00:00
m4 * eina: remove configure option for rwlock as it is not used anymore. 2010-08-16 15:36:17 +00:00
src Eina_List: Avoid Segfault 2010-09-14 18:29:30 +00:00
win32 update vcproj files 2010-08-21 18:41:11 +00:00
.cvsignore Add benchmark support. 2008-08-06 15:54:56 +00:00
AUTHORS Eina: Add Eina_UStringshare and Eina_Binshare. 2010-07-27 08:55:23 +00:00
COPYING fix copying - it didnt actually even claim copyright. fix. 2010-08-16 02:40:24 +00:00
ChangeLog well got to start somewhere. eina 1.0.0 alpha readied. need to go over 2010-08-16 05:40:50 +00:00
INSTALL Update configure as we now need automake 1.10. 2008-09-29 09:46:27 +00:00
Makefile.am actually fix - eina.pc should now be used. consistency with the rest 2010-08-16 08:03:21 +00:00
NEWS Adding turran work to unify EFL data types and functions. 2008-07-30 12:46:55 +00:00
README typo 2010-08-16 17:56:18 +00:00
acinclude.m4 Fix build on RHEL5. 2010-02-08 07:07:20 +00:00
autogen.sh Use m4 directory. 2008-08-01 12:33:44 +00:00
configure.ac * eina: remove configure option for rwlock as it is not used anymore. 2010-08-16 15:36:17 +00:00
eina.pc.in actually fix - eina.pc should now be used. consistency with the rest 2010-08-16 08:03:21 +00:00
eina.spec.in After discussing with raster, this is what he requested for the spec 2010-04-18 07:03:09 +00:00

README

Eina 1.0.0 ALPHA

******************************************************************************

 FOR ANY ISSUES PLEASE EMAIL:
 enlightenment-devel@lists.sourceforge.net

******************************************************************************

Requirements:
-------------
Must have:
 libc
 libm
 (For windows you also need: evil)

Eina is a library providing data structure utilities for EFL that are meant
to be lean, efficient and tailored to EFL's needs. This saves each
library implementing its own custom datatype handling and duplicating
the code. Some of the datatypes handles are:
  Arrays (variable sized)
  Hash tables
  Inlined linked lists
  Linked lists
  Matricies
  Quadtrees
  Red/black trees
  Stringbuffers (expandable string buffers)

In addition Eina supports shared string token hashes with Stringshare
and Unistringshare (standard ascii/utf8 strings and full unicode
strings). It has a Trash pointer collector for deferring freeing until
work is complete on a dataset, Unicode string wrapping and handling,
UTF8 string parsing, 2D tile structure handling and rectangle
utilities, module loading wrapper, Memory pools for faster allocation
and less fragmentation of the heap, Output logging and selective
aborting on critical enough states, fixed point math functions, CPU
feature detection (like MMX, SSE, VFP, NEON etc.), Counters, binary
token sharing and more.

------------------------------------------------------------------------------
COMPILING AND INSTALLING:

  ./configure
  make
(do this as root unless you are installing in your users directories):
  make install