explicitly set eina error level, add a printf

10k fd test successfully passed! in 1.5 minutes :(


SVN revision: 55053
This commit is contained in:
Mike Blumenkrantz 2010-11-29 07:07:16 +00:00
parent 99fa106e8e
commit 7b3463a3ef
2 changed files with 3 additions and 1 deletions

View File

@ -58,6 +58,7 @@ int main(void)
ecore_con_init();
eina_log_domain_level_set("ecore_con", EINA_LOG_LEVEL_ERR);
eina_log_domain_level_set("eina", EINA_LOG_LEVEL_ERR);
counter = eina_counter_new("client");
eina_counter_start(counter);
done = ecore_time_get();

View File

@ -23,7 +23,7 @@ Eina_Bool
_del(void *data, int type, Ecore_Con_Event_Client_Del *ev)
{
++del;
// printf("Disconnected #%i!\n", del);
printf("Disconnected #%i!\n", del);
if (add == del)
ecore_main_loop_quit();
return ECORE_CALLBACK_RENEW;
@ -35,6 +35,7 @@ int main(int argc, const char *argv[])
ecore_con_init();
ecore_app_args_set(argc, argv);
eina_log_domain_level_set("ecore_con", EINA_LOG_LEVEL_ERR);
eina_log_domain_level_set("eina", EINA_LOG_LEVEL_ERR);
/* to use a PEM certificate with TLS and SSL3, uncomment the lines below */