platform/upstream/efl.git
12 years agoEo: Improved checks in signals example.
Tom Hacohen [Sun, 3 Jun 2012 13:33:04 +0000 (13:33 +0000)]
Eo: Improved checks in signals example.

SVN revision: 71662

12 years agoecore_imf_evas: insert example link in Ecore_IMF_Evas_Group
Jihoon Kim [Sun, 3 Jun 2012 12:50:11 +0000 (12:50 +0000)]
ecore_imf_evas: insert example link in Ecore_IMF_Evas_Group

SVN revision: 71661

12 years agoecore_imf_example: fix formatting
Jihoon Kim [Sun, 3 Jun 2012 12:49:21 +0000 (12:49 +0000)]
ecore_imf_example: fix formatting

SVN revision: 71660

12 years agoecore_imf: insert example link in ecore_imf_context group
Jihoon Kim [Sun, 3 Jun 2012 12:39:48 +0000 (12:39 +0000)]
ecore_imf: insert example link in ecore_imf_context group

SVN revision: 71659

12 years agoEo: print an error when trying to delete a non-existent callback.
Tom Hacohen [Sun, 3 Jun 2012 08:42:18 +0000 (08:42 +0000)]
Eo: print an error when trying to delete a non-existent callback.

SVN revision: 71658

12 years agoEo: Remove del_lazy.
Tom Hacohen [Sun, 3 Jun 2012 08:42:15 +0000 (08:42 +0000)]
Eo: Remove del_lazy.

SVN revision: 71657

12 years agoEo: Added support for static class ids.
Tom Hacohen [Sun, 3 Jun 2012 08:42:12 +0000 (08:42 +0000)]
Eo: Added support for static class ids.

SVN revision: 71656

12 years agoEo: remove eo_del.
Tom Hacohen [Sun, 3 Jun 2012 08:42:08 +0000 (08:42 +0000)]
Eo: remove eo_del.

Useless for us, was only added to be like evas, but we don't need it
anymore.

SVN revision: 71655

12 years agoecore_imf_example.c: revise example code
Jihoon Kim [Sat, 2 Jun 2012 06:00:09 +0000 (06:00 +0000)]
ecore_imf_example.c: revise example code

SVN revision: 71640

12 years agoeet,ecore: configure script
Jerome Pinot [Sat, 2 Jun 2012 05:39:51 +0000 (05:39 +0000)]
eet,ecore: configure script

Make the configure output clear about examples installation.

SVN revision: 71639

12 years ago[edje] Better doc for edje_object_part_swallow.
Gustavo Lima Chaves [Fri, 1 Jun 2012 20:51:17 +0000 (20:51 +0000)]
[edje] Better doc for edje_object_part_swallow.

SVN revision: 71630

12 years agoecore/ecore_x - let just leave one atom list for maintainance
ChunEon Park [Fri, 1 Jun 2012 13:53:18 +0000 (13:53 +0000)]
ecore/ecore_x - let just leave one atom list for maintainance

SVN revision: 71625

12 years agofix indentation of ecore_imf_example.c
Jihoon Kim [Fri, 1 Jun 2012 12:48:15 +0000 (12:48 +0000)]
fix indentation of ecore_imf_example.c

SVN revision: 71621

12 years agoadd ecore_imf_example code. I will add Makefile.am in example directory later
Jihoon Kim [Fri, 1 Jun 2012 12:46:24 +0000 (12:46 +0000)]
add ecore_imf_example code. I will add Makefile.am in example directory later

SVN revision: 71620

12 years agoedje/examples.dox: fix typos
Jihoon Kim [Fri, 1 Jun 2012 01:49:54 +0000 (01:49 +0000)]
edje/examples.dox: fix typos

SVN revision: 71615

12 years agoevas/examples.dox: fix typo
Jihoon Kim [Fri, 1 Jun 2012 01:44:25 +0000 (01:44 +0000)]
evas/examples.dox: fix typo

SVN revision: 71614

12 years agoevas examples.dox: Fixed typo.
Daniel Juyung Seo [Thu, 31 May 2012 23:02:49 +0000 (23:02 +0000)]
evas examples.dox: Fixed typo.

