comparison src/os_unix.c @ 1932:f339305875fa v7.2.229

updated for version 7.2-229
author vimboss
date Tue, 14 Jul 2009 10:20:22 +0000
parents 4c02214d1465
children 5bd06a91c65c
comparison
equal deleted inserted replaced
1931:3f661e42f262 1932:f339305875fa
1136 * it's still not received, sleep 1, 2, 3 ms. Don't bother waiting 1136 * it's still not received, sleep 1, 2, 3 ms. Don't bother waiting
1137 * further if signal is not received after 1+2+3+4 ms (not expected 1137 * further if signal is not received after 1+2+3+4 ms (not expected
1138 * to happen). 1138 * to happen).
1139 */ 1139 */
1140 { 1140 {
1141 long wait; 1141 long wait_time;
1142 for (wait = 0; !sigcont_received && wait <= 3L; wait++) 1142 for (wait_time = 0; !sigcont_received && wait_time <= 3L; wait_time++)
1143 /* Loop is not entered most of the time */ 1143 /* Loop is not entered most of the time */
1144 mch_delay(wait, FALSE); 1144 mch_delay(wait_time, FALSE);
1145 } 1145 }
1146 # endif 1146 # endif
1147 1147
1148 # ifdef FEAT_TITLE 1148 # ifdef FEAT_TITLE
1149 /* 1149 /*