aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/test/port_SUITE_data/dead_port.c
diff options
context:
space:
mode:
authorSverker Eriksson <[email protected]>2010-11-26 15:18:59 +0100
committerSverker Eriksson <[email protected]>2010-11-26 15:18:59 +0100
commite64306910f2e0d25c4327068ab02b24270be697d (patch)
treecb7a8a4d086b8c479744cd11a14c704faf863e27 /erts/emulator/test/port_SUITE_data/dead_port.c
parent8339345b4e7e0b2f6520af9ecf512c7a8e538276 (diff)
parentc5b7477a8873e6fd80fab598a8e63a5006e46621 (diff)
downloadotp-e64306910f2e0d25c4327068ab02b24270be697d.tar.gz
otp-e64306910f2e0d25c4327068ab02b24270be697d.tar.bz2
otp-e64306910f2e0d25c4327068ab02b24270be697d.zip
Merge branch 'sverker/unsafe_CancelIoEx/OTP-8937' into dev
* sverker/unsafe_CancelIoEx/OTP-8937: Remove use of unreliable CancelIoEx on Windows.
Diffstat (limited to 'erts/emulator/test/port_SUITE_data/dead_port.c')
-rw-r--r--erts/emulator/test/port_SUITE_data/dead_port.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/erts/emulator/test/port_SUITE_data/dead_port.c b/erts/emulator/test/port_SUITE_data/dead_port.c
index 6fa77112be..68e96fbf14 100644
--- a/erts/emulator/test/port_SUITE_data/dead_port.c
+++ b/erts/emulator/test/port_SUITE_data/dead_port.c
@@ -72,14 +72,14 @@ char *argv[];
{
int x;
if (argc < 2) {
- fprintf(stderr,"Usage %s <seconds>\n",argv[0]);
+ fprintf(stderr,"Usage %s <milliseconds>\n",argv[0]);
return 1;
}
if ((x = atoi(argv[1])) <= 0) {
- fprintf(stderr,"Usage %s <seconds>\n",argv[0]);
+ fprintf(stderr,"Usage %s <milliseconds>\n",argv[0]);
return 1;
}
- delay(x*1000);
+ delay(x);
return 0;
}