SVN revision: 71610

12 years agoevas/cserve2: Change request list to inlist.
Rafael Antognolli [Thu, 31 May 2012 21:34:54 +0000 (21:34 +0000)]
evas/cserve2: Change request list to inlist.
Inlist remove operations are faster if the element is known.

SVN revision: 71609

12 years agoevas/cserve2: Add a "processing" queue for each type
Rafael Antognolli [Thu, 31 May 2012 21:34:48 +0000 (21:34 +0000)]
evas/cserve2: Add a "processing" queue for each type
 of request.
This will make the lookups for requests faster (mainly for fonts).

SVN revision: 71608

12 years agoevas/cserve2: Add a "processing" queue to requests.
Rafael Antognolli [Thu, 31 May 2012 21:34:37 +0000 (21:34 +0000)]
evas/cserve2: Add a "processing" queue to requests.
This is a list that holds all requests being processed at the moment. It
can be used so that when a new request is added, first we look in this
queue to avoid creating a new request that is the same as the one being
processed right now. If it is already being processed, a new waiter is
added to it, just like when the request was on its original queue.

SVN revision: 71607

12 years agoevas/cserve2: Add basic error handling on thread
Rafael Antognolli [Thu, 31 May 2012 21:34:28 +0000 (21:34 +0000)]
evas/cserve2: Add basic error handling on thread
 slave.
It will now receive errors from the thread callback and call the error
request function, with the respective error type in the message.

SVN revision: 71606

12 years agoevas/cserve2: Add handling of FONT_LOAD.
Rafael Antognolli [Thu, 31 May 2012 21:34:21 +0000 (21:34 +0000)]
evas/cserve2: Add handling of FONT_LOAD.
It's not fully functional, some things are still pending:
- Free allocated font;
- answer with error message if failed.

SVN revision: 71605

12 years agoevas/cserve2: Some fixes for requests.
Rafael Antognolli [Thu, 31 May 2012 21:34:15 +0000 (21:34 +0000)]
evas/cserve2: Some fixes for requests.

SVN revision: 71604

12 years agoevas/cserve2: Some more code to requests management.
Rafael Antognolli [Thu, 31 May 2012 21:34:09 +0000 (21:34 +0000)]
evas/cserve2: Some more code to requests management.
Added code to slave read and slave dead callbacks.

SVN revision: 71603

12 years agoevas/cserve2: Use Slave_Command instead of
Rafael Antognolli [Thu, 31 May 2012 21:34:04 +0000 (21:34 +0000)]
evas/cserve2: Use Slave_Command instead of
 Message_Type for slave.
This is the command that must be given to the slave, instead of the
message type received from the client.

SVN revision: 71602

12 years agoevas/cserve2: Add requests and slave workers
Rafael Antognolli [Thu, 31 May 2012 21:33:59 +0000 (21:33 +0000)]
evas/cserve2: Add requests and slave workers
 management.

SVN revision: 71601

12 years agoevas/cserve2: Adding font requests manipulation.
Rafael Antognolli [Thu, 31 May 2012 21:33:53 +0000 (21:33 +0000)]
evas/cserve2: Adding font requests manipulation.

SVN revision: 71600

12 years agoevas/cserve2: Slave thread is only a simple callback.
Rafael Antognolli [Thu, 31 May 2012 21:33:43 +0000 (21:33 +0000)]
evas/cserve2: Slave thread is only a simple callback.
The implementation of the slave doesn't need to care about reading
commands and sending answers. It just receives the arguments for its job
and returns the processed data.

SVN revision: 71599

12 years agoevas/cserve2: Add threaded slave support.
Rafael Antognolli [Thu, 31 May 2012 21:33:37 +0000 (21:33 +0000)]
evas/cserve2: Add threaded slave support.
It's not being used yet, but the font slave will be done using this
code.

SVN revision: 71598

12 years agoevas examples.dox: Fixed typo.
Daniel Juyung Seo [Thu, 31 May 2012 17:02:26 +0000 (17:02 +0000)]
evas examples.dox: Fixed typo.

