2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +00:00

3681. [port] Update the Windows build system to support feature

selection and WIN64 builds.  This is a work in
                        progress. [RT #34160]
This commit is contained in:
Mark Andrews
2013-12-04 12:47:23 +11:00
parent 2c2be89824
commit c3c8823fed
448 changed files with 28872 additions and 4749 deletions

View File

@@ -115,7 +115,11 @@ main(int argc, char *argv[]) {
printf("task 1 = %p\n", t1);
printf("task 2 = %p\n", t2);
#ifndef WIN32
sleep(2);
#else
Sleep(2000);
#endif
/*
* Note: (void *)1 is used as a sender here, since some compilers
@@ -180,7 +184,11 @@ main(int argc, char *argv[]) {
isc_task_detach(&t3);
isc_task_detach(&t4);
#ifndef WIN32
sleep(10);
#else
Sleep(10000);
#endif
printf("destroy\n");
isc_timer_detach(&ti1);
isc_timer_detach(&ti2);