*** trunk/csl/cslbase/ORGcsl.c 2012-01-11 19:21:15.000000000 +0900 --- trunk/csl/cslbase/csl.c 2011-12-03 19:53:12.000000000 +0900 *************** *** 2621,2629 **** { if (errno == EWOULDBLOCK) { #ifdef WIN32 ! Sleep(1000); /* Arg in milliseconds here */ #else ! sleep(1); /* Delay 1 second before re-polling */ #endif continue; } --- 2621,2631 ---- { if (errno == EWOULDBLOCK) { #ifdef WIN32 ! // Sleep(1000); /* Arg in milliseconds here */ ! Sleep(1); #else ! // sleep(1); /* Delay 1 second before re-polling */ ! usleep(1000); #endif continue; } *** trunk/csl/cslbase/ORGsockhdr.h 2012-01-11 19:21:40.000000000 +0900 --- trunk/csl/cslbase/sockhdr.h 2011-12-03 19:53:20.000000000 +0900 *************** *** 72,78 **** #endif #define default_csl_server_port 1206 ! #define MAX_USERS 10 /* approx concurrent remote users */ #define REMOTE_STORE 8000 /* Allow 8 Mbytes per remote user */ #define MAX_CPU_TIME 300 /* Approx CPU limit (seconds) */ #define MAX_ELAPSED_TIME 45 /* Approx elapsed time limit (mins) */ --- 72,79 ---- #endif #define default_csl_server_port 1206 ! // 20110605 10 => 1000¤ËÊѹ¹ ! #define MAX_USERS 1000 /* approx concurrent remote users */ #define REMOTE_STORE 8000 /* Allow 8 Mbytes per remote user */ #define MAX_CPU_TIME 300 /* Approx CPU limit (seconds) */ #define MAX_ELAPSED_TIME 45 /* Approx elapsed time limit (mins) */