SVN revision: 71588

12 years agoi wonder if this patches over some odd signal processing hang i see in
Carsten Haitzler [Thu, 31 May 2012 13:32:09 +0000 (13:32 +0000)]
i wonder if this patches over some odd signal processing hang i see in
edje_cc! :(

SVN revision: 71583

12 years agoFixing the eina_inlist example 2 image. The diagram was wrong.
Jonas M. Gastal [Thu, 31 May 2012 13:09:13 +0000 (13:09 +0000)]
Fixing the eina_inlist example 2 image. The diagram was wrong.

Author:    Guilherme Iscaro <iscaro@profusion.mobi>

SVN revision: 71582

12 years agoRemoving wrong info about inlist performance from docs.
Jonas M. Gastal [Thu, 31 May 2012 13:09:05 +0000 (13:09 +0000)]
Removing wrong info about inlist performance from docs.

SVN revision: 71581

12 years agoedje: we should at least always add the file_in to the list of used file.
Cedric BAIL [Thu, 31 May 2012 06:50:09 +0000 (06:50 +0000)]
edje: we should at least always add the file_in to the list of used file.

SVN revision: 71572

12 years agolet's turn eina thread debug OFF by default eh? :)
Carsten Haitzler [Thu, 31 May 2012 02:34:46 +0000 (02:34 +0000)]
let's turn eina thread debug OFF by default eh? :)

SVN revision: 71571

12 years agoAdding MSAA extension define for Evas GL MSAA surface support.
Sung Park [Thu, 31 May 2012 01:16:53 +0000 (01:16 +0000)]
Adding MSAA extension define for Evas GL MSAA surface support.

SVN revision: 71570

12 years agoecore: fix doxygen warnings
Jihoon Kim [Thu, 31 May 2012 00:18:38 +0000 (00:18 +0000)]
ecore: fix doxygen warnings

SVN revision: 71569

12 years agoecore_x_randr: Add _ASK policy for new monitors.
Leif Middelschulte [Wed, 30 May 2012 19:16:29 +0000 (19:16 +0000)]
ecore_x_randr: Add _ASK policy for new monitors.

SVN revision: 71565

12 years agoEina: move spin lock checks in the generic m4 threads macro
Vincent Torri [Wed, 30 May 2012 13:25:13 +0000 (13:25 +0000)]
Eina: move spin lock checks in the generic m4 threads macro

SVN revision: 71562

12 years agoedje: major oopsie !
Cedric BAIL [Wed, 30 May 2012 12:51:21 +0000 (12:51 +0000)]
edje: major oopsie !

SVN revision: 71561

12 years agoefreet: ERR -> EINA_LOG_ERR
Mike McCormack [Wed, 30 May 2012 12:34:18 +0000 (12:34 +0000)]
efreet: ERR -> EINA_LOG_ERR

SVN revision: 71560

12 years agoedje: time to play with fire ! edje_cc will now use thread by default.
Cedric BAIL [Wed, 30 May 2012 12:25:53 +0000 (12:25 +0000)]
edje: time to play with fire ! edje_cc will now use thread by default.

You can turn it off with -nothreads. Please report any issue you face.

SVN revision: 71558

12 years agoedje: remove the work around.
Cedric BAIL [Wed, 30 May 2012 12:16:50 +0000 (12:16 +0000)]
edje: remove the work around.

SVN revision: 71556

12 years agoecore: force pthread_join even when main loop isn't running.
Cedric BAIL [Wed, 30 May 2012 12:14:34 +0000 (12:14 +0000)]
ecore: force pthread_join even when main loop isn't running.

pthread_create can fail if to much pthread are pending. As pthread_join
is only called when the main loop can flush the async call list, there was
a possibility for edje_cc to run out of thread due to that. We know
force the flush of the async call list and so call pthread_join when
pthread_create fail.

SVN revision: 71555

12 years agochlog++
Carsten Haitzler [Wed, 30 May 2012 10:42:22 +0000 (10:42 +0000)]
chlog++

SVN revision: 71553

12 years agoFRom daniel zaoui -> spotted issues with callback deletionon evas_free
Carsten Haitzler [Wed, 30 May 2012 10:41:19 +0000 (10:41 +0000)]
FRom daniel zaoui -> spotted issues with callback deletionon evas_free
that may cause evas's to not be freed. fixxxxors!

SVN revision: 71552

12 years agoecore: fix count of objects in the Ecore_Thread trash.
Cedric BAIL [Wed, 30 May 2012 10:25:44 +0000 (10:25 +0000)]
ecore: fix count of objects in the Ecore_Thread trash.

SVN revision: 71550

12 years agoevas/map - fixed afterimage problem. now we don't need work-around code anymore.
ChunEon Park [Wed, 30 May 2012 10:12:10 +0000 (10:12 +0000)]
evas/map - fixed afterimage problem. now we don't need work-around code anymore.

SVN revision: 71549

12 years agoThis is a small change, so I won't changelog it (or backport), but
Carsten Haitzler [Wed, 30 May 2012 10:08:41 +0000 (10:08 +0000)]
This is a small change, so I won't changelog it (or backport), but
make _shutdown() funcs across efl complain and be unhappy if you
shutdown to < 0 shutdowns and not pull init count below 0.

SVN revision: 71548

12 years agoedje: turn on trouble and speed by default.
Cedric BAIL [Wed, 30 May 2012 08:56:57 +0000 (08:56 +0000)]
edje: turn on trouble and speed by default.

SVN revision: 71546

12 years agoevas/map - simplify code
ChunEon Park [Wed, 30 May 2012 08:40:21 +0000 (08:40 +0000)]
evas/map - simplify code

SVN revision: 71545

12 years agoevas: finally got rid of that nasty dancing font issue with pipe rendering.
Cedric BAIL [Wed, 30 May 2012 08:29:29 +0000 (08:29 +0000)]
evas: finally got rid of that nasty dancing font issue with pipe rendering.

SVN revision: 71544

12 years agoevas: Don't wake up prepare thread when there is nothing to do.
Cedric BAIL [Wed, 30 May 2012 08:15:42 +0000 (08:15 +0000)]
evas: Don't wake up prepare thread when there is nothing to do.

SVN revision: 71543

12 years agoevas/render - pre render will be always. don't need if and else if which will be...
ChunEon Park [Wed, 30 May 2012 07:32:27 +0000 (07:32 +0000)]
evas/render - pre render will be always. don't need if and else if which will be never reached.

SVN revision: 71540

12 years agoFrom: Mariusz Grzegorczyk <mariusz.g@samsung.com>
Mariusz Grzegorczyk [Wed, 30 May 2012 07:05:50 +0000 (07:05 +0000)]
From: Mariusz Grzegorczyk <mariusz.g@samsung.com>
Subject: [E-devel] Ecore: Save proper evas engine buffer depth when
_ecore_evas_resize is done

I have found bug in ecore evas buffer. It is created by default as RGB32,
and then it can be changed by ecore_evas_alpha_set function, but when resize
is done it is always created as ARGB32.

Patch in attachment checks in resize if alpha channel is set, and then set
appropriate buffer depth.

SVN revision: 71537

12 years agoeina: doxygen doc fixes
Jerome Pinot [Wed, 30 May 2012 06:55:31 +0000 (06:55 +0000)]
eina: doxygen doc fixes

Add a bunch of missing @c and #EINA_{TRUE,FALSE} links.

SVN revision: 71535

12 years agoevas/evas_object_smart - simpler code.
ChunEon Park [Wed, 30 May 2012 06:29:14 +0000 (06:29 +0000)]
evas/evas_object_smart - simpler code.

SVN revision: 71531

12 years agoecore: cancel all pending thread at shutdown.
Cedric BAIL [Wed, 30 May 2012 03:10:30 +0000 (03:10 +0000)]
ecore: cancel all pending thread at shutdown.

Hopefully this will fix bug #961.

SVN revision: 71526

12 years agoeet: properly check buffer size during decipher.
Cedric BAIL [Wed, 30 May 2012 02:19:07 +0000 (02:19 +0000)]
eet: properly check buffer size during decipher.

Fix bug #1017.

SVN revision: 71524

12 years agoevas/map - fixed to update the rendering when map is enabled.
ChunEon Park [Wed, 30 May 2012 00:51:11 +0000 (00:51 +0000)]
evas/map - fixed to update the rendering when map is enabled.
Now children objects of the mapped object should be cleaned from the internal cache lists.

SVN revision: 71519

12 years agoEina: Fix issue in the XML parser when a tag was in a comment or a CDATA.
Vincent Torri [Tue, 29 May 2012 22:00:29 +0000 (22:00 +0000)]
Eina: Fix issue in the XML parser when a tag was in a comment or a CDATA.

SVN revision: 71518

12 years agoEina: remove threads options from configure
Vincent Torri [Tue, 29 May 2012 21:57:48 +0000 (21:57 +0000)]
Eina: remove threads options from configure

remove --disable-posix-threads and --disable-win32-threads
from configure options, and detect automatically the threading
support.

SVN revision: 71517

12 years agoEvas object text: Make the object size big enough to show the whole text.
Tom Hacohen [Tue, 29 May 2012 14:43:21 +0000 (14:43 +0000)]
Evas object text: Make the object size big enough to show the whole text.

I.e even if advance is smaller than width, take it into account.

SVN revision: 71507

12 years agoEvas text: apply italic correction for run-time slanted texts (disabled).
Tom Hacohen [Tue, 29 May 2012 14:43:17 +0000 (14:43 +0000)]
Evas text: apply italic correction for run-time slanted texts (disabled).

Also, put the slant angle calculations in a macro for easier future changes.
Just have it there so people who want it can turn it on.

SVN revision: 71506

12 years agoEvas font-draw: Use bitmap offset in the glyph when drawing.
Tom Hacohen [Tue, 29 May 2012 14:43:10 +0000 (14:43 +0000)]
Evas font-draw: Use bitmap offset in the glyph when drawing.

SVN revision: 71505

12 years agoeina: doxygen doc fixes
Jerome Pinot [Tue, 29 May 2012 11:33:07 +0000 (11:33 +0000)]
eina: doxygen doc fixes

A #link at the beginning of a new line goes interpreted by doxygen as a title,
so format the documentation to avoid this issue. No content change.

SVN revision: 71501

12 years agoevas/render - they are already cleaned.
ChunEon Park [Tue, 29 May 2012 09:09:13 +0000 (09:09 +0000)]
evas/render - they are already cleaned.

SVN revision: 71499

12 years agoevas/render - removed duplicated call
ChunEon Park [Tue, 29 May 2012 05:24:43 +0000 (05:24 +0000)]
evas/render - removed duplicated call

SVN revision: 71491

12 years agoevas/rendering - Fixed to clean up when map actually changed. Now rendering updates...
ChunEon Park [Tue, 29 May 2012 05:13:03 +0000 (05:13 +0000)]
evas/rendering - Fixed to clean up when map actually changed. Now rendering updates will     be correct after evas_map acutally disabled for the smart object.

SVN revision: 71490

12 years agolet's put a README into the lz4 support in eet.
Carsten Haitzler [Tue, 29 May 2012 05:06:21 +0000 (05:06 +0000)]
let's put a README into the lz4 support in eet.

SVN revision: 71489

12 years agoecore - revert 71421 cause of posibility of abi break
ChunEon Park [Tue, 29 May 2012 02:42:13 +0000 (02:42 +0000)]
ecore - revert 71421 cause of posibility of abi break

thanks Vincent.

SVN revision: 71485

12 years agoecore: We can't really use index as variable as it is already in use.
Stefan Schmidt [Mon, 28 May 2012 13:08:38 +0000 (13:08 +0000)]
ecore: We can't really use index as variable as it is already in use.

A bit annoying I know. But ignoring all this shadowing global declaritions might bring us into
trouble.

SVN revision: 71457

12 years agoEcore: Updated ChangeLog from Robert's patch.
Christopher Michael [Mon, 28 May 2012 12:25:04 +0000 (12:25 +0000)]
Ecore: Updated ChangeLog from Robert's patch.

SVN revision: 71454

12 years agoEcore_Evas: Patch from Robert Bradford <robert.bradford@intel.com>:
Christopher Michael [Mon, 28 May 2012 12:24:30 +0000 (12:24 +0000)]
Ecore_Evas: Patch from Robert Bradford <robert.bradford@intel.com>:

The challenge here is that the native window representation is stored
in Ecore_Evas's prop.window. But currently there is no checking of
what driver the Ecore_Evas is for when calls are made to e.g.

ecore_evas_software_x11_window_get.

The attached change to Ecore makes the appropriate functions return 0
or NULL if the driver for the Ecore doesn't match as expected. This
can then be used to identify if an Ecore_Evas is e.g. from X11 or from
Wayland.

SVN revision: 71453

12 years agoEcore_Evas (wayland_shm): Add support for ecore_evas_move_resize
Christopher Michael [Mon, 28 May 2012 12:19:17 +0000 (12:19 +0000)]
Ecore_Evas (wayland_shm): Add support for ecore_evas_move_resize
engine function.

SVN revision: 71452

12 years agoecore/tests: Remove unused var and mark unused parameter
Stefan Schmidt [Sat, 26 May 2012 22:01:58 +0000 (22:01 +0000)]
ecore/tests: Remove unused var and mark unused parameter

SVN revision: 71443

12 years agoecore_imf_xim: Rename variable to avoid shadowing
Stefan Schmidt [Sat, 26 May 2012 22:01:53 +0000 (22:01 +0000)]
ecore_imf_xim: Rename variable to avoid shadowing

index is already used in string.h, avoid it here.
src/modules/immodules/xim/ecore_imf_xim.c:116: warning: declaration of 'index' shadows a global declaration
/usr/include/string.h:487: warning: shadowed declaration is here

Signed-off-by: Stefan Schmidt <s.schmidt@samsung.com>
SVN revision: 71442

12 years agoEdje: Cleanup compiler warnings if NEWPARTLOOKUP is not defined.
Christopher Michael [Sat, 26 May 2012 08:41:49 +0000 (08:41 +0000)]
Edje: Cleanup compiler warnings if NEWPARTLOOKUP is not defined.

SVN revision: 71436

12 years agoEdje: Fix compiler warnings for edje_entry_input_panel functions when
Christopher Michael [Sat, 26 May 2012 08:34:25 +0000 (08:34 +0000)]
Edje: Fix compiler warnings for edje_entry_input_panel functions when
Ecore is built without IMF support.

SVN revision: 71435

12 years agoecore XIM module: fixformatting
Jihoon Kim [Sat, 26 May 2012 00:10:56 +0000 (00:10 +0000)]
ecore XIM module: fixformatting

SVN revision: 71434

12 years agoEvas: (wayland): Use Seb's strncmp statement (easier to read, cleaner,
Christopher Michael [Fri, 25 May 2012 23:51:21 +0000 (23:51 +0000)]
Evas: (wayland): Use Seb's strncmp statement (easier to read, cleaner,
simpler, and possibly faster).

Thanks Seb ;)

SVN revision: 71431

12 years agoEvas: Fix clipping issue for wayland engines (were drawing outside the
Christopher Michael [Fri, 25 May 2012 12:55:45 +0000 (12:55 +0000)]
Evas: Fix clipping issue for wayland engines (were drawing outside the
viewort). This fixes the Elm Map 3D test issue where the cube was
drawing onto the window border (and perhaps other tests).

SVN revision: 71426

12 years agoEvas: Add framespace clip object (for efl wayland clipping issue).
Christopher Michael [Fri, 25 May 2012 12:54:38 +0000 (12:54 +0000)]
Evas: Add framespace clip object (for efl wayland clipping issue).

SVN revision: 71425

12 years agoecore/ecore_x - Changed ecore_x_error_get() return type to Ecore_X_Error_Code from int
ChunEon Park [Fri, 25 May 2012 10:15:27 +0000 (10:15 +0000)]
ecore/ecore_x - Changed ecore_x_error_get() return type to Ecore_X_Error_Code from int

SVN revision: 71421

12 years agofix mainloop begin/quit then begin again issue.
Carsten Haitzler [Fri, 25 May 2012 09:18:48 +0000 (09:18 +0000)]
fix mainloop begin/quit then begin again issue.

SVN revision: 71419

12 years agoevas - trivial code refactoring for evas_object_clip_recalc
ChunEon Park [Fri, 25 May 2012 08:13:40 +0000 (08:13 +0000)]
evas - trivial code refactoring for evas_object_clip_recalc

SVN revision: 71418

12 years agoscim_immodule: fix some typos
Jihoon Kim [Fri, 25 May 2012 07:54:46 +0000 (07:54 +0000)]
scim_immodule: fix some typos

SVN revision: 71417

12 years agoadd chlog for memfile change
Carsten Haitzler [Fri, 25 May 2012 03:31:37 +0000 (03:31 +0000)]
add chlog for memfile change

SVN revision: 71415

12 years agoEcore_X(cb): Also fix send of new events here ... someone is slacking ;)
Christopher Michael [Thu, 24 May 2012 10:18:32 +0000 (10:18 +0000)]
Ecore_X(cb): Also fix send of new events here ... someone is slacking ;)

SVN revision: 71410

12 years agook ok - doesnt make a difference.. but only limit if MORE than 16xcpu
Carsten Haitzler [Thu, 24 May 2012 10:13:30 +0000 (10:13 +0000)]
ok ok - doesnt make a difference.. but only limit if MORE than 16xcpu
count

SVN revision: 71409

12 years agofix ecore-thread scheduler starvation issue.
Carsten Haitzler [Thu, 24 May 2012 09:51:17 +0000 (09:51 +0000)]
fix ecore-thread scheduler starvation issue.

SVN revision: 71404

12 years agofix send of new events alreayd added. oops. should test shouldnt i.
Carsten Haitzler [Thu, 24 May 2012 08:57:58 +0000 (08:57 +0000)]
fix send of new events alreayd added. oops. should test shouldnt i.

SVN revision: 71402

12 years agoand no more segv's in ecore-con and ecore-ipc. see changelog.
Carsten Haitzler [Thu, 24 May 2012 07:49:30 +0000 (07:49 +0000)]
and no more segv's in ecore-con and ecore-ipc. see changelog.

SVN revision: 71400

12 years agoe, evas, elementary: Synced @author with AUTHORS.
Daniel Juyung Seo [Thu, 24 May 2012 07:17:05 +0000 (07:17 +0000)]
e, evas, elementary: Synced @author with AUTHORS.

SVN revision: 71399

12 years agoevas evas_object_smart_clipped.c: Fixed formatting.
Daniel Juyung Seo [Thu, 24 May 2012 06:48:25 +0000 (06:48 +0000)]
evas evas_object_smart_clipped.c: Fixed formatting.

SVN revision: 71396

12 years agoevas Evas.h: Fixed typo.
Daniel Juyung Seo [Thu, 24 May 2012 06:48:21 +0000 (06:48 +0000)]
evas Evas.h: Fixed typo.

SVN revision: 71395

12 years agobetter fix for ecore-con client disconnecting maybe
Mike Blumenkrantz [Thu, 24 May 2012 06:39:43 +0000 (06:39 +0000)]
better fix for ecore-con client disconnecting maybe

SVN revision: 71393

12 years agofix async embryo_cc stuff. it was losing all the embyro compiles!
Carsten Haitzler [Thu, 24 May 2012 05:37:36 +0000 (05:37 +0000)]
fix async embryo_cc stuff. it was losing all the embyro compiles!

SVN revision: 71387

12 years agobased on Raphael's idea of tmpdir env vars and such - but different.
Carsten Haitzler [Thu, 24 May 2012 05:07:22 +0000 (05:07 +0000)]
based on Raphael's idea of tmpdir env vars and such - but different.
still disables unlink on non-linux.

SVN revision: 71386

12 years agofix dates in chlog - it's 24th!
Carsten Haitzler [Thu, 24 May 2012 04:33:00 +0000 (04:33 +0000)]
fix dates in chlog - it's 24th!

SVN revision: 71380