passenger 5.0.26 → 5.0.27

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of passenger might be problematic. Click here for more details.

Files changed (59) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG +17 -0
  3. data/CONTRIBUTORS +1 -0
  4. data/build/cxx_dependency_map.rb +113 -157
  5. data/build/cxx_tests.rb +8 -1
  6. data/src/agent/Core/ApplicationPool/TestSession.h +5 -1
  7. data/src/agent/Core/Controller/CheckoutSession.cpp +1 -1
  8. data/src/agent/Core/Controller/ForwardResponse.cpp +9 -0
  9. data/src/agent/Core/Controller/InternalUtils.cpp +9 -1
  10. data/src/agent/Core/Controller/SendRequest.cpp +13 -7
  11. data/src/agent/Core/Controller/StateInspectionAndConfiguration.cpp +3 -2
  12. data/src/agent/Core/CoreMain.cpp +3 -0
  13. data/src/agent/Core/SpawningKit/SmartSpawner.h +1 -1
  14. data/src/agent/Core/SpawningKit/Spawner.h +2 -2
  15. data/src/agent/Core/UnionStation/StopwatchLog.h +3 -4
  16. data/src/agent/Shared/Base.cpp +32 -0
  17. data/src/agent/Shared/Base.h +2 -0
  18. data/src/agent/UstRouter/UstRouterMain.cpp +3 -0
  19. data/src/agent/Watchdog/AgentWatcher.cpp +1 -3
  20. data/src/agent/Watchdog/WatchdogMain.cpp +31 -6
  21. data/src/apache2_module/Hooks.cpp +2 -2
  22. data/src/cxx_supportlib/BackgroundEventLoop.cpp +12 -2
  23. data/src/cxx_supportlib/Constants.h +1 -1
  24. data/src/cxx_supportlib/DataStructures/LString.cpp +39 -0
  25. data/src/cxx_supportlib/DataStructures/LString.h +35 -6
  26. data/src/cxx_supportlib/FileDescriptor.h +3 -1
  27. data/src/cxx_supportlib/Integrations/LibevJsonUtils.h +92 -0
  28. data/src/cxx_supportlib/ResourceLocator.h +10 -8
  29. data/src/cxx_supportlib/ServerKit/CookieUtils.h +4 -0
  30. data/src/cxx_supportlib/ServerKit/FileBufferedChannel.h +2 -0
  31. data/src/cxx_supportlib/ServerKit/HttpServer.h +6 -2
  32. data/src/cxx_supportlib/Utils.cpp +4 -5
  33. data/src/cxx_supportlib/Utils.h +2 -2
  34. data/src/cxx_supportlib/Utils/IOUtils.cpp +1 -1
  35. data/src/cxx_supportlib/Utils/JsonUtils.h +12 -10
  36. data/src/cxx_supportlib/Utils/MessagePassing.h +4 -4
  37. data/src/cxx_supportlib/Utils/StrIntUtils.cpp +7 -3
  38. data/src/cxx_supportlib/Utils/SystemTime.cpp +15 -4
  39. data/src/cxx_supportlib/Utils/SystemTime.h +228 -54
  40. data/src/cxx_supportlib/Utils/Timer.h +14 -41
  41. data/src/cxx_supportlib/WatchdogLauncher.h +1 -1
  42. data/src/cxx_supportlib/vendor-copy/libuv/Makefile.in +198 -59
  43. data/src/cxx_supportlib/vendor-copy/libuv/autom4te.cache/output.0 +15477 -0
  44. data/src/cxx_supportlib/vendor-copy/libuv/autom4te.cache/output.1 +15477 -0
  45. data/src/cxx_supportlib/vendor-copy/libuv/autom4te.cache/requests +324 -0
  46. data/src/cxx_supportlib/vendor-copy/libuv/autom4te.cache/traces.0 +3105 -0
  47. data/src/cxx_supportlib/vendor-copy/libuv/autom4te.cache/traces.1 +703 -0
  48. data/src/cxx_supportlib/vendor-copy/libuv/configure +115 -12
  49. data/src/cxx_supportlib/vendor-copy/libuv/ltmain.sh +15 -8
  50. data/src/cxx_supportlib/vendor-copy/libuv/m4/ltversion.m4 +5 -5
  51. data/src/cxx_supportlib/vendor-modified/psg_sysqueue.h +1 -0
  52. data/src/nginx_module/ngx_http_passenger_module.c +1 -1
  53. data/src/nodejs_supportlib/phusion_passenger/ustreporter.js +1 -1
  54. data/src/ruby_native_extension/passenger_native_support.c +1 -1
  55. data/src/ruby_supportlib/phusion_passenger.rb +15 -1
  56. data/src/ruby_supportlib/phusion_passenger/common_library.rb +4 -0
  57. data/src/ruby_supportlib/phusion_passenger/packaging.rb +1 -0
  58. data/src/ruby_supportlib/phusion_passenger/ruby_core_io_enhancements.rb +5 -20
  59. metadata +9 -2
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * Phusion Passenger - https://www.phusionpassenger.com/
3
- * Copyright (c) 2010 Phusion Holding B.V.
3
+ * Copyright (c) 2010-2016 Phusion Holding B.V.
4
4
  *
5
5
  * "Passenger", "Phusion Passenger" and "Union Station" are registered
6
6
  * trademarks of Phusion Holding B.V.
@@ -28,8 +28,7 @@
28
28
 
29
29
  #include <boost/thread.hpp>
30
30
  #include <oxt/system_calls.hpp>
31
- #include <sys/time.h>
32
- #include <cerrno>
31
+ #include <Utils/SystemTime.h>
33
32
 
34
33
  namespace Passenger {
35
34
 
@@ -49,10 +48,12 @@ using namespace oxt;
49
48
  * timer.elapsed(); // => about 10000 (msec)
50
49
  * @endcode
51
50
  */
51
+ template<SystemTime::Granularity granularity = SystemTime::GRAN_1USEC>
52
52
  class Timer {
53
53
  private:
54
- struct timeval startTime;
54
+ MonotonicTimeUsec startTime;
55
55
  mutable boost::mutex lock;
56
+
56
57
  public:
57
58
  /**
58
59
  * Creates a new Timer object.
@@ -72,14 +73,8 @@ public:
72
73
  * restart the timer.
73
74
  */
74
75
  void start() {
75
- // TODO: We really use should clock_gettime() and the monotonic
76
- // clock whenever possible, instead of gettimeofday()...
77
- // On OS X we can use mach_absolute_time()
78
76
  boost::lock_guard<boost::mutex> l(lock);
79
- int ret;
80
- do {
81
- ret = gettimeofday(&startTime, NULL);
82
- } while (ret == -1 && errno == EINTR);
77
+ startTime = SystemTime::getMonotonicUsecWithGranularity<granularity>();
83
78
  }
84
79
 
85
80
  /**
@@ -89,8 +84,7 @@ public:
89
84
  */
90
85
  void stop() {
91
86
  boost::lock_guard<boost::mutex> l(lock);
92
- startTime.tv_sec = 0;
93
- startTime.tv_usec = 0;
87
+ startTime = 0;
94
88
  }
95
89
 
96
90
  /**
@@ -99,11 +93,8 @@ public:
99
93
  */
100
94
  void reset() {
101
95
  boost::lock_guard<boost::mutex> l(lock);
102
- if (startTime.tv_sec != 0 || startTime.tv_usec != 0) {
103
- int ret;
104
- do {
105
- ret = gettimeofday(&startTime, NULL);
106
- } while (ret == -1 && errno == EINTR);
96
+ if (startTime != 0) {
97
+ startTime = SystemTime::getMonotonicUsecWithGranularity<granularity>();
107
98
  }
108
99
  }
109
100
 
@@ -113,19 +104,10 @@ public:
113
104
  */
114
105
  unsigned long long elapsed() const {
115
106
  boost::lock_guard<boost::mutex> l(lock);
116
- if (startTime.tv_sec == 0 && startTime.tv_usec == 0) {
107
+ if (startTime == 0) {
117
108
  return 0;
118
109
  } else {
119
- struct timeval t;
120
- unsigned long long now, beginning;
121
- int ret;
122
-
123
- do {
124
- ret = gettimeofday(&t, NULL);
125
- } while (ret == -1 && errno == EINTR);
126
- now = (unsigned long long) t.tv_sec * 1000 + t.tv_usec / 1000;
127
- beginning = (unsigned long long) startTime.tv_sec * 1000 + startTime.tv_usec / 1000;
128
- return now - beginning;
110
+ return (SystemTime::getMonotonicUsecWithGranularity<granularity>() - startTime) / 1000;
129
111
  }
130
112
  }
131
113
 
@@ -133,21 +115,12 @@ public:
133
115
  * Returns the amount of time that has elapsed since the timer was last started,
134
116
  * in microseconds. If the timer is currently stopped, then 0 is returned.
135
117
  */
136
- unsigned long long usecElapsed() const {
118
+ MonotonicTimeUsec usecElapsed() const {
137
119
  boost::lock_guard<boost::mutex> l(lock);
138
- if (startTime.tv_sec == 0 && startTime.tv_usec == 0) {
120
+ if (startTime == 0) {
139
121
  return 0;
140
122
  } else {
141
- struct timeval t;
142
- unsigned long long now, beginning;
143
- int ret;
144
-
145
- do {
146
- ret = gettimeofday(&t, NULL);
147
- } while (ret == -1 && errno == EINTR);
148
- now = (unsigned long long) t.tv_sec * 1000000 + t.tv_usec;
149
- beginning = (unsigned long long) startTime.tv_sec * 1000000 + startTime.tv_usec;
150
- return now - beginning;
123
+ return SystemTime::getMonotonicUsecWithGranularity<granularity>() - startTime;
151
124
  }
152
125
  }
153
126
 
@@ -281,7 +281,7 @@ private:
281
281
  * `timeout` miliseconds for the process to exit.
282
282
  */
283
283
  static int timedWaitPid(pid_t pid, int *status, unsigned long long timeout) {
284
- Timer timer;
284
+ Timer<SystemTime::GRAN_10MSEC> timer;
285
285
  int ret;
286
286
 
287
287
  do {
@@ -113,7 +113,7 @@ host_triplet = @host@
113
113
  @WINNT_TRUE@ -DWIN32_LEAN_AND_MEAN \
114
114
  @WINNT_TRUE@ -D_WIN32_WINNT=0x0600
115
115
 
116
- @WINNT_TRUE@am__append_4 = -lws2_32 -lpsapi -liphlpapi -lshell32
116
+ @WINNT_TRUE@am__append_4 = -lws2_32 -lpsapi -liphlpapi -lshell32 -luserenv
117
117
  @WINNT_TRUE@am__append_5 = src/win/async.c \
118
118
  @WINNT_TRUE@ src/win/atomicops-inl.h \
119
119
  @WINNT_TRUE@ src/win/core.c \
@@ -182,40 +182,41 @@ check_PROGRAMS = test/run-tests$(EXEEXT)
182
182
  @AIX_TRUE@am__append_11 = -D_ALL_SOURCE -D_XOPEN_SOURCE=500 -D_LINUX_SOURCE_COMPAT
183
183
  @SUNOS_TRUE@am__append_12 = -D__EXTENSIONS__ -D_XOPEN_SOURCE=500
184
184
  @AIX_TRUE@am__append_13 = -D_ALL_SOURCE -D_XOPEN_SOURCE=500 -D_LINUX_SOURCE_COMPAT
185
- @AIX_TRUE@am__append_14 = src/unix/aix.c
186
- @ANDROID_TRUE@am__append_15 = include/android-ifaddrs.h \
185
+ @AIX_TRUE@am__append_14 = include/uv-aix.h
186
+ @AIX_TRUE@am__append_15 = src/unix/aix.c
187
+ @ANDROID_TRUE@am__append_16 = include/android-ifaddrs.h \
187
188
  @ANDROID_TRUE@ include/pthread-fixes.h
188
189
 
189
- @ANDROID_TRUE@am__append_16 = src/unix/android-ifaddrs.c \
190
+ @ANDROID_TRUE@am__append_17 = src/unix/android-ifaddrs.c \
190
191
  @ANDROID_TRUE@ src/unix/pthread-fixes.c
191
192
 
192
- @DARWIN_TRUE@am__append_17 = include/uv-darwin.h
193
- @DARWIN_TRUE@am__append_18 = -D_DARWIN_USE_64_BIT_INODE=1 \
193
+ @DARWIN_TRUE@am__append_18 = include/uv-darwin.h
194
+ @DARWIN_TRUE@am__append_19 = -D_DARWIN_USE_64_BIT_INODE=1 \
194
195
  @DARWIN_TRUE@ -D_DARWIN_UNLIMITED_SELECT=1
195
- @DARWIN_TRUE@am__append_19 = src/unix/darwin.c \
196
+ @DARWIN_TRUE@am__append_20 = src/unix/darwin.c \
196
197
  @DARWIN_TRUE@ src/unix/darwin-proctitle.c \
197
198
  @DARWIN_TRUE@ src/unix/fsevents.c \
198
199
  @DARWIN_TRUE@ src/unix/kqueue.c \
199
200
  @DARWIN_TRUE@ src/unix/proctitle.c
200
201
 
201
- @DRAGONFLY_TRUE@am__append_20 = include/uv-bsd.h
202
- @FREEBSD_TRUE@am__append_21 = include/uv-bsd.h
203
- @FREEBSD_TRUE@am__append_22 = src/unix/freebsd.c src/unix/kqueue.c
204
- @LINUX_TRUE@am__append_23 = include/uv-linux.h
205
- @LINUX_TRUE@am__append_24 = -D_GNU_SOURCE
206
- @LINUX_TRUE@am__append_25 = src/unix/linux-core.c \
202
+ @DRAGONFLY_TRUE@am__append_21 = include/uv-bsd.h
203
+ @FREEBSD_TRUE@am__append_22 = include/uv-bsd.h
204
+ @FREEBSD_TRUE@am__append_23 = src/unix/freebsd.c src/unix/kqueue.c
205
+ @LINUX_TRUE@am__append_24 = include/uv-linux.h
206
+ @LINUX_TRUE@am__append_25 = -D_GNU_SOURCE
207
+ @LINUX_TRUE@am__append_26 = src/unix/linux-core.c \
207
208
  @LINUX_TRUE@ src/unix/linux-inotify.c \
208
209
  @LINUX_TRUE@ src/unix/linux-syscalls.c \
209
210
  @LINUX_TRUE@ src/unix/linux-syscalls.h \
210
211
  @LINUX_TRUE@ src/unix/proctitle.c
211
212
 
212
- @NETBSD_TRUE@am__append_26 = include/uv-bsd.h
213
- @NETBSD_TRUE@am__append_27 = src/unix/kqueue.c src/unix/netbsd.c
214
- @OPENBSD_TRUE@am__append_28 = include/uv-bsd.h
215
- @OPENBSD_TRUE@am__append_29 = src/unix/kqueue.c src/unix/openbsd.c
216
- @SUNOS_TRUE@am__append_30 = include/uv-sunos.h
217
- @SUNOS_TRUE@am__append_31 = -D__EXTENSIONS__ -D_XOPEN_SOURCE=500
218
- @SUNOS_TRUE@am__append_32 = src/unix/sunos.c
213
+ @NETBSD_TRUE@am__append_27 = include/uv-bsd.h
214
+ @NETBSD_TRUE@am__append_28 = src/unix/kqueue.c src/unix/netbsd.c
215
+ @OPENBSD_TRUE@am__append_29 = include/uv-bsd.h
216
+ @OPENBSD_TRUE@am__append_30 = src/unix/kqueue.c src/unix/openbsd.c
217
+ @SUNOS_TRUE@am__append_31 = include/uv-sunos.h
218
+ @SUNOS_TRUE@am__append_32 = -D__EXTENSIONS__ -D_XOPEN_SOURCE=500
219
+ @SUNOS_TRUE@am__append_33 = src/unix/sunos.c
219
220
  subdir = .
220
221
  ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
221
222
  am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
@@ -377,24 +378,27 @@ am__test_run_tests_SOURCES_DIST = test/blackhole-server.c \
377
378
  test/test-get-loadavg.c test/test-get-memory.c \
378
379
  test/test-getaddrinfo.c test/test-getnameinfo.c \
379
380
  test/test-getsockname.c test/test-handle-fileno.c \
380
- test/test-hrtime.c test/test-idle.c test/test-ip4-addr.c \
381
- test/test-ip6-addr.c test/test-ipc-send-recv.c test/test-ipc.c \
382
- test/test-list.h test/test-loop-handles.c \
383
- test/test-loop-alive.c test/test-loop-close.c \
384
- test/test-loop-stop.c test/test-loop-time.c \
385
- test/test-loop-configure.c test/test-multiple-listen.c \
386
- test/test-mutexes.c test/test-osx-select.c \
387
- test/test-pass-always.c test/test-ping-pong.c \
388
- test/test-pipe-bind-error.c test/test-pipe-connect-error.c \
389
- test/test-pipe-getsockname.c test/test-pipe-sendmsg.c \
381
+ test/test-homedir.c test/test-hrtime.c test/test-idle.c \
382
+ test/test-ip4-addr.c test/test-ip6-addr.c \
383
+ test/test-ipc-send-recv.c test/test-ipc.c test/test-list.h \
384
+ test/test-loop-handles.c test/test-loop-alive.c \
385
+ test/test-loop-close.c test/test-loop-stop.c \
386
+ test/test-loop-time.c test/test-loop-configure.c \
387
+ test/test-multiple-listen.c test/test-mutexes.c \
388
+ test/test-osx-select.c test/test-pass-always.c \
389
+ test/test-ping-pong.c test/test-pipe-bind-error.c \
390
+ test/test-pipe-connect-error.c \
391
+ test/test-pipe-connect-multiple.c \
392
+ test/test-pipe-connect-prepare.c test/test-pipe-getsockname.c \
393
+ test/test-pipe-pending-instances.c test/test-pipe-sendmsg.c \
390
394
  test/test-pipe-server-close.c \
391
395
  test/test-pipe-close-stdout-read-stdin.c \
392
396
  test/test-pipe-set-non-blocking.c test/test-platform-output.c \
393
397
  test/test-poll-close.c \
394
398
  test/test-poll-close-doesnt-corrupt-stack.c \
395
399
  test/test-poll-closesocket.c test/test-poll.c \
396
- test/test-process-title.c test/test-ref.c \
397
- test/test-run-nowait.c test/test-run-once.c \
400
+ test/test-process-title.c test/test-queue-foreach-delete.c \
401
+ test/test-ref.c test/test-run-nowait.c test/test-run-once.c \
398
402
  test/test-semaphore.c test/test-shutdown-close.c \
399
403
  test/test-shutdown-eof.c test/test-shutdown-twice.c \
400
404
  test/test-signal-multiple-loops.c test/test-signal.c \
@@ -402,6 +406,7 @@ am__test_run_tests_SOURCES_DIST = test/blackhole-server.c \
402
406
  test/test-stdio-over-pipes.c test/test-tcp-bind-error.c \
403
407
  test/test-tcp-bind6-error.c test/test-tcp-close-accept.c \
404
408
  test/test-tcp-close-while-connecting.c test/test-tcp-close.c \
409
+ test/test-tcp-create-socket-early.c \
405
410
  test/test-tcp-connect-error-after-write.c \
406
411
  test/test-tcp-connect-error.c test/test-tcp-connect-timeout.c \
407
412
  test/test-tcp-connect6-error.c test/test-tcp-flags.c \
@@ -415,8 +420,9 @@ am__test_run_tests_SOURCES_DIST = test/blackhole-server.c \
415
420
  test/test-thread.c test/test-threadpool-cancel.c \
416
421
  test/test-threadpool.c test/test-timer-again.c \
417
422
  test/test-timer-from-check.c test/test-timer.c test/test-tty.c \
418
- test/test-udp-bind.c test/test-udp-dgram-too-big.c \
419
- test/test-udp-ipv6.c test/test-udp-multicast-interface.c \
423
+ test/test-udp-bind.c test/test-udp-create-socket-early.c \
424
+ test/test-udp-dgram-too-big.c test/test-udp-ipv6.c \
425
+ test/test-udp-multicast-interface.c \
420
426
  test/test-udp-multicast-interface6.c \
421
427
  test/test-udp-multicast-join.c test/test-udp-multicast-join6.c \
422
428
  test/test-udp-multicast-ttl.c test/test-udp-open.c \
@@ -463,6 +469,7 @@ am_test_run_tests_OBJECTS = \
463
469
  test/test_run_tests-test-getnameinfo.$(OBJEXT) \
464
470
  test/test_run_tests-test-getsockname.$(OBJEXT) \
465
471
  test/test_run_tests-test-handle-fileno.$(OBJEXT) \
472
+ test/test_run_tests-test-homedir.$(OBJEXT) \
466
473
  test/test_run_tests-test-hrtime.$(OBJEXT) \
467
474
  test/test_run_tests-test-idle.$(OBJEXT) \
468
475
  test/test_run_tests-test-ip4-addr.$(OBJEXT) \
@@ -482,7 +489,10 @@ am_test_run_tests_OBJECTS = \
482
489
  test/test_run_tests-test-ping-pong.$(OBJEXT) \
483
490
  test/test_run_tests-test-pipe-bind-error.$(OBJEXT) \
484
491
  test/test_run_tests-test-pipe-connect-error.$(OBJEXT) \
492
+ test/test_run_tests-test-pipe-connect-multiple.$(OBJEXT) \
493
+ test/test_run_tests-test-pipe-connect-prepare.$(OBJEXT) \
485
494
  test/test_run_tests-test-pipe-getsockname.$(OBJEXT) \
495
+ test/test_run_tests-test-pipe-pending-instances.$(OBJEXT) \
486
496
  test/test_run_tests-test-pipe-sendmsg.$(OBJEXT) \
487
497
  test/test_run_tests-test-pipe-server-close.$(OBJEXT) \
488
498
  test/test_run_tests-test-pipe-close-stdout-read-stdin.$(OBJEXT) \
@@ -493,6 +503,7 @@ am_test_run_tests_OBJECTS = \
493
503
  test/test_run_tests-test-poll-closesocket.$(OBJEXT) \
494
504
  test/test_run_tests-test-poll.$(OBJEXT) \
495
505
  test/test_run_tests-test-process-title.$(OBJEXT) \
506
+ test/test_run_tests-test-queue-foreach-delete.$(OBJEXT) \
496
507
  test/test_run_tests-test-ref.$(OBJEXT) \
497
508
  test/test_run_tests-test-run-nowait.$(OBJEXT) \
498
509
  test/test_run_tests-test-run-once.$(OBJEXT) \
@@ -510,6 +521,7 @@ am_test_run_tests_OBJECTS = \
510
521
  test/test_run_tests-test-tcp-close-accept.$(OBJEXT) \
511
522
  test/test_run_tests-test-tcp-close-while-connecting.$(OBJEXT) \
512
523
  test/test_run_tests-test-tcp-close.$(OBJEXT) \
524
+ test/test_run_tests-test-tcp-create-socket-early.$(OBJEXT) \
513
525
  test/test_run_tests-test-tcp-connect-error-after-write.$(OBJEXT) \
514
526
  test/test_run_tests-test-tcp-connect-error.$(OBJEXT) \
515
527
  test/test_run_tests-test-tcp-connect-timeout.$(OBJEXT) \
@@ -535,6 +547,7 @@ am_test_run_tests_OBJECTS = \
535
547
  test/test_run_tests-test-timer.$(OBJEXT) \
536
548
  test/test_run_tests-test-tty.$(OBJEXT) \
537
549
  test/test_run_tests-test-udp-bind.$(OBJEXT) \
550
+ test/test_run_tests-test-udp-create-socket-early.$(OBJEXT) \
538
551
  test/test_run_tests-test-udp-dgram-too-big.$(OBJEXT) \
539
552
  test/test_run_tests-test-udp-ipv6.$(OBJEXT) \
540
553
  test/test_run_tests-test-udp-multicast-interface.$(OBJEXT) \
@@ -602,9 +615,10 @@ am__can_run_installinfo = \
602
615
  DATA = $(pkgconfig_DATA)
603
616
  am__include_HEADERS_DIST = include/uv.h include/uv-errno.h \
604
617
  include/uv-threadpool.h include/uv-version.h include/uv-win.h \
605
- include/tree.h include/uv-unix.h include/android-ifaddrs.h \
606
- include/pthread-fixes.h include/uv-darwin.h include/uv-bsd.h \
607
- include/uv-linux.h include/uv-sunos.h
618
+ include/tree.h include/uv-unix.h include/uv-aix.h \
619
+ include/android-ifaddrs.h include/pthread-fixes.h \
620
+ include/uv-darwin.h include/uv-bsd.h include/uv-linux.h \
621
+ include/uv-sunos.h
608
622
  HEADERS = $(include_HEADERS)
609
623
  am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
610
624
  # Read a list of newline-separated strings from the standard input,
@@ -790,20 +804,21 @@ AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src \
790
804
  $(am__append_3) $(am__append_7)
791
805
  include_HEADERS = include/uv.h include/uv-errno.h \
792
806
  include/uv-threadpool.h include/uv-version.h $(am__append_2) \
793
- $(am__append_6) $(am__append_15) $(am__append_17) \
794
- $(am__append_20) $(am__append_21) $(am__append_23) \
795
- $(am__append_26) $(am__append_28) $(am__append_30)
807
+ $(am__append_6) $(am__append_14) $(am__append_16) \
808
+ $(am__append_18) $(am__append_21) $(am__append_22) \
809
+ $(am__append_24) $(am__append_27) $(am__append_29) \
810
+ $(am__append_31)
796
811
  CLEANFILES =
797
812
  lib_LTLIBRARIES = libuv.la
798
813
  libuv_la_CFLAGS = @CFLAGS@ $(am__append_1) $(am__append_13) \
799
- $(am__append_18) $(am__append_24) $(am__append_31)
814
+ $(am__append_19) $(am__append_25) $(am__append_32)
800
815
  libuv_la_LDFLAGS = -no-undefined -version-info 1:0:0
801
816
  libuv_la_SOURCES = src/fs-poll.c src/heap-inl.h src/inet.c src/queue.h \
802
817
  src/threadpool.c src/uv-common.c src/uv-common.h src/version.c \
803
- $(am__append_5) $(am__append_8) $(am__append_14) \
804
- $(am__append_16) $(am__append_19) $(am__append_22) \
805
- $(am__append_25) $(am__append_27) $(am__append_29) \
806
- $(am__append_32)
818
+ $(am__append_5) $(am__append_8) $(am__append_15) \
819
+ $(am__append_17) $(am__append_20) $(am__append_23) \
820
+ $(am__append_26) $(am__append_28) $(am__append_30) \
821
+ $(am__append_33)
807
822
  EXTRA_DIST = test/fixtures/empty_file \
808
823
  test/fixtures/load_error.node \
809
824
  include \
@@ -838,24 +853,27 @@ test_run_tests_SOURCES = test/blackhole-server.c test/dns-server.c \
838
853
  test/test-get-loadavg.c test/test-get-memory.c \
839
854
  test/test-getaddrinfo.c test/test-getnameinfo.c \
840
855
  test/test-getsockname.c test/test-handle-fileno.c \
841
- test/test-hrtime.c test/test-idle.c test/test-ip4-addr.c \
842
- test/test-ip6-addr.c test/test-ipc-send-recv.c test/test-ipc.c \
843
- test/test-list.h test/test-loop-handles.c \
844
- test/test-loop-alive.c test/test-loop-close.c \
845
- test/test-loop-stop.c test/test-loop-time.c \
846
- test/test-loop-configure.c test/test-multiple-listen.c \
847
- test/test-mutexes.c test/test-osx-select.c \
848
- test/test-pass-always.c test/test-ping-pong.c \
849
- test/test-pipe-bind-error.c test/test-pipe-connect-error.c \
850
- test/test-pipe-getsockname.c test/test-pipe-sendmsg.c \
856
+ test/test-homedir.c test/test-hrtime.c test/test-idle.c \
857
+ test/test-ip4-addr.c test/test-ip6-addr.c \
858
+ test/test-ipc-send-recv.c test/test-ipc.c test/test-list.h \
859
+ test/test-loop-handles.c test/test-loop-alive.c \
860
+ test/test-loop-close.c test/test-loop-stop.c \
861
+ test/test-loop-time.c test/test-loop-configure.c \
862
+ test/test-multiple-listen.c test/test-mutexes.c \
863
+ test/test-osx-select.c test/test-pass-always.c \
864
+ test/test-ping-pong.c test/test-pipe-bind-error.c \
865
+ test/test-pipe-connect-error.c \
866
+ test/test-pipe-connect-multiple.c \
867
+ test/test-pipe-connect-prepare.c test/test-pipe-getsockname.c \
868
+ test/test-pipe-pending-instances.c test/test-pipe-sendmsg.c \
851
869
  test/test-pipe-server-close.c \
852
870
  test/test-pipe-close-stdout-read-stdin.c \
853
871
  test/test-pipe-set-non-blocking.c test/test-platform-output.c \
854
872
  test/test-poll-close.c \
855
873
  test/test-poll-close-doesnt-corrupt-stack.c \
856
874
  test/test-poll-closesocket.c test/test-poll.c \
857
- test/test-process-title.c test/test-ref.c \
858
- test/test-run-nowait.c test/test-run-once.c \
875
+ test/test-process-title.c test/test-queue-foreach-delete.c \
876
+ test/test-ref.c test/test-run-nowait.c test/test-run-once.c \
859
877
  test/test-semaphore.c test/test-shutdown-close.c \
860
878
  test/test-shutdown-eof.c test/test-shutdown-twice.c \
861
879
  test/test-signal-multiple-loops.c test/test-signal.c \
@@ -863,6 +881,7 @@ test_run_tests_SOURCES = test/blackhole-server.c test/dns-server.c \
863
881
  test/test-stdio-over-pipes.c test/test-tcp-bind-error.c \
864
882
  test/test-tcp-bind6-error.c test/test-tcp-close-accept.c \
865
883
  test/test-tcp-close-while-connecting.c test/test-tcp-close.c \
884
+ test/test-tcp-create-socket-early.c \
866
885
  test/test-tcp-connect-error-after-write.c \
867
886
  test/test-tcp-connect-error.c test/test-tcp-connect-timeout.c \
868
887
  test/test-tcp-connect6-error.c test/test-tcp-flags.c \
@@ -876,8 +895,9 @@ test_run_tests_SOURCES = test/blackhole-server.c test/dns-server.c \
876
895
  test/test-thread.c test/test-threadpool-cancel.c \
877
896
  test/test-threadpool.c test/test-timer-again.c \
878
897
  test/test-timer-from-check.c test/test-timer.c test/test-tty.c \
879
- test/test-udp-bind.c test/test-udp-dgram-too-big.c \
880
- test/test-udp-ipv6.c test/test-udp-multicast-interface.c \
898
+ test/test-udp-bind.c test/test-udp-create-socket-early.c \
899
+ test/test-udp-dgram-too-big.c test/test-udp-ipv6.c \
900
+ test/test-udp-multicast-interface.c \
881
901
  test/test-udp-multicast-interface6.c \
882
902
  test/test-udp-multicast-join.c test/test-udp-multicast-join6.c \
883
903
  test/test-udp-multicast-ttl.c test/test-udp-open.c \
@@ -1191,6 +1211,8 @@ test/test_run_tests-test-getsockname.$(OBJEXT): test/$(am__dirstamp) \
1191
1211
  test/$(DEPDIR)/$(am__dirstamp)
1192
1212
  test/test_run_tests-test-handle-fileno.$(OBJEXT): \
1193
1213
  test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
1214
+ test/test_run_tests-test-homedir.$(OBJEXT): test/$(am__dirstamp) \
1215
+ test/$(DEPDIR)/$(am__dirstamp)
1194
1216
  test/test_run_tests-test-hrtime.$(OBJEXT): test/$(am__dirstamp) \
1195
1217
  test/$(DEPDIR)/$(am__dirstamp)
1196
1218
  test/test_run_tests-test-idle.$(OBJEXT): test/$(am__dirstamp) \
@@ -1229,8 +1251,14 @@ test/test_run_tests-test-pipe-bind-error.$(OBJEXT): \
1229
1251
  test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
1230
1252
  test/test_run_tests-test-pipe-connect-error.$(OBJEXT): \
1231
1253
  test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
1254
+ test/test_run_tests-test-pipe-connect-multiple.$(OBJEXT): \
1255
+ test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
1256
+ test/test_run_tests-test-pipe-connect-prepare.$(OBJEXT): \
1257
+ test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
1232
1258
  test/test_run_tests-test-pipe-getsockname.$(OBJEXT): \
1233
1259
  test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
1260
+ test/test_run_tests-test-pipe-pending-instances.$(OBJEXT): \
1261
+ test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
1234
1262
  test/test_run_tests-test-pipe-sendmsg.$(OBJEXT): test/$(am__dirstamp) \
1235
1263
  test/$(DEPDIR)/$(am__dirstamp)
1236
1264
  test/test_run_tests-test-pipe-server-close.$(OBJEXT): \
@@ -1251,6 +1279,8 @@ test/test_run_tests-test-poll.$(OBJEXT): test/$(am__dirstamp) \
1251
1279
  test/$(DEPDIR)/$(am__dirstamp)
1252
1280
  test/test_run_tests-test-process-title.$(OBJEXT): \
1253
1281
  test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
1282
+ test/test_run_tests-test-queue-foreach-delete.$(OBJEXT): \
1283
+ test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
1254
1284
  test/test_run_tests-test-ref.$(OBJEXT): test/$(am__dirstamp) \
1255
1285
  test/$(DEPDIR)/$(am__dirstamp)
1256
1286
  test/test_run_tests-test-run-nowait.$(OBJEXT): test/$(am__dirstamp) \
@@ -1285,6 +1315,8 @@ test/test_run_tests-test-tcp-close-while-connecting.$(OBJEXT): \
1285
1315
  test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
1286
1316
  test/test_run_tests-test-tcp-close.$(OBJEXT): test/$(am__dirstamp) \
1287
1317
  test/$(DEPDIR)/$(am__dirstamp)
1318
+ test/test_run_tests-test-tcp-create-socket-early.$(OBJEXT): \
1319
+ test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
1288
1320
  test/test_run_tests-test-tcp-connect-error-after-write.$(OBJEXT): \
1289
1321
  test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
1290
1322
  test/test_run_tests-test-tcp-connect-error.$(OBJEXT): \
@@ -1335,6 +1367,8 @@ test/test_run_tests-test-tty.$(OBJEXT): test/$(am__dirstamp) \
1335
1367
  test/$(DEPDIR)/$(am__dirstamp)
1336
1368
  test/test_run_tests-test-udp-bind.$(OBJEXT): test/$(am__dirstamp) \
1337
1369
  test/$(DEPDIR)/$(am__dirstamp)
1370
+ test/test_run_tests-test-udp-create-socket-early.$(OBJEXT): \
1371
+ test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
1338
1372
  test/test_run_tests-test-udp-dgram-too-big.$(OBJEXT): \
1339
1373
  test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
1340
1374
  test/test_run_tests-test-udp-ipv6.$(OBJEXT): test/$(am__dirstamp) \
@@ -1485,6 +1519,7 @@ distclean-compile:
1485
1519
  @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_run_tests-test-getnameinfo.Po@am__quote@
1486
1520
  @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_run_tests-test-getsockname.Po@am__quote@
1487
1521
  @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_run_tests-test-handle-fileno.Po@am__quote@
1522
+ @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_run_tests-test-homedir.Po@am__quote@
1488
1523
  @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_run_tests-test-hrtime.Po@am__quote@
1489
1524
  @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_run_tests-test-idle.Po@am__quote@
1490
1525
  @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_run_tests-test-ip4-addr.Po@am__quote@
@@ -1505,7 +1540,10 @@ distclean-compile:
1505
1540
  @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_run_tests-test-pipe-bind-error.Po@am__quote@
1506
1541
  @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_run_tests-test-pipe-close-stdout-read-stdin.Po@am__quote@
1507
1542
  @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_run_tests-test-pipe-connect-error.Po@am__quote@
1543
+ @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_run_tests-test-pipe-connect-multiple.Po@am__quote@
1544
+ @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_run_tests-test-pipe-connect-prepare.Po@am__quote@
1508
1545
  @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_run_tests-test-pipe-getsockname.Po@am__quote@
1546
+ @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_run_tests-test-pipe-pending-instances.Po@am__quote@
1509
1547
  @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_run_tests-test-pipe-sendmsg.Po@am__quote@
1510
1548
  @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_run_tests-test-pipe-server-close.Po@am__quote@
1511
1549
  @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_run_tests-test-pipe-set-non-blocking.Po@am__quote@
@@ -1515,6 +1553,7 @@ distclean-compile:
1515
1553
  @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_run_tests-test-poll-closesocket.Po@am__quote@
1516
1554
  @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_run_tests-test-poll.Po@am__quote@
1517
1555
  @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_run_tests-test-process-title.Po@am__quote@
1556
+ @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_run_tests-test-queue-foreach-delete.Po@am__quote@
1518
1557
  @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_run_tests-test-ref.Po@am__quote@
1519
1558
  @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_run_tests-test-run-nowait.Po@am__quote@
1520
1559
  @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_run_tests-test-run-once.Po@am__quote@
@@ -1536,6 +1575,7 @@ distclean-compile:
1536
1575
  @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_run_tests-test-tcp-connect-error.Po@am__quote@
1537
1576
  @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_run_tests-test-tcp-connect-timeout.Po@am__quote@
1538
1577
  @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_run_tests-test-tcp-connect6-error.Po@am__quote@
1578
+ @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_run_tests-test-tcp-create-socket-early.Po@am__quote@
1539
1579
  @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_run_tests-test-tcp-flags.Po@am__quote@
1540
1580
  @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_run_tests-test-tcp-oob.Po@am__quote@
1541
1581
  @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_run_tests-test-tcp-open.Po@am__quote@
@@ -1557,6 +1597,7 @@ distclean-compile:
1557
1597
  @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_run_tests-test-timer.Po@am__quote@
1558
1598
  @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_run_tests-test-tty.Po@am__quote@
1559
1599
  @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_run_tests-test-udp-bind.Po@am__quote@
1600
+ @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_run_tests-test-udp-create-socket-early.Po@am__quote@
1560
1601
  @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_run_tests-test-udp-dgram-too-big.Po@am__quote@
1561
1602
  @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_run_tests-test-udp-ipv6.Po@am__quote@
1562
1603
  @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_run_tests-test-udp-multicast-interface.Po@am__quote@
@@ -2500,6 +2541,20 @@ test/test_run_tests-test-handle-fileno.obj: test/test-handle-fileno.c
2500
2541
  @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2501
2542
  @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/test_run_tests-test-handle-fileno.obj `if test -f 'test/test-handle-fileno.c'; then $(CYGPATH_W) 'test/test-handle-fileno.c'; else $(CYGPATH_W) '$(srcdir)/test/test-handle-fileno.c'; fi`
2502
2543
 
2544
+ test/test_run_tests-test-homedir.o: test/test-homedir.c
2545
+ @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/test_run_tests-test-homedir.o -MD -MP -MF test/$(DEPDIR)/test_run_tests-test-homedir.Tpo -c -o test/test_run_tests-test-homedir.o `test -f 'test/test-homedir.c' || echo '$(srcdir)/'`test/test-homedir.c
2546
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/test_run_tests-test-homedir.Tpo test/$(DEPDIR)/test_run_tests-test-homedir.Po
2547
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-homedir.c' object='test/test_run_tests-test-homedir.o' libtool=no @AMDEPBACKSLASH@
2548
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2549
+ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/test_run_tests-test-homedir.o `test -f 'test/test-homedir.c' || echo '$(srcdir)/'`test/test-homedir.c
2550
+
2551
+ test/test_run_tests-test-homedir.obj: test/test-homedir.c
2552
+ @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/test_run_tests-test-homedir.obj -MD -MP -MF test/$(DEPDIR)/test_run_tests-test-homedir.Tpo -c -o test/test_run_tests-test-homedir.obj `if test -f 'test/test-homedir.c'; then $(CYGPATH_W) 'test/test-homedir.c'; else $(CYGPATH_W) '$(srcdir)/test/test-homedir.c'; fi`
2553
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/test_run_tests-test-homedir.Tpo test/$(DEPDIR)/test_run_tests-test-homedir.Po
2554
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-homedir.c' object='test/test_run_tests-test-homedir.obj' libtool=no @AMDEPBACKSLASH@
2555
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2556
+ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/test_run_tests-test-homedir.obj `if test -f 'test/test-homedir.c'; then $(CYGPATH_W) 'test/test-homedir.c'; else $(CYGPATH_W) '$(srcdir)/test/test-homedir.c'; fi`
2557
+
2503
2558
  test/test_run_tests-test-hrtime.o: test/test-hrtime.c
2504
2559
  @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/test_run_tests-test-hrtime.o -MD -MP -MF test/$(DEPDIR)/test_run_tests-test-hrtime.Tpo -c -o test/test_run_tests-test-hrtime.o `test -f 'test/test-hrtime.c' || echo '$(srcdir)/'`test/test-hrtime.c
2505
2560
  @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/test_run_tests-test-hrtime.Tpo test/$(DEPDIR)/test_run_tests-test-hrtime.Po
@@ -2766,6 +2821,34 @@ test/test_run_tests-test-pipe-connect-error.obj: test/test-pipe-connect-error.c
2766
2821
  @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2767
2822
  @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/test_run_tests-test-pipe-connect-error.obj `if test -f 'test/test-pipe-connect-error.c'; then $(CYGPATH_W) 'test/test-pipe-connect-error.c'; else $(CYGPATH_W) '$(srcdir)/test/test-pipe-connect-error.c'; fi`
2768
2823
 
2824
+ test/test_run_tests-test-pipe-connect-multiple.o: test/test-pipe-connect-multiple.c
2825
+ @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/test_run_tests-test-pipe-connect-multiple.o -MD -MP -MF test/$(DEPDIR)/test_run_tests-test-pipe-connect-multiple.Tpo -c -o test/test_run_tests-test-pipe-connect-multiple.o `test -f 'test/test-pipe-connect-multiple.c' || echo '$(srcdir)/'`test/test-pipe-connect-multiple.c
2826
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/test_run_tests-test-pipe-connect-multiple.Tpo test/$(DEPDIR)/test_run_tests-test-pipe-connect-multiple.Po
2827
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-pipe-connect-multiple.c' object='test/test_run_tests-test-pipe-connect-multiple.o' libtool=no @AMDEPBACKSLASH@
2828
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2829
+ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/test_run_tests-test-pipe-connect-multiple.o `test -f 'test/test-pipe-connect-multiple.c' || echo '$(srcdir)/'`test/test-pipe-connect-multiple.c
2830
+
2831
+ test/test_run_tests-test-pipe-connect-multiple.obj: test/test-pipe-connect-multiple.c
2832
+ @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/test_run_tests-test-pipe-connect-multiple.obj -MD -MP -MF test/$(DEPDIR)/test_run_tests-test-pipe-connect-multiple.Tpo -c -o test/test_run_tests-test-pipe-connect-multiple.obj `if test -f 'test/test-pipe-connect-multiple.c'; then $(CYGPATH_W) 'test/test-pipe-connect-multiple.c'; else $(CYGPATH_W) '$(srcdir)/test/test-pipe-connect-multiple.c'; fi`
2833
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/test_run_tests-test-pipe-connect-multiple.Tpo test/$(DEPDIR)/test_run_tests-test-pipe-connect-multiple.Po
2834
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-pipe-connect-multiple.c' object='test/test_run_tests-test-pipe-connect-multiple.obj' libtool=no @AMDEPBACKSLASH@
2835
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2836
+ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/test_run_tests-test-pipe-connect-multiple.obj `if test -f 'test/test-pipe-connect-multiple.c'; then $(CYGPATH_W) 'test/test-pipe-connect-multiple.c'; else $(CYGPATH_W) '$(srcdir)/test/test-pipe-connect-multiple.c'; fi`
2837
+
2838
+ test/test_run_tests-test-pipe-connect-prepare.o: test/test-pipe-connect-prepare.c
2839
+ @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/test_run_tests-test-pipe-connect-prepare.o -MD -MP -MF test/$(DEPDIR)/test_run_tests-test-pipe-connect-prepare.Tpo -c -o test/test_run_tests-test-pipe-connect-prepare.o `test -f 'test/test-pipe-connect-prepare.c' || echo '$(srcdir)/'`test/test-pipe-connect-prepare.c
2840
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/test_run_tests-test-pipe-connect-prepare.Tpo test/$(DEPDIR)/test_run_tests-test-pipe-connect-prepare.Po
2841
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-pipe-connect-prepare.c' object='test/test_run_tests-test-pipe-connect-prepare.o' libtool=no @AMDEPBACKSLASH@
2842
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2843
+ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/test_run_tests-test-pipe-connect-prepare.o `test -f 'test/test-pipe-connect-prepare.c' || echo '$(srcdir)/'`test/test-pipe-connect-prepare.c
2844
+
2845
+ test/test_run_tests-test-pipe-connect-prepare.obj: test/test-pipe-connect-prepare.c
2846
+ @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/test_run_tests-test-pipe-connect-prepare.obj -MD -MP -MF test/$(DEPDIR)/test_run_tests-test-pipe-connect-prepare.Tpo -c -o test/test_run_tests-test-pipe-connect-prepare.obj `if test -f 'test/test-pipe-connect-prepare.c'; then $(CYGPATH_W) 'test/test-pipe-connect-prepare.c'; else $(CYGPATH_W) '$(srcdir)/test/test-pipe-connect-prepare.c'; fi`
2847
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/test_run_tests-test-pipe-connect-prepare.Tpo test/$(DEPDIR)/test_run_tests-test-pipe-connect-prepare.Po
2848
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-pipe-connect-prepare.c' object='test/test_run_tests-test-pipe-connect-prepare.obj' libtool=no @AMDEPBACKSLASH@
2849
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2850
+ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/test_run_tests-test-pipe-connect-prepare.obj `if test -f 'test/test-pipe-connect-prepare.c'; then $(CYGPATH_W) 'test/test-pipe-connect-prepare.c'; else $(CYGPATH_W) '$(srcdir)/test/test-pipe-connect-prepare.c'; fi`
2851
+
2769
2852
  test/test_run_tests-test-pipe-getsockname.o: test/test-pipe-getsockname.c
2770
2853
  @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/test_run_tests-test-pipe-getsockname.o -MD -MP -MF test/$(DEPDIR)/test_run_tests-test-pipe-getsockname.Tpo -c -o test/test_run_tests-test-pipe-getsockname.o `test -f 'test/test-pipe-getsockname.c' || echo '$(srcdir)/'`test/test-pipe-getsockname.c
2771
2854
  @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/test_run_tests-test-pipe-getsockname.Tpo test/$(DEPDIR)/test_run_tests-test-pipe-getsockname.Po
@@ -2780,6 +2863,20 @@ test/test_run_tests-test-pipe-getsockname.obj: test/test-pipe-getsockname.c
2780
2863
  @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2781
2864
  @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/test_run_tests-test-pipe-getsockname.obj `if test -f 'test/test-pipe-getsockname.c'; then $(CYGPATH_W) 'test/test-pipe-getsockname.c'; else $(CYGPATH_W) '$(srcdir)/test/test-pipe-getsockname.c'; fi`
2782
2865
 
2866
+ test/test_run_tests-test-pipe-pending-instances.o: test/test-pipe-pending-instances.c
2867
+ @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/test_run_tests-test-pipe-pending-instances.o -MD -MP -MF test/$(DEPDIR)/test_run_tests-test-pipe-pending-instances.Tpo -c -o test/test_run_tests-test-pipe-pending-instances.o `test -f 'test/test-pipe-pending-instances.c' || echo '$(srcdir)/'`test/test-pipe-pending-instances.c
2868
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/test_run_tests-test-pipe-pending-instances.Tpo test/$(DEPDIR)/test_run_tests-test-pipe-pending-instances.Po
2869
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-pipe-pending-instances.c' object='test/test_run_tests-test-pipe-pending-instances.o' libtool=no @AMDEPBACKSLASH@
2870
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2871
+ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/test_run_tests-test-pipe-pending-instances.o `test -f 'test/test-pipe-pending-instances.c' || echo '$(srcdir)/'`test/test-pipe-pending-instances.c
2872
+
2873
+ test/test_run_tests-test-pipe-pending-instances.obj: test/test-pipe-pending-instances.c
2874
+ @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/test_run_tests-test-pipe-pending-instances.obj -MD -MP -MF test/$(DEPDIR)/test_run_tests-test-pipe-pending-instances.Tpo -c -o test/test_run_tests-test-pipe-pending-instances.obj `if test -f 'test/test-pipe-pending-instances.c'; then $(CYGPATH_W) 'test/test-pipe-pending-instances.c'; else $(CYGPATH_W) '$(srcdir)/test/test-pipe-pending-instances.c'; fi`
2875
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/test_run_tests-test-pipe-pending-instances.Tpo test/$(DEPDIR)/test_run_tests-test-pipe-pending-instances.Po
2876
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-pipe-pending-instances.c' object='test/test_run_tests-test-pipe-pending-instances.obj' libtool=no @AMDEPBACKSLASH@
2877
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2878
+ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/test_run_tests-test-pipe-pending-instances.obj `if test -f 'test/test-pipe-pending-instances.c'; then $(CYGPATH_W) 'test/test-pipe-pending-instances.c'; else $(CYGPATH_W) '$(srcdir)/test/test-pipe-pending-instances.c'; fi`
2879
+
2783
2880
  test/test_run_tests-test-pipe-sendmsg.o: test/test-pipe-sendmsg.c
2784
2881
  @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/test_run_tests-test-pipe-sendmsg.o -MD -MP -MF test/$(DEPDIR)/test_run_tests-test-pipe-sendmsg.Tpo -c -o test/test_run_tests-test-pipe-sendmsg.o `test -f 'test/test-pipe-sendmsg.c' || echo '$(srcdir)/'`test/test-pipe-sendmsg.c
2785
2882
  @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/test_run_tests-test-pipe-sendmsg.Tpo test/$(DEPDIR)/test_run_tests-test-pipe-sendmsg.Po
@@ -2920,6 +3017,20 @@ test/test_run_tests-test-process-title.obj: test/test-process-title.c
2920
3017
  @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2921
3018
  @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/test_run_tests-test-process-title.obj `if test -f 'test/test-process-title.c'; then $(CYGPATH_W) 'test/test-process-title.c'; else $(CYGPATH_W) '$(srcdir)/test/test-process-title.c'; fi`
2922
3019
 
3020
+ test/test_run_tests-test-queue-foreach-delete.o: test/test-queue-foreach-delete.c
3021
+ @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/test_run_tests-test-queue-foreach-delete.o -MD -MP -MF test/$(DEPDIR)/test_run_tests-test-queue-foreach-delete.Tpo -c -o test/test_run_tests-test-queue-foreach-delete.o `test -f 'test/test-queue-foreach-delete.c' || echo '$(srcdir)/'`test/test-queue-foreach-delete.c
3022
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/test_run_tests-test-queue-foreach-delete.Tpo test/$(DEPDIR)/test_run_tests-test-queue-foreach-delete.Po
3023
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-queue-foreach-delete.c' object='test/test_run_tests-test-queue-foreach-delete.o' libtool=no @AMDEPBACKSLASH@
3024
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3025
+ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/test_run_tests-test-queue-foreach-delete.o `test -f 'test/test-queue-foreach-delete.c' || echo '$(srcdir)/'`test/test-queue-foreach-delete.c
3026
+
3027
+ test/test_run_tests-test-queue-foreach-delete.obj: test/test-queue-foreach-delete.c
3028
+ @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/test_run_tests-test-queue-foreach-delete.obj -MD -MP -MF test/$(DEPDIR)/test_run_tests-test-queue-foreach-delete.Tpo -c -o test/test_run_tests-test-queue-foreach-delete.obj `if test -f 'test/test-queue-foreach-delete.c'; then $(CYGPATH_W) 'test/test-queue-foreach-delete.c'; else $(CYGPATH_W) '$(srcdir)/test/test-queue-foreach-delete.c'; fi`
3029
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/test_run_tests-test-queue-foreach-delete.Tpo test/$(DEPDIR)/test_run_tests-test-queue-foreach-delete.Po
3030
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-queue-foreach-delete.c' object='test/test_run_tests-test-queue-foreach-delete.obj' libtool=no @AMDEPBACKSLASH@
3031
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3032
+ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/test_run_tests-test-queue-foreach-delete.obj `if test -f 'test/test-queue-foreach-delete.c'; then $(CYGPATH_W) 'test/test-queue-foreach-delete.c'; else $(CYGPATH_W) '$(srcdir)/test/test-queue-foreach-delete.c'; fi`
3033
+
2923
3034
  test/test_run_tests-test-ref.o: test/test-ref.c
2924
3035
  @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/test_run_tests-test-ref.o -MD -MP -MF test/$(DEPDIR)/test_run_tests-test-ref.Tpo -c -o test/test_run_tests-test-ref.o `test -f 'test/test-ref.c' || echo '$(srcdir)/'`test/test-ref.c
2925
3036
  @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/test_run_tests-test-ref.Tpo test/$(DEPDIR)/test_run_tests-test-ref.Po
@@ -3158,6 +3269,20 @@ test/test_run_tests-test-tcp-close.obj: test/test-tcp-close.c
3158
3269
  @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3159
3270
  @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/test_run_tests-test-tcp-close.obj `if test -f 'test/test-tcp-close.c'; then $(CYGPATH_W) 'test/test-tcp-close.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-close.c'; fi`
3160
3271
 
3272
+ test/test_run_tests-test-tcp-create-socket-early.o: test/test-tcp-create-socket-early.c
3273
+ @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/test_run_tests-test-tcp-create-socket-early.o -MD -MP -MF test/$(DEPDIR)/test_run_tests-test-tcp-create-socket-early.Tpo -c -o test/test_run_tests-test-tcp-create-socket-early.o `test -f 'test/test-tcp-create-socket-early.c' || echo '$(srcdir)/'`test/test-tcp-create-socket-early.c
3274
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/test_run_tests-test-tcp-create-socket-early.Tpo test/$(DEPDIR)/test_run_tests-test-tcp-create-socket-early.Po
3275
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-create-socket-early.c' object='test/test_run_tests-test-tcp-create-socket-early.o' libtool=no @AMDEPBACKSLASH@
3276
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3277
+ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/test_run_tests-test-tcp-create-socket-early.o `test -f 'test/test-tcp-create-socket-early.c' || echo '$(srcdir)/'`test/test-tcp-create-socket-early.c
3278
+
3279
+ test/test_run_tests-test-tcp-create-socket-early.obj: test/test-tcp-create-socket-early.c
3280
+ @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/test_run_tests-test-tcp-create-socket-early.obj -MD -MP -MF test/$(DEPDIR)/test_run_tests-test-tcp-create-socket-early.Tpo -c -o test/test_run_tests-test-tcp-create-socket-early.obj `if test -f 'test/test-tcp-create-socket-early.c'; then $(CYGPATH_W) 'test/test-tcp-create-socket-early.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-create-socket-early.c'; fi`
3281
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/test_run_tests-test-tcp-create-socket-early.Tpo test/$(DEPDIR)/test_run_tests-test-tcp-create-socket-early.Po
3282
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-create-socket-early.c' object='test/test_run_tests-test-tcp-create-socket-early.obj' libtool=no @AMDEPBACKSLASH@
3283
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3284
+ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/test_run_tests-test-tcp-create-socket-early.obj `if test -f 'test/test-tcp-create-socket-early.c'; then $(CYGPATH_W) 'test/test-tcp-create-socket-early.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-create-socket-early.c'; fi`
3285
+
3161
3286
  test/test_run_tests-test-tcp-connect-error-after-write.o: test/test-tcp-connect-error-after-write.c
3162
3287
  @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/test_run_tests-test-tcp-connect-error-after-write.o -MD -MP -MF test/$(DEPDIR)/test_run_tests-test-tcp-connect-error-after-write.Tpo -c -o test/test_run_tests-test-tcp-connect-error-after-write.o `test -f 'test/test-tcp-connect-error-after-write.c' || echo '$(srcdir)/'`test/test-tcp-connect-error-after-write.c
3163
3288
  @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/test_run_tests-test-tcp-connect-error-after-write.Tpo test/$(DEPDIR)/test_run_tests-test-tcp-connect-error-after-write.Po
@@ -3508,6 +3633,20 @@ test/test_run_tests-test-udp-bind.obj: test/test-udp-bind.c
3508
3633
  @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3509
3634
  @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/test_run_tests-test-udp-bind.obj `if test -f 'test/test-udp-bind.c'; then $(CYGPATH_W) 'test/test-udp-bind.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-bind.c'; fi`
3510
3635
 
3636
+ test/test_run_tests-test-udp-create-socket-early.o: test/test-udp-create-socket-early.c
3637
+ @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/test_run_tests-test-udp-create-socket-early.o -MD -MP -MF test/$(DEPDIR)/test_run_tests-test-udp-create-socket-early.Tpo -c -o test/test_run_tests-test-udp-create-socket-early.o `test -f 'test/test-udp-create-socket-early.c' || echo '$(srcdir)/'`test/test-udp-create-socket-early.c
3638
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/test_run_tests-test-udp-create-socket-early.Tpo test/$(DEPDIR)/test_run_tests-test-udp-create-socket-early.Po
3639
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-create-socket-early.c' object='test/test_run_tests-test-udp-create-socket-early.o' libtool=no @AMDEPBACKSLASH@
3640
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3641
+ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/test_run_tests-test-udp-create-socket-early.o `test -f 'test/test-udp-create-socket-early.c' || echo '$(srcdir)/'`test/test-udp-create-socket-early.c
3642
+
3643
+ test/test_run_tests-test-udp-create-socket-early.obj: test/test-udp-create-socket-early.c
3644
+ @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/test_run_tests-test-udp-create-socket-early.obj -MD -MP -MF test/$(DEPDIR)/test_run_tests-test-udp-create-socket-early.Tpo -c -o test/test_run_tests-test-udp-create-socket-early.obj `if test -f 'test/test-udp-create-socket-early.c'; then $(CYGPATH_W) 'test/test-udp-create-socket-early.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-create-socket-early.c'; fi`
3645
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/test_run_tests-test-udp-create-socket-early.Tpo test/$(DEPDIR)/test_run_tests-test-udp-create-socket-early.Po
3646
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-create-socket-early.c' object='test/test_run_tests-test-udp-create-socket-early.obj' libtool=no @AMDEPBACKSLASH@
3647
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3648
+ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/test_run_tests-test-udp-create-socket-early.obj `if test -f 'test/test-udp-create-socket-early.c'; then $(CYGPATH_W) 'test/test-udp-create-socket-early.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-create-socket-early.c'; fi`
3649
+
3511
3650
  test/test_run_tests-test-udp-dgram-too-big.o: test/test-udp-dgram-too-big.c
3512
3651
  @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/test_run_tests-test-udp-dgram-too-big.o -MD -MP -MF test/$(DEPDIR)/test_run_tests-test-udp-dgram-too-big.Tpo -c -o test/test_run_tests-test-udp-dgram-too-big.o `test -f 'test/test-udp-dgram-too-big.c' || echo '$(srcdir)/'`test/test-udp-dgram-too-big.c
3513
3652
  @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/test_run_tests-test-udp-dgram-too-big.Tpo test/$(DEPDIR)/test_run_tests-test-udp-dgram-too-big.Po