git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/expedite@54332
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
ui_args(argc, argv);
evas_font_hinting_set(evas, EVAS_FONT_HINTING_AUTO);
-
+
while (_engine_go())
{
engine_loop();
{
Evas_Object *o;
Evas_Coord x, y, w, h;
+ time_t t0, t;
o = evas_object_rectangle_add(evas);
evas_object_move(o, 0, 0);
#undef UI
_ui_menu_item_add("exit.png", "Exit", _ui_exit);
+ /* make sure disk io isn't going to turn up unexpectedly */
+ sync();
+ sync();
+ sync();
+ /* warm up the cpu with some spinning */
+ t0 = time(NULL);
+ for (;;)
+ {
+ t = time(NULL);
+ if (t - t0 > 2) break;
+ }
+
if (run_all)
{
_ui_all();