mt-libuv 4.1.0 → 4.1.03

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2094) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/ext/Rakefile +1 -1
  4. data/ext/gyp/.gitignore +1 -0
  5. data/ext/gyp/AUTHORS +17 -0
  6. data/ext/gyp/DEPS +23 -0
  7. data/ext/gyp/LICENSE +27 -0
  8. data/ext/gyp/OWNERS +1 -0
  9. data/ext/gyp/PRESUBMIT.py +125 -0
  10. data/ext/gyp/README.md +5 -0
  11. data/ext/gyp/buildbot/buildbot_run.py +138 -0
  12. data/ext/gyp/buildbot/commit_queue/OWNERS +6 -0
  13. data/ext/gyp/buildbot/commit_queue/README +3 -0
  14. data/ext/gyp/buildbot/commit_queue/cq_config.json +15 -0
  15. data/ext/gyp/buildbot/travis-checkout.sh +27 -0
  16. data/ext/gyp/buildbot/travis-test.sh +12 -0
  17. data/ext/gyp/codereview.settings +6 -0
  18. data/ext/gyp/data/win/large-pdb-shim.cc +12 -0
  19. data/ext/gyp/gyp +8 -0
  20. data/ext/gyp/gyp.bat +5 -0
  21. data/ext/gyp/gyp_main.py +16 -0
  22. data/ext/gyp/gyptest.py +243 -0
  23. data/ext/gyp/pylib/gyp/MSVSNew.py +353 -0
  24. data/ext/gyp/pylib/gyp/MSVSProject.py +208 -0
  25. data/ext/gyp/pylib/gyp/MSVSSettings.py +1106 -0
  26. data/ext/gyp/pylib/gyp/MSVSSettings_test.py +1486 -0
  27. data/ext/gyp/pylib/gyp/MSVSToolFile.py +58 -0
  28. data/ext/gyp/pylib/gyp/MSVSUserFile.py +147 -0
  29. data/ext/gyp/pylib/gyp/MSVSUtil.py +271 -0
  30. data/ext/gyp/pylib/gyp/MSVSVersion.py +504 -0
  31. data/ext/gyp/pylib/gyp/__init__.py +555 -0
  32. data/ext/gyp/pylib/gyp/common.py +619 -0
  33. data/ext/gyp/pylib/gyp/common_test.py +73 -0
  34. data/ext/gyp/pylib/gyp/easy_xml.py +170 -0
  35. data/ext/gyp/pylib/gyp/easy_xml_test.py +106 -0
  36. data/ext/gyp/pylib/gyp/flock_tool.py +54 -0
  37. data/ext/gyp/pylib/gyp/generator/__init__.py +0 -0
  38. data/ext/gyp/pylib/gyp/generator/analyzer.py +744 -0
  39. data/ext/gyp/pylib/gyp/generator/cmake.py +1256 -0
  40. data/ext/gyp/pylib/gyp/generator/dump_dependency_json.py +101 -0
  41. data/ext/gyp/pylib/gyp/generator/eclipse.py +425 -0
  42. data/ext/gyp/pylib/gyp/generator/gypd.py +94 -0
  43. data/ext/gyp/pylib/gyp/generator/gypsh.py +56 -0
  44. data/ext/gyp/pylib/gyp/generator/make.py +2260 -0
  45. data/ext/gyp/pylib/gyp/generator/msvs.py +3537 -0
  46. data/ext/gyp/pylib/gyp/generator/msvs_test.py +40 -0
  47. data/ext/gyp/pylib/gyp/generator/ninja.py +2500 -0
  48. data/ext/gyp/pylib/gyp/generator/ninja_test.py +46 -0
  49. data/ext/gyp/pylib/gyp/generator/xcode.py +1302 -0
  50. data/ext/gyp/pylib/gyp/generator/xcode_test.py +23 -0
  51. data/ext/gyp/pylib/gyp/input.py +2908 -0
  52. data/ext/gyp/pylib/gyp/input_test.py +90 -0
  53. data/ext/gyp/pylib/gyp/mac_tool.py +721 -0
  54. data/ext/gyp/pylib/gyp/msvs_emulation.py +1112 -0
  55. data/ext/gyp/pylib/gyp/ninja_syntax.py +168 -0
  56. data/ext/gyp/pylib/gyp/simple_copy.py +57 -0
  57. data/ext/gyp/pylib/gyp/win_tool.py +326 -0
  58. data/ext/gyp/pylib/gyp/xcode_emulation.py +1800 -0
  59. data/ext/gyp/pylib/gyp/xcode_ninja.py +289 -0
  60. data/ext/gyp/pylib/gyp/xcodeproj_file.py +2995 -0
  61. data/ext/gyp/pylib/gyp/xml_fix.py +68 -0
  62. data/ext/gyp/samples/samples +83 -0
  63. data/ext/gyp/samples/samples.bat +5 -0
  64. data/ext/gyp/setup.py +19 -0
  65. data/ext/gyp/test/actions/generated-header/action.py +11 -0
  66. data/ext/gyp/test/actions/generated-header/main.cc +7 -0
  67. data/ext/gyp/test/actions/generated-header/test.gyp +34 -0
  68. data/ext/gyp/test/actions/gyptest-all.py +101 -0
  69. data/ext/gyp/test/actions/gyptest-default.py +68 -0
  70. data/ext/gyp/test/actions/gyptest-errors.py +24 -0
  71. data/ext/gyp/test/actions/gyptest-generated-header.py +38 -0
  72. data/ext/gyp/test/actions/src/action_missing_name.gyp +24 -0
  73. data/ext/gyp/test/actions/src/actions.gyp +114 -0
  74. data/ext/gyp/test/actions/src/confirm-dep-files.py +21 -0
  75. data/ext/gyp/test/actions/src/subdir1/counter.py +44 -0
  76. data/ext/gyp/test/actions/src/subdir1/executable.gyp +74 -0
  77. data/ext/gyp/test/actions/src/subdir1/make-prog1.py +20 -0
  78. data/ext/gyp/test/actions/src/subdir1/make-prog2.py +20 -0
  79. data/ext/gyp/test/actions/src/subdir1/program.c +12 -0
  80. data/ext/gyp/test/actions/src/subdir2/make-file.py +11 -0
  81. data/ext/gyp/test/actions/src/subdir2/none.gyp +33 -0
  82. data/ext/gyp/test/actions/src/subdir3/generate_main.py +21 -0
  83. data/ext/gyp/test/actions/src/subdir3/null_input.gyp +29 -0
  84. data/ext/gyp/test/actions-bare/gyptest-bare.py +24 -0
  85. data/ext/gyp/test/actions-bare/src/bare.gyp +25 -0
  86. data/ext/gyp/test/actions-bare/src/bare.py +11 -0
  87. data/ext/gyp/test/actions-depfile/depfile.gyp +42 -0
  88. data/ext/gyp/test/actions-depfile/gyptest-all.py +30 -0
  89. data/ext/gyp/test/actions-depfile/input.txt +1 -0
  90. data/ext/gyp/test/actions-depfile/touch.py +18 -0
  91. data/ext/gyp/test/actions-multiple/gyptest-all.py +72 -0
  92. data/ext/gyp/test/actions-multiple/src/actions.gyp +226 -0
  93. data/ext/gyp/test/actions-multiple/src/copyfile.py +9 -0
  94. data/ext/gyp/test/actions-multiple/src/filter.py +12 -0
  95. data/ext/gyp/test/actions-multiple/src/foo.c +11 -0
  96. data/ext/gyp/test/actions-multiple/src/input.txt +1 -0
  97. data/ext/gyp/test/actions-multiple/src/main.c +22 -0
  98. data/ext/gyp/test/actions-multiple-outputs/gyptest-multiple-outputs.py +45 -0
  99. data/ext/gyp/test/actions-multiple-outputs/src/multiple-outputs.gyp +23 -0
  100. data/ext/gyp/test/actions-multiple-outputs/src/touch.py +16 -0
  101. data/ext/gyp/test/actions-multiple-outputs-with-dependencies/gyptest-action.py +45 -0
  102. data/ext/gyp/test/actions-multiple-outputs-with-dependencies/src/action.gyp +28 -0
  103. data/ext/gyp/test/actions-multiple-outputs-with-dependencies/src/rcopy.py +20 -0
  104. data/ext/gyp/test/actions-none/gyptest-none.py +24 -0
  105. data/ext/gyp/test/actions-none/src/fake_cross.py +12 -0
  106. data/ext/gyp/test/actions-none/src/foo.cc +1 -0
  107. data/ext/gyp/test/actions-none/src/none_with_source_files.gyp +35 -0
  108. data/ext/gyp/test/actions-subdir/gyptest-action.py +26 -0
  109. data/ext/gyp/test/actions-subdir/src/make-file.py +11 -0
  110. data/ext/gyp/test/actions-subdir/src/none.gyp +31 -0
  111. data/ext/gyp/test/actions-subdir/src/subdir/make-subdir-file.py +11 -0
  112. data/ext/gyp/test/actions-subdir/src/subdir/subdir.gyp +28 -0
  113. data/ext/gyp/test/additional-targets/gyptest-additional.py +63 -0
  114. data/ext/gyp/test/additional-targets/src/all.gyp +13 -0
  115. data/ext/gyp/test/additional-targets/src/dir1/actions.gyp +56 -0
  116. data/ext/gyp/test/additional-targets/src/dir1/emit.py +11 -0
  117. data/ext/gyp/test/additional-targets/src/dir1/lib1.c +6 -0
  118. data/ext/gyp/test/analyzer/common.gypi +6 -0
  119. data/ext/gyp/test/analyzer/gyptest-analyzer.py +427 -0
  120. data/ext/gyp/test/analyzer/static_library_test.gyp +34 -0
  121. data/ext/gyp/test/analyzer/subdir/subdir.gyp +36 -0
  122. data/ext/gyp/test/analyzer/subdir/subdir2/subdir2.gyp +15 -0
  123. data/ext/gyp/test/analyzer/subdir2/subdir.gyp +18 -0
  124. data/ext/gyp/test/analyzer/subdir2/subdir.includes.gypi +9 -0
  125. data/ext/gyp/test/analyzer/test.gyp +114 -0
  126. data/ext/gyp/test/analyzer/test2.gyp +25 -0
  127. data/ext/gyp/test/analyzer/test2.includes.gypi +13 -0
  128. data/ext/gyp/test/analyzer/test2.includes.includes.gypi +9 -0
  129. data/ext/gyp/test/analyzer/test2.toplevel_includes.gypi +15 -0
  130. data/ext/gyp/test/analyzer/test3.gyp +77 -0
  131. data/ext/gyp/test/analyzer/test4.gyp +80 -0
  132. data/ext/gyp/test/analyzer/test5.gyp +25 -0
  133. data/ext/gyp/test/arflags/gyptest-arflags.py +26 -0
  134. data/ext/gyp/test/arflags/lib.cc +0 -0
  135. data/ext/gyp/test/arflags/test.gyp +10 -0
  136. data/ext/gyp/test/assembly/gyptest-assembly.py +31 -0
  137. data/ext/gyp/test/assembly/gyptest-override.py +24 -0
  138. data/ext/gyp/test/assembly/src/as.bat +4 -0
  139. data/ext/gyp/test/assembly/src/assembly.gyp +62 -0
  140. data/ext/gyp/test/assembly/src/lib1.S +15 -0
  141. data/ext/gyp/test/assembly/src/lib1.c +3 -0
  142. data/ext/gyp/test/assembly/src/override.gyp +34 -0
  143. data/ext/gyp/test/assembly/src/override_asm.asm +8 -0
  144. data/ext/gyp/test/assembly/src/program.c +12 -0
  145. data/ext/gyp/test/build-option/gyptest-build.py +27 -0
  146. data/ext/gyp/test/build-option/hello.c +13 -0
  147. data/ext/gyp/test/build-option/hello.gyp +15 -0
  148. data/ext/gyp/test/builddir/gyptest-all.py +85 -0
  149. data/ext/gyp/test/builddir/gyptest-default.py +85 -0
  150. data/ext/gyp/test/builddir/src/builddir.gypi +18 -0
  151. data/ext/gyp/test/builddir/src/func1.c +6 -0
  152. data/ext/gyp/test/builddir/src/func2.c +6 -0
  153. data/ext/gyp/test/builddir/src/func3.c +6 -0
  154. data/ext/gyp/test/builddir/src/func4.c +6 -0
  155. data/ext/gyp/test/builddir/src/func5.c +6 -0
  156. data/ext/gyp/test/builddir/src/prog1.c +10 -0
  157. data/ext/gyp/test/builddir/src/prog1.gyp +30 -0
  158. data/ext/gyp/test/builddir/src/subdir2/prog2.c +10 -0
  159. data/ext/gyp/test/builddir/src/subdir2/prog2.gyp +19 -0
  160. data/ext/gyp/test/builddir/src/subdir2/subdir3/prog3.c +10 -0
  161. data/ext/gyp/test/builddir/src/subdir2/subdir3/prog3.gyp +19 -0
  162. data/ext/gyp/test/builddir/src/subdir2/subdir3/subdir4/prog4.c +10 -0
  163. data/ext/gyp/test/builddir/src/subdir2/subdir3/subdir4/prog4.gyp +19 -0
  164. data/ext/gyp/test/builddir/src/subdir2/subdir3/subdir4/subdir5/prog5.c +10 -0
  165. data/ext/gyp/test/builddir/src/subdir2/subdir3/subdir4/subdir5/prog5.gyp +19 -0
  166. data/ext/gyp/test/cflags/cflags.c +15 -0
  167. data/ext/gyp/test/cflags/cflags.gyp +23 -0
  168. data/ext/gyp/test/cflags/gyptest-cflags.py +75 -0
  169. data/ext/gyp/test/compilable/gyptest-headers.py +29 -0
  170. data/ext/gyp/test/compilable/src/headers.gyp +26 -0
  171. data/ext/gyp/test/compilable/src/lib1.cpp +7 -0
  172. data/ext/gyp/test/compilable/src/lib1.hpp +6 -0
  173. data/ext/gyp/test/compilable/src/program.cpp +9 -0
  174. data/ext/gyp/test/compiler-override/compiler-exe.gyp +16 -0
  175. data/ext/gyp/test/compiler-override/compiler-global-settings.gyp.in +34 -0
  176. data/ext/gyp/test/compiler-override/compiler-host.gyp +17 -0
  177. data/ext/gyp/test/compiler-override/compiler-shared-lib.gyp +16 -0
  178. data/ext/gyp/test/compiler-override/cxxtest.cc +7 -0
  179. data/ext/gyp/test/compiler-override/gyptest-compiler-env-toolchain.py +78 -0
  180. data/ext/gyp/test/compiler-override/gyptest-compiler-env.py +110 -0
  181. data/ext/gyp/test/compiler-override/gyptest-compiler-global-settings.py +82 -0
  182. data/ext/gyp/test/compiler-override/my_cc.py +7 -0
  183. data/ext/gyp/test/compiler-override/my_cxx.py +7 -0
  184. data/ext/gyp/test/compiler-override/my_ld.py +7 -0
  185. data/ext/gyp/test/compiler-override/my_nm.py +9 -0
  186. data/ext/gyp/test/compiler-override/my_readelf.py +9 -0
  187. data/ext/gyp/test/compiler-override/test.c +7 -0
  188. data/ext/gyp/test/conditions/elseif/elseif.gyp +43 -0
  189. data/ext/gyp/test/conditions/elseif/elseif_bad1.gyp +20 -0
  190. data/ext/gyp/test/conditions/elseif/elseif_bad2.gyp +22 -0
  191. data/ext/gyp/test/conditions/elseif/elseif_bad3.gyp +23 -0
  192. data/ext/gyp/test/conditions/elseif/elseif_conditions.gypi +15 -0
  193. data/ext/gyp/test/conditions/elseif/gyptest_elseif.py +33 -0
  194. data/ext/gyp/test/conditions/elseif/program.cc +10 -0
  195. data/ext/gyp/test/configurations/basics/configurations.c +15 -0
  196. data/ext/gyp/test/configurations/basics/configurations.gyp +32 -0
  197. data/ext/gyp/test/configurations/basics/gyptest-configurations.py +29 -0
  198. data/ext/gyp/test/configurations/inheritance/configurations.c +21 -0
  199. data/ext/gyp/test/configurations/inheritance/configurations.gyp +40 -0
  200. data/ext/gyp/test/configurations/inheritance/duplicates.gyp +27 -0
  201. data/ext/gyp/test/configurations/inheritance/duplicates.gypd.golden +12 -0
  202. data/ext/gyp/test/configurations/inheritance/gyptest-duplicates.py +36 -0
  203. data/ext/gyp/test/configurations/inheritance/gyptest-inheritance.py +33 -0
  204. data/ext/gyp/test/configurations/invalid/actions.gyp +18 -0
  205. data/ext/gyp/test/configurations/invalid/all_dependent_settings.gyp +18 -0
  206. data/ext/gyp/test/configurations/invalid/configurations.gyp +18 -0
  207. data/ext/gyp/test/configurations/invalid/dependencies.gyp +18 -0
  208. data/ext/gyp/test/configurations/invalid/direct_dependent_settings.gyp +18 -0
  209. data/ext/gyp/test/configurations/invalid/gyptest-configurations.py +36 -0
  210. data/ext/gyp/test/configurations/invalid/libraries.gyp +18 -0
  211. data/ext/gyp/test/configurations/invalid/link_settings.gyp +18 -0
  212. data/ext/gyp/test/configurations/invalid/sources.gyp +18 -0
  213. data/ext/gyp/test/configurations/invalid/standalone_static_library.gyp +17 -0
  214. data/ext/gyp/test/configurations/invalid/target_name.gyp +18 -0
  215. data/ext/gyp/test/configurations/invalid/type.gyp +18 -0
  216. data/ext/gyp/test/configurations/target_platform/configurations.gyp +58 -0
  217. data/ext/gyp/test/configurations/target_platform/front.c +8 -0
  218. data/ext/gyp/test/configurations/target_platform/gyptest-target_platform.py +40 -0
  219. data/ext/gyp/test/configurations/target_platform/left.c +3 -0
  220. data/ext/gyp/test/configurations/target_platform/right.c +3 -0
  221. data/ext/gyp/test/configurations/x64/configurations.c +12 -0
  222. data/ext/gyp/test/configurations/x64/configurations.gyp +38 -0
  223. data/ext/gyp/test/configurations/x64/gyptest-x86.py +31 -0
  224. data/ext/gyp/test/copies/gyptest-all.py +42 -0
  225. data/ext/gyp/test/copies/gyptest-attribs.py +41 -0
  226. data/ext/gyp/test/copies/gyptest-default.py +42 -0
  227. data/ext/gyp/test/copies/gyptest-samedir.py +28 -0
  228. data/ext/gyp/test/copies/gyptest-slash.py +39 -0
  229. data/ext/gyp/test/copies/gyptest-sourceless-shared-lib.py +20 -0
  230. data/ext/gyp/test/copies/gyptest-updir.py +32 -0
  231. data/ext/gyp/test/copies/src/copies-attribs.gyp +20 -0
  232. data/ext/gyp/test/copies/src/copies-samedir.gyp +37 -0
  233. data/ext/gyp/test/copies/src/copies-slash.gyp +36 -0
  234. data/ext/gyp/test/copies/src/copies-sourceless-shared-lib.gyp +27 -0
  235. data/ext/gyp/test/copies/src/copies-updir.gyp +21 -0
  236. data/ext/gyp/test/copies/src/copies.gyp +70 -0
  237. data/ext/gyp/test/copies/src/directory/file3 +1 -0
  238. data/ext/gyp/test/copies/src/directory/file4 +1 -0
  239. data/ext/gyp/test/copies/src/directory/subdir/file5 +1 -0
  240. data/ext/gyp/test/copies/src/executable-file.sh +3 -0
  241. data/ext/gyp/test/copies/src/file1 +1 -0
  242. data/ext/gyp/test/copies/src/file2 +1 -0
  243. data/ext/gyp/test/copies/src/foo.c +13 -0
  244. data/ext/gyp/test/copies/src/parentdir/subdir/file6 +1 -0
  245. data/ext/gyp/test/custom-generator/gyptest-custom-generator.py +18 -0
  246. data/ext/gyp/test/custom-generator/mygenerator.py +14 -0
  247. data/ext/gyp/test/custom-generator/test.gyp +15 -0
  248. data/ext/gyp/test/cxxflags/cxxflags.cc +15 -0
  249. data/ext/gyp/test/cxxflags/cxxflags.gyp +15 -0
  250. data/ext/gyp/test/cxxflags/gyptest-cxxflags.py +45 -0
  251. data/ext/gyp/test/defines/defines-env.gyp +22 -0
  252. data/ext/gyp/test/defines/defines.c +23 -0
  253. data/ext/gyp/test/defines/defines.gyp +38 -0
  254. data/ext/gyp/test/defines/gyptest-define-override.py +43 -0
  255. data/ext/gyp/test/defines/gyptest-defines-env-regyp.py +51 -0
  256. data/ext/gyp/test/defines/gyptest-defines-env.py +85 -0
  257. data/ext/gyp/test/defines/gyptest-defines.py +39 -0
  258. data/ext/gyp/test/defines-escaping/defines-escaping.c +11 -0
  259. data/ext/gyp/test/defines-escaping/defines-escaping.gyp +19 -0
  260. data/ext/gyp/test/defines-escaping/gyptest-defines-escaping.py +184 -0
  261. data/ext/gyp/test/dependencies/a.c +9 -0
  262. data/ext/gyp/test/dependencies/adso/all_dependent_settings_order.gyp +45 -0
  263. data/ext/gyp/test/dependencies/adso/write_args.py +11 -0
  264. data/ext/gyp/test/dependencies/b/b.c +3 -0
  265. data/ext/gyp/test/dependencies/b/b.gyp +22 -0
  266. data/ext/gyp/test/dependencies/b/b3.c +9 -0
  267. data/ext/gyp/test/dependencies/c/c.c +4 -0
  268. data/ext/gyp/test/dependencies/c/c.gyp +22 -0
  269. data/ext/gyp/test/dependencies/c/d.c +3 -0
  270. data/ext/gyp/test/dependencies/double_dependency.gyp +23 -0
  271. data/ext/gyp/test/dependencies/double_dependent.gyp +12 -0
  272. data/ext/gyp/test/dependencies/extra_targets.gyp +18 -0
  273. data/ext/gyp/test/dependencies/gyptest-all-dependent-settings-order.py +19 -0
  274. data/ext/gyp/test/dependencies/gyptest-double-dependency.py +19 -0
  275. data/ext/gyp/test/dependencies/gyptest-extra-targets.py +22 -0
  276. data/ext/gyp/test/dependencies/gyptest-indirect-module-dependency.py +22 -0
  277. data/ext/gyp/test/dependencies/gyptest-lib-only.py +39 -0
  278. data/ext/gyp/test/dependencies/gyptest-none-traversal.py +25 -0
  279. data/ext/gyp/test/dependencies/gyptest-sharedlib-linksettings.py +21 -0
  280. data/ext/gyp/test/dependencies/lib_only.gyp +16 -0
  281. data/ext/gyp/test/dependencies/main.c +14 -0
  282. data/ext/gyp/test/dependencies/module-dep/a.cc +7 -0
  283. data/ext/gyp/test/dependencies/module-dep/dll.cc +9 -0
  284. data/ext/gyp/test/dependencies/module-dep/exe.cc +7 -0
  285. data/ext/gyp/test/dependencies/module-dep/indirect-module-dependency.gyp +37 -0
  286. data/ext/gyp/test/dependencies/none_traversal.gyp +46 -0
  287. data/ext/gyp/test/dependencies/sharedlib-linksettings/program.c +25 -0
  288. data/ext/gyp/test/dependencies/sharedlib-linksettings/sharedlib.c +16 -0
  289. data/ext/gyp/test/dependencies/sharedlib-linksettings/staticlib.c +24 -0
  290. data/ext/gyp/test/dependencies/sharedlib-linksettings/test.gyp +37 -0
  291. data/ext/gyp/test/dependency-copy/gyptest-copy.py +26 -0
  292. data/ext/gyp/test/dependency-copy/src/copies.gyp +25 -0
  293. data/ext/gyp/test/dependency-copy/src/file1.c +7 -0
  294. data/ext/gyp/test/dependency-copy/src/file2.c +7 -0
  295. data/ext/gyp/test/dependent-settings/nested-dependent-settings/all-dependent-settings.gyp +19 -0
  296. data/ext/gyp/test/dependent-settings/nested-dependent-settings/direct-dependent-settings.gyp +19 -0
  297. data/ext/gyp/test/dependent-settings/nested-dependent-settings/gyptest-nested-dependent-settings.py +18 -0
  298. data/ext/gyp/test/determinism/determinism.gyp +59 -0
  299. data/ext/gyp/test/determinism/empty-targets.gyp +32 -0
  300. data/ext/gyp/test/determinism/gyptest-determinism.py +30 -0
  301. data/ext/gyp/test/determinism/gyptest-empty-target-names.py +30 -0
  302. data/ext/gyp/test/determinism/gyptest-needed-variables.py +30 -0
  303. data/ext/gyp/test/determinism/gyptest-solibs.py +37 -0
  304. data/ext/gyp/test/determinism/main.cc +5 -0
  305. data/ext/gyp/test/determinism/needed-variables.gyp +33 -0
  306. data/ext/gyp/test/determinism/rule.py +8 -0
  307. data/ext/gyp/test/determinism/solib.cc +8 -0
  308. data/ext/gyp/test/determinism/solibs.gyp +32 -0
  309. data/ext/gyp/test/empty-target/empty-target.gyp +12 -0
  310. data/ext/gyp/test/empty-target/gyptest-empty-target.py +18 -0
  311. data/ext/gyp/test/errors/dependency_cycle.gyp +23 -0
  312. data/ext/gyp/test/errors/duplicate_basenames.gyp +13 -0
  313. data/ext/gyp/test/errors/duplicate_node.gyp +12 -0
  314. data/ext/gyp/test/errors/duplicate_rule.gyp +22 -0
  315. data/ext/gyp/test/errors/duplicate_targets.gyp +14 -0
  316. data/ext/gyp/test/errors/error_command.gyp +12 -0
  317. data/ext/gyp/test/errors/file_cycle0.gyp +17 -0
  318. data/ext/gyp/test/errors/file_cycle1.gyp +13 -0
  319. data/ext/gyp/test/errors/gyptest-errors.py +80 -0
  320. data/ext/gyp/test/errors/missing_command.gyp +12 -0
  321. data/ext/gyp/test/errors/missing_dep.gyp +15 -0
  322. data/ext/gyp/test/errors/missing_targets.gyp +8 -0
  323. data/ext/gyp/test/escaping/colon/test.gyp +21 -0
  324. data/ext/gyp/test/escaping/gyptest-colon.py +51 -0
  325. data/ext/gyp/test/exclusion/exclusion.gyp +23 -0
  326. data/ext/gyp/test/exclusion/gyptest-exclusion.py +22 -0
  327. data/ext/gyp/test/exclusion/hello.c +15 -0
  328. data/ext/gyp/test/external-cross-compile/gyptest-cross.py +31 -0
  329. data/ext/gyp/test/external-cross-compile/src/bogus1.cc +1 -0
  330. data/ext/gyp/test/external-cross-compile/src/bogus2.c +1 -0
  331. data/ext/gyp/test/external-cross-compile/src/cross.gyp +83 -0
  332. data/ext/gyp/test/external-cross-compile/src/cross_compile.gypi +23 -0
  333. data/ext/gyp/test/external-cross-compile/src/fake_cross.py +18 -0
  334. data/ext/gyp/test/external-cross-compile/src/program.cc +16 -0
  335. data/ext/gyp/test/external-cross-compile/src/test1.cc +1 -0
  336. data/ext/gyp/test/external-cross-compile/src/test2.c +1 -0
  337. data/ext/gyp/test/external-cross-compile/src/test3.cc +1 -0
  338. data/ext/gyp/test/external-cross-compile/src/test4.c +1 -0
  339. data/ext/gyp/test/external-cross-compile/src/tochar.py +13 -0
  340. data/ext/gyp/test/generator-output/actions/actions.gyp +16 -0
  341. data/ext/gyp/test/generator-output/actions/build/README.txt +4 -0
  342. data/ext/gyp/test/generator-output/actions/subdir1/actions-out/README.txt +4 -0
  343. data/ext/gyp/test/generator-output/actions/subdir1/build/README.txt +4 -0
  344. data/ext/gyp/test/generator-output/actions/subdir1/executable.gyp +44 -0
  345. data/ext/gyp/test/generator-output/actions/subdir1/make-prog1.py +20 -0
  346. data/ext/gyp/test/generator-output/actions/subdir1/make-prog2.py +20 -0
  347. data/ext/gyp/test/generator-output/actions/subdir1/program.c +12 -0
  348. data/ext/gyp/test/generator-output/actions/subdir2/actions-out/README.txt +4 -0
  349. data/ext/gyp/test/generator-output/actions/subdir2/build/README.txt +4 -0
  350. data/ext/gyp/test/generator-output/actions/subdir2/make-file.py +11 -0
  351. data/ext/gyp/test/generator-output/actions/subdir2/none.gyp +31 -0
  352. data/ext/gyp/test/generator-output/copies/build/README.txt +4 -0
  353. data/ext/gyp/test/generator-output/copies/copies-out/README.txt +4 -0
  354. data/ext/gyp/test/generator-output/copies/copies.gyp +50 -0
  355. data/ext/gyp/test/generator-output/copies/file1 +1 -0
  356. data/ext/gyp/test/generator-output/copies/file2 +1 -0
  357. data/ext/gyp/test/generator-output/copies/subdir/build/README.txt +4 -0
  358. data/ext/gyp/test/generator-output/copies/subdir/copies-out/README.txt +4 -0
  359. data/ext/gyp/test/generator-output/copies/subdir/file3 +1 -0
  360. data/ext/gyp/test/generator-output/copies/subdir/file4 +1 -0
  361. data/ext/gyp/test/generator-output/copies/subdir/subdir.gyp +32 -0
  362. data/ext/gyp/test/generator-output/gyptest-actions.py +57 -0
  363. data/ext/gyp/test/generator-output/gyptest-copies.py +59 -0
  364. data/ext/gyp/test/generator-output/gyptest-depth.py +58 -0
  365. data/ext/gyp/test/generator-output/gyptest-mac-bundle.py +33 -0
  366. data/ext/gyp/test/generator-output/gyptest-relocate.py +59 -0
  367. data/ext/gyp/test/generator-output/gyptest-rules.py +58 -0
  368. data/ext/gyp/test/generator-output/gyptest-subdir2-deep.py +36 -0
  369. data/ext/gyp/test/generator-output/gyptest-symlink.py +44 -0
  370. data/ext/gyp/test/generator-output/gyptest-top-all.py +53 -0
  371. data/ext/gyp/test/generator-output/mac-bundle/Info.plist +32 -0
  372. data/ext/gyp/test/generator-output/mac-bundle/app.order +1 -0
  373. data/ext/gyp/test/generator-output/mac-bundle/header.h +1 -0
  374. data/ext/gyp/test/generator-output/mac-bundle/main.c +1 -0
  375. data/ext/gyp/test/generator-output/mac-bundle/resource.sb +1 -0
  376. data/ext/gyp/test/generator-output/mac-bundle/test.gyp +25 -0
  377. data/ext/gyp/test/generator-output/rules/build/README.txt +4 -0
  378. data/ext/gyp/test/generator-output/rules/copy-file.py +12 -0
  379. data/ext/gyp/test/generator-output/rules/rules.gyp +16 -0
  380. data/ext/gyp/test/generator-output/rules/subdir1/build/README.txt +4 -0
  381. data/ext/gyp/test/generator-output/rules/subdir1/define3.in0 +1 -0
  382. data/ext/gyp/test/generator-output/rules/subdir1/define4.in0 +1 -0
  383. data/ext/gyp/test/generator-output/rules/subdir1/executable.gyp +59 -0
  384. data/ext/gyp/test/generator-output/rules/subdir1/function1.in1 +6 -0
  385. data/ext/gyp/test/generator-output/rules/subdir1/function2.in1 +6 -0
  386. data/ext/gyp/test/generator-output/rules/subdir1/program.c +18 -0
  387. data/ext/gyp/test/generator-output/rules/subdir2/build/README.txt +4 -0
  388. data/ext/gyp/test/generator-output/rules/subdir2/file1.in0 +1 -0
  389. data/ext/gyp/test/generator-output/rules/subdir2/file2.in0 +1 -0
  390. data/ext/gyp/test/generator-output/rules/subdir2/file3.in1 +1 -0
  391. data/ext/gyp/test/generator-output/rules/subdir2/file4.in1 +1 -0
  392. data/ext/gyp/test/generator-output/rules/subdir2/none.gyp +49 -0
  393. data/ext/gyp/test/generator-output/rules/subdir2/rules-out/README.txt +4 -0
  394. data/ext/gyp/test/generator-output/src/build/README.txt +4 -0
  395. data/ext/gyp/test/generator-output/src/inc.h +1 -0
  396. data/ext/gyp/test/generator-output/src/inc1/include1.h +1 -0
  397. data/ext/gyp/test/generator-output/src/prog1.c +18 -0
  398. data/ext/gyp/test/generator-output/src/prog1.gyp +28 -0
  399. data/ext/gyp/test/generator-output/src/subdir2/build/README.txt +4 -0
  400. data/ext/gyp/test/generator-output/src/subdir2/deeper/build/README.txt +4 -0
  401. data/ext/gyp/test/generator-output/src/subdir2/deeper/deeper.c +7 -0
  402. data/ext/gyp/test/generator-output/src/subdir2/deeper/deeper.gyp +18 -0
  403. data/ext/gyp/test/generator-output/src/subdir2/deeper/deeper.h +1 -0
  404. data/ext/gyp/test/generator-output/src/subdir2/inc2/include2.h +1 -0
  405. data/ext/gyp/test/generator-output/src/subdir2/prog2.c +18 -0
  406. data/ext/gyp/test/generator-output/src/subdir2/prog2.gyp +28 -0
  407. data/ext/gyp/test/generator-output/src/subdir3/build/README.txt +4 -0
  408. data/ext/gyp/test/generator-output/src/subdir3/inc3/include3.h +1 -0
  409. data/ext/gyp/test/generator-output/src/subdir3/prog3.c +18 -0
  410. data/ext/gyp/test/generator-output/src/subdir3/prog3.gyp +25 -0
  411. data/ext/gyp/test/generator-output/src/symroot.gypi +16 -0
  412. data/ext/gyp/test/gyp-defines/defines.gyp +26 -0
  413. data/ext/gyp/test/gyp-defines/echo.py +11 -0
  414. data/ext/gyp/test/gyp-defines/gyptest-multiple-values.py +36 -0
  415. data/ext/gyp/test/gyp-defines/gyptest-regyp.py +40 -0
  416. data/ext/gyp/test/hard_dependency/gyptest-exported-hard-dependency.py +37 -0
  417. data/ext/gyp/test/hard_dependency/gyptest-no-exported-hard-dependency.py +36 -0
  418. data/ext/gyp/test/hard_dependency/src/a.c +9 -0
  419. data/ext/gyp/test/hard_dependency/src/a.h +12 -0
  420. data/ext/gyp/test/hard_dependency/src/b.c +9 -0
  421. data/ext/gyp/test/hard_dependency/src/b.h +12 -0
  422. data/ext/gyp/test/hard_dependency/src/c.c +10 -0
  423. data/ext/gyp/test/hard_dependency/src/c.h +10 -0
  424. data/ext/gyp/test/hard_dependency/src/d.c +9 -0
  425. data/ext/gyp/test/hard_dependency/src/emit.py +11 -0
  426. data/ext/gyp/test/hard_dependency/src/hard_dependency.gyp +78 -0
  427. data/ext/gyp/test/hello/gyptest-all.py +24 -0
  428. data/ext/gyp/test/hello/gyptest-default.py +24 -0
  429. data/ext/gyp/test/hello/gyptest-disable-regyp.py +32 -0
  430. data/ext/gyp/test/hello/gyptest-regyp-output.py +36 -0
  431. data/ext/gyp/test/hello/gyptest-regyp.py +32 -0
  432. data/ext/gyp/test/hello/gyptest-target.py +24 -0
  433. data/ext/gyp/test/hello/hello.c +11 -0
  434. data/ext/gyp/test/hello/hello.gyp +15 -0
  435. data/ext/gyp/test/hello/hello2.c +11 -0
  436. data/ext/gyp/test/hello/hello2.gyp +15 -0
  437. data/ext/gyp/test/home_dot_gyp/gyptest-home-includes-config-arg.py +31 -0
  438. data/ext/gyp/test/home_dot_gyp/gyptest-home-includes-config-env.py +33 -0
  439. data/ext/gyp/test/home_dot_gyp/gyptest-home-includes-regyp.py +44 -0
  440. data/ext/gyp/test/home_dot_gyp/gyptest-home-includes.py +30 -0
  441. data/ext/gyp/test/home_dot_gyp/home/.gyp/include.gypi +5 -0
  442. data/ext/gyp/test/home_dot_gyp/home2/.gyp/include.gypi +5 -0
  443. data/ext/gyp/test/home_dot_gyp/home2/.gyp_new/include.gypi +5 -0
  444. data/ext/gyp/test/home_dot_gyp/src/all.gyp +22 -0
  445. data/ext/gyp/test/home_dot_gyp/src/printfoo.c +7 -0
  446. data/ext/gyp/test/include_dirs/gyptest-all.py +43 -0
  447. data/ext/gyp/test/include_dirs/gyptest-default.py +43 -0
  448. data/ext/gyp/test/include_dirs/src/inc.h +1 -0
  449. data/ext/gyp/test/include_dirs/src/inc1/include1.h +1 -0
  450. data/ext/gyp/test/include_dirs/src/includes.c +19 -0
  451. data/ext/gyp/test/include_dirs/src/includes.gyp +27 -0
  452. data/ext/gyp/test/include_dirs/src/shadow1/shadow.h +1 -0
  453. data/ext/gyp/test/include_dirs/src/shadow2/shadow.h +1 -0
  454. data/ext/gyp/test/include_dirs/src/subdir/inc.h +1 -0
  455. data/ext/gyp/test/include_dirs/src/subdir/inc2/include2.h +1 -0
  456. data/ext/gyp/test/include_dirs/src/subdir/subdir_includes.c +14 -0
  457. data/ext/gyp/test/include_dirs/src/subdir/subdir_includes.gyp +20 -0
  458. data/ext/gyp/test/intermediate_dir/gyptest-intermediate-dir.py +44 -0
  459. data/ext/gyp/test/intermediate_dir/src/script.py +22 -0
  460. data/ext/gyp/test/intermediate_dir/src/shared_infile.txt +1 -0
  461. data/ext/gyp/test/intermediate_dir/src/test.gyp +42 -0
  462. data/ext/gyp/test/intermediate_dir/src/test2.gyp +42 -0
  463. data/ext/gyp/test/ios/app-bundle/TestApp/English.lproj/InfoPlist-error.strings +3 -0
  464. data/ext/gyp/test/ios/app-bundle/TestApp/English.lproj/InfoPlist.strings +3 -0
  465. data/ext/gyp/test/ios/app-bundle/TestApp/English.lproj/LanguageMap.plist +8 -0
  466. data/ext/gyp/test/ios/app-bundle/TestApp/English.lproj/MainMenu.xib +17 -0
  467. data/ext/gyp/test/ios/app-bundle/TestApp/English.lproj/Main_iPhone.storyboard +27 -0
  468. data/ext/gyp/test/ios/app-bundle/TestApp/Images.xcassets/AppIcon.appiconset/Contents.json +58 -0
  469. data/ext/gyp/test/ios/app-bundle/TestApp/Images.xcassets/image.imageset/Contents.json +23 -0
  470. data/ext/gyp/test/ios/app-bundle/TestApp/Images.xcassets/image.imageset/super_sylvain.png +0 -0
  471. data/ext/gyp/test/ios/app-bundle/TestApp/Images.xcassets/image.imageset/super_sylvain@2x.png +0 -0
  472. data/ext/gyp/test/ios/app-bundle/TestApp/Images.xcassets/image.imageset/super_sylvain@3x.png +0 -0
  473. data/ext/gyp/test/ios/app-bundle/TestApp/TestApp-Info.plist +28 -0
  474. data/ext/gyp/test/ios/app-bundle/TestApp/check_no_signature.py +13 -0
  475. data/ext/gyp/test/ios/app-bundle/TestApp/main.m +13 -0
  476. data/ext/gyp/test/ios/app-bundle/TestApp/only-compile-in-32-bits.m +7 -0
  477. data/ext/gyp/test/ios/app-bundle/TestApp/only-compile-in-64-bits.m +7 -0
  478. data/ext/gyp/test/ios/app-bundle/test-archs.gyp +109 -0
  479. data/ext/gyp/test/ios/app-bundle/test-assets-catalog.gyp +45 -0
  480. data/ext/gyp/test/ios/app-bundle/test-crosscompile.gyp +47 -0
  481. data/ext/gyp/test/ios/app-bundle/test-device.gyp +109 -0
  482. data/ext/gyp/test/ios/app-bundle/test.gyp +75 -0
  483. data/ext/gyp/test/ios/app-bundle/tool_main.cc +7 -0
  484. data/ext/gyp/test/ios/copies-with-xcode-envvars/Info.plist +24 -0
  485. data/ext/gyp/test/ios/copies-with-xcode-envvars/copies-with-xcode-envvars.gyp +97 -0
  486. data/ext/gyp/test/ios/copies-with-xcode-envvars/empty.c +1 -0
  487. data/ext/gyp/test/ios/copies-with-xcode-envvars/file0 +1 -0
  488. data/ext/gyp/test/ios/copies-with-xcode-envvars/file1 +1 -0
  489. data/ext/gyp/test/ios/copies-with-xcode-envvars/file10 +1 -0
  490. data/ext/gyp/test/ios/copies-with-xcode-envvars/file11 +1 -0
  491. data/ext/gyp/test/ios/copies-with-xcode-envvars/file2 +1 -0
  492. data/ext/gyp/test/ios/copies-with-xcode-envvars/file3 +1 -0
  493. data/ext/gyp/test/ios/copies-with-xcode-envvars/file4 +1 -0
  494. data/ext/gyp/test/ios/copies-with-xcode-envvars/file5 +1 -0
  495. data/ext/gyp/test/ios/copies-with-xcode-envvars/file6 +1 -0
  496. data/ext/gyp/test/ios/copies-with-xcode-envvars/file7 +1 -0
  497. data/ext/gyp/test/ios/copies-with-xcode-envvars/file8 +1 -0
  498. data/ext/gyp/test/ios/copies-with-xcode-envvars/file9 +1 -0
  499. data/ext/gyp/test/ios/deployment-target/check-version-min.c +33 -0
  500. data/ext/gyp/test/ios/deployment-target/deployment-target.gyp +34 -0
  501. data/ext/gyp/test/ios/extension/ActionExtension/ActionViewController.h +9 -0
  502. data/ext/gyp/test/ios/extension/ActionExtension/ActionViewController.m +31 -0
  503. data/ext/gyp/test/ios/extension/ActionExtension/Info.plist +42 -0
  504. data/ext/gyp/test/ios/extension/ActionExtension/MainInterface.storyboard +63 -0
  505. data/ext/gyp/test/ios/extension/ExtensionContainer/AppDelegate.h +12 -0
  506. data/ext/gyp/test/ios/extension/ExtensionContainer/AppDelegate.m +19 -0
  507. data/ext/gyp/test/ios/extension/ExtensionContainer/Base.lproj/Main.storyboard +25 -0
  508. data/ext/gyp/test/ios/extension/ExtensionContainer/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
  509. data/ext/gyp/test/ios/extension/ExtensionContainer/Images.xcassets/LaunchImage.launchimage/Contents.json +51 -0
  510. data/ext/gyp/test/ios/extension/ExtensionContainer/Info.plist +32 -0
  511. data/ext/gyp/test/ios/extension/ExtensionContainer/ViewController.h +11 -0
  512. data/ext/gyp/test/ios/extension/ExtensionContainer/ViewController.m +24 -0
  513. data/ext/gyp/test/ios/extension/ExtensionContainer/main.m +13 -0
  514. data/ext/gyp/test/ios/extension/extension.gyp +91 -0
  515. data/ext/gyp/test/ios/framework/framework.gyp +43 -0
  516. data/ext/gyp/test/ios/framework/iOSFramework/Info.plist +26 -0
  517. data/ext/gyp/test/ios/framework/iOSFramework/Thing.h +10 -0
  518. data/ext/gyp/test/ios/framework/iOSFramework/Thing.m +22 -0
  519. data/ext/gyp/test/ios/framework/iOSFramework/iOSFramework.h +9 -0
  520. data/ext/gyp/test/ios/gyptest-app-ios-assets-catalog.py +57 -0
  521. data/ext/gyp/test/ios/gyptest-app-ios.py +76 -0
  522. data/ext/gyp/test/ios/gyptest-archs.py +62 -0
  523. data/ext/gyp/test/ios/gyptest-copies-with-xcode-envvars.py +65 -0
  524. data/ext/gyp/test/ios/gyptest-crosscompile.py +34 -0
  525. data/ext/gyp/test/ios/gyptest-deployment-target.py +23 -0
  526. data/ext/gyp/test/ios/gyptest-extension.py +51 -0
  527. data/ext/gyp/test/ios/gyptest-framework.py +37 -0
  528. data/ext/gyp/test/ios/gyptest-per-config-settings.py +190 -0
  529. data/ext/gyp/test/ios/gyptest-watch.py +44 -0
  530. data/ext/gyp/test/ios/gyptest-xcode-ninja.py +25 -0
  531. data/ext/gyp/test/ios/watch/WatchApp/Images.xcassets/AppIcon.appiconset/Contents.json +62 -0
  532. data/ext/gyp/test/ios/watch/WatchApp/Images.xcassets/LaunchImage.launchimage/Contents.json +24 -0
  533. data/ext/gyp/test/ios/watch/WatchApp/Info.plist +35 -0
  534. data/ext/gyp/test/ios/watch/WatchApp/Interface.storyboard +15 -0
  535. data/ext/gyp/test/ios/watch/WatchContainer/AppDelegate.h +12 -0
  536. data/ext/gyp/test/ios/watch/WatchContainer/AppDelegate.m +19 -0
  537. data/ext/gyp/test/ios/watch/WatchContainer/Base.lproj/Main.storyboard +25 -0
  538. data/ext/gyp/test/ios/watch/WatchContainer/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
  539. data/ext/gyp/test/ios/watch/WatchContainer/Images.xcassets/LaunchImage.launchimage/Contents.json +51 -0
  540. data/ext/gyp/test/ios/watch/WatchContainer/Info.plist +32 -0
  541. data/ext/gyp/test/ios/watch/WatchContainer/ViewController.h +11 -0
  542. data/ext/gyp/test/ios/watch/WatchContainer/ViewController.m +24 -0
  543. data/ext/gyp/test/ios/watch/WatchContainer/main.m +13 -0
  544. data/ext/gyp/test/ios/watch/WatchKitExtension/Images.xcassets/MyImage.imageset/Contents.json +20 -0
  545. data/ext/gyp/test/ios/watch/WatchKitExtension/Info.plist +38 -0
  546. data/ext/gyp/test/ios/watch/WatchKitExtension/InterfaceController.h +10 -0
  547. data/ext/gyp/test/ios/watch/WatchKitExtension/InterfaceController.m +25 -0
  548. data/ext/gyp/test/ios/watch/WatchKitExtension/MainInterface.storyboard +63 -0
  549. data/ext/gyp/test/ios/watch/watch.gyp +105 -0
  550. data/ext/gyp/test/ios/xctests/App/AppDelegate.h +11 -0
  551. data/ext/gyp/test/ios/xctests/App/AppDelegate.m +18 -0
  552. data/ext/gyp/test/ios/xctests/App/Base.lproj/LaunchScreen.xib +41 -0
  553. data/ext/gyp/test/ios/xctests/App/Base.lproj/Main.storyboard +25 -0
  554. data/ext/gyp/test/ios/xctests/App/Images.xcassets/AppIcon.appiconset/Contents.json +68 -0
  555. data/ext/gyp/test/ios/xctests/App/Info.plist +47 -0
  556. data/ext/gyp/test/ios/xctests/App/ViewController.h +9 -0
  557. data/ext/gyp/test/ios/xctests/App/ViewController.m +21 -0
  558. data/ext/gyp/test/ios/xctests/App/main.m +13 -0
  559. data/ext/gyp/test/ios/xctests/AppTests/AppTests.m +31 -0
  560. data/ext/gyp/test/ios/xctests/AppTests/Info.plist +24 -0
  561. data/ext/gyp/test/ios/xctests/gyptest-xctests.py +49 -0
  562. data/ext/gyp/test/ios/xctests/xctests.gyp +74 -0
  563. data/ext/gyp/test/lib/README.txt +17 -0
  564. data/ext/gyp/test/lib/TestCmd.py +1597 -0
  565. data/ext/gyp/test/lib/TestCommon.py +591 -0
  566. data/ext/gyp/test/lib/TestGyp.py +1259 -0
  567. data/ext/gyp/test/lib/TestMac.py +76 -0
  568. data/ext/gyp/test/lib/TestWin.py +101 -0
  569. data/ext/gyp/test/library/gyptest-shared-obj-install-path.py +39 -0
  570. data/ext/gyp/test/library/gyptest-shared.py +84 -0
  571. data/ext/gyp/test/library/gyptest-static.py +84 -0
  572. data/ext/gyp/test/library/src/lib1.c +10 -0
  573. data/ext/gyp/test/library/src/lib1_moveable.c +10 -0
  574. data/ext/gyp/test/library/src/lib2.c +10 -0
  575. data/ext/gyp/test/library/src/lib2_moveable.c +10 -0
  576. data/ext/gyp/test/library/src/library.gyp +58 -0
  577. data/ext/gyp/test/library/src/program.c +15 -0
  578. data/ext/gyp/test/library/src/shared_dependency.gyp +33 -0
  579. data/ext/gyp/test/library_dirs/gyptest-library-dirs.py +50 -0
  580. data/ext/gyp/test/library_dirs/subdir/README.txt +1 -0
  581. data/ext/gyp/test/library_dirs/subdir/hello.cc +11 -0
  582. data/ext/gyp/test/library_dirs/subdir/mylib.cc +9 -0
  583. data/ext/gyp/test/library_dirs/subdir/mylib.h +12 -0
  584. data/ext/gyp/test/library_dirs/subdir/test-win.gyp +60 -0
  585. data/ext/gyp/test/library_dirs/subdir/test.gyp +68 -0
  586. data/ext/gyp/test/link-dependency/gyptest-link-dependency.py +23 -0
  587. data/ext/gyp/test/link-dependency/main.c +7 -0
  588. data/ext/gyp/test/link-dependency/mymalloc.c +12 -0
  589. data/ext/gyp/test/link-dependency/test.gyp +37 -0
  590. data/ext/gyp/test/link-objects/base.c +6 -0
  591. data/ext/gyp/test/link-objects/extra.c +5 -0
  592. data/ext/gyp/test/link-objects/gyptest-all.py +28 -0
  593. data/ext/gyp/test/link-objects/link-objects.gyp +24 -0
  594. data/ext/gyp/test/linux/gyptest-implicit-rpath.py +48 -0
  595. data/ext/gyp/test/linux/gyptest-ldflags-duplicates.py +22 -0
  596. data/ext/gyp/test/linux/gyptest-ldflags-from-environment.py +45 -0
  597. data/ext/gyp/test/linux/gyptest-target-rpath.py +43 -0
  598. data/ext/gyp/test/linux/implicit-rpath/file.c +1 -0
  599. data/ext/gyp/test/linux/implicit-rpath/main.c +1 -0
  600. data/ext/gyp/test/linux/implicit-rpath/test.gyp +47 -0
  601. data/ext/gyp/test/linux/ldflags-duplicates/check-ldflags.py +28 -0
  602. data/ext/gyp/test/linux/ldflags-duplicates/lib1.c +6 -0
  603. data/ext/gyp/test/linux/ldflags-duplicates/lib2.c +6 -0
  604. data/ext/gyp/test/linux/ldflags-duplicates/main.c +7 -0
  605. data/ext/gyp/test/linux/ldflags-duplicates/test.gyp +45 -0
  606. data/ext/gyp/test/linux/ldflags-from-environment/main.c +7 -0
  607. data/ext/gyp/test/linux/ldflags-from-environment/test.gyp +23 -0
  608. data/ext/gyp/test/linux/target-rpath/file.c +1 -0
  609. data/ext/gyp/test/linux/target-rpath/main.c +1 -0
  610. data/ext/gyp/test/linux/target-rpath/test.gyp +47 -0
  611. data/ext/gyp/test/mac/action-envvars/action/action.gyp +34 -0
  612. data/ext/gyp/test/mac/action-envvars/action/action.sh +8 -0
  613. data/ext/gyp/test/mac/app-bundle/TestApp/English.lproj/InfoPlist-error.strings +3 -0
  614. data/ext/gyp/test/mac/app-bundle/TestApp/English.lproj/InfoPlist.strings +3 -0
  615. data/ext/gyp/test/mac/app-bundle/TestApp/English.lproj/MainMenu.xib +4119 -0
  616. data/ext/gyp/test/mac/app-bundle/TestApp/English.lproj/utf-16be.strings +0 -0
  617. data/ext/gyp/test/mac/app-bundle/TestApp/English.lproj/utf-16le.strings +0 -0
  618. data/ext/gyp/test/mac/app-bundle/TestApp/Images.xcassets/AppIcon.appiconset/Contents.json +58 -0
  619. data/ext/gyp/test/mac/app-bundle/TestApp/Images.xcassets/image.imageset/Contents.json +23 -0
  620. data/ext/gyp/test/mac/app-bundle/TestApp/Images.xcassets/image.imageset/super_sylvain.png +0 -0
  621. data/ext/gyp/test/mac/app-bundle/TestApp/Images.xcassets/image.imageset/super_sylvain@2x.png +0 -0
  622. data/ext/gyp/test/mac/app-bundle/TestApp/Images.xcassets/image.imageset/super_sylvain@3x.png +0 -0
  623. data/ext/gyp/test/mac/app-bundle/TestApp/TestApp-Info.plist +34 -0
  624. data/ext/gyp/test/mac/app-bundle/TestApp/TestAppAppDelegate.h +13 -0
  625. data/ext/gyp/test/mac/app-bundle/TestApp/TestAppAppDelegate.m +15 -0
  626. data/ext/gyp/test/mac/app-bundle/TestApp/main.m +10 -0
  627. data/ext/gyp/test/mac/app-bundle/empty.c +0 -0
  628. data/ext/gyp/test/mac/app-bundle/test-assets-catalog.gyp +43 -0
  629. data/ext/gyp/test/mac/app-bundle/test-error.gyp +31 -0
  630. data/ext/gyp/test/mac/app-bundle/test.gyp +41 -0
  631. data/ext/gyp/test/mac/archs/empty_main.cc +1 -0
  632. data/ext/gyp/test/mac/archs/file.mm +1 -0
  633. data/ext/gyp/test/mac/archs/file_a.cc +8 -0
  634. data/ext/gyp/test/mac/archs/file_a.h +10 -0
  635. data/ext/gyp/test/mac/archs/file_b.cc +8 -0
  636. data/ext/gyp/test/mac/archs/file_b.h +10 -0
  637. data/ext/gyp/test/mac/archs/file_c.cc +11 -0
  638. data/ext/gyp/test/mac/archs/file_d.cc +11 -0
  639. data/ext/gyp/test/mac/archs/header.h +1 -0
  640. data/ext/gyp/test/mac/archs/my_file.cc +4 -0
  641. data/ext/gyp/test/mac/archs/my_main_file.cc +9 -0
  642. data/ext/gyp/test/mac/archs/test-archs-multiarch.gyp +92 -0
  643. data/ext/gyp/test/mac/archs/test-archs-x86_64.gyp +27 -0
  644. data/ext/gyp/test/mac/archs/test-dependencies.gyp +92 -0
  645. data/ext/gyp/test/mac/archs/test-no-archs.gyp +21 -0
  646. data/ext/gyp/test/mac/archs/test-valid-archs.gyp +28 -0
  647. data/ext/gyp/test/mac/bundle-resources/change.sh +3 -0
  648. data/ext/gyp/test/mac/bundle-resources/executable-file.sh +3 -0
  649. data/ext/gyp/test/mac/bundle-resources/secret.txt +1 -0
  650. data/ext/gyp/test/mac/bundle-resources/test.gyp +59 -0
  651. data/ext/gyp/test/mac/cflags/ccfile.cc +7 -0
  652. data/ext/gyp/test/mac/cflags/ccfile_withcflags.cc +7 -0
  653. data/ext/gyp/test/mac/cflags/cfile.c +7 -0
  654. data/ext/gyp/test/mac/cflags/cppfile.cpp +7 -0
  655. data/ext/gyp/test/mac/cflags/cppfile_withcflags.cpp +7 -0
  656. data/ext/gyp/test/mac/cflags/cxxfile.cxx +7 -0
  657. data/ext/gyp/test/mac/cflags/cxxfile_withcflags.cxx +7 -0
  658. data/ext/gyp/test/mac/cflags/mfile.m +7 -0
  659. data/ext/gyp/test/mac/cflags/mmfile.mm +7 -0
  660. data/ext/gyp/test/mac/cflags/mmfile_withcflags.mm +7 -0
  661. data/ext/gyp/test/mac/cflags/test.gyp +132 -0
  662. data/ext/gyp/test/mac/clang-cxx-language-standard/c++11.cc +8 -0
  663. data/ext/gyp/test/mac/clang-cxx-language-standard/c++98.cc +24 -0
  664. data/ext/gyp/test/mac/clang-cxx-language-standard/clang-cxx-language-standard.gyp +30 -0
  665. data/ext/gyp/test/mac/clang-cxx-library/clang-cxx-library.gyp +32 -0
  666. data/ext/gyp/test/mac/clang-cxx-library/libc++.cc +11 -0
  667. data/ext/gyp/test/mac/clang-cxx-library/libstdc++.cc +11 -0
  668. data/ext/gyp/test/mac/copies-with-xcode-envvars/copies-with-xcode-envvars.gyp +87 -0
  669. data/ext/gyp/test/mac/copies-with-xcode-envvars/empty.c +1 -0
  670. data/ext/gyp/test/mac/copies-with-xcode-envvars/file0 +1 -0
  671. data/ext/gyp/test/mac/copies-with-xcode-envvars/file1 +1 -0
  672. data/ext/gyp/test/mac/copies-with-xcode-envvars/file10 +1 -0
  673. data/ext/gyp/test/mac/copies-with-xcode-envvars/file11 +1 -0
  674. data/ext/gyp/test/mac/copies-with-xcode-envvars/file2 +1 -0
  675. data/ext/gyp/test/mac/copies-with-xcode-envvars/file3 +1 -0
  676. data/ext/gyp/test/mac/copies-with-xcode-envvars/file4 +1 -0
  677. data/ext/gyp/test/mac/copies-with-xcode-envvars/file5 +1 -0
  678. data/ext/gyp/test/mac/copies-with-xcode-envvars/file6 +1 -0
  679. data/ext/gyp/test/mac/copies-with-xcode-envvars/file7 +1 -0
  680. data/ext/gyp/test/mac/copies-with-xcode-envvars/file8 +1 -0
  681. data/ext/gyp/test/mac/copies-with-xcode-envvars/file9 +1 -0
  682. data/ext/gyp/test/mac/copy-dylib/empty.c +1 -0
  683. data/ext/gyp/test/mac/copy-dylib/test.gyp +31 -0
  684. data/ext/gyp/test/mac/debuginfo/file.c +6 -0
  685. data/ext/gyp/test/mac/debuginfo/test.gyp +82 -0
  686. data/ext/gyp/test/mac/depend-on-bundle/English.lproj/InfoPlist.strings +1 -0
  687. data/ext/gyp/test/mac/depend-on-bundle/Info.plist +28 -0
  688. data/ext/gyp/test/mac/depend-on-bundle/bundle.c +1 -0
  689. data/ext/gyp/test/mac/depend-on-bundle/executable.c +4 -0
  690. data/ext/gyp/test/mac/depend-on-bundle/test.gyp +28 -0
  691. data/ext/gyp/test/mac/deployment-target/check-version-min.c +33 -0
  692. data/ext/gyp/test/mac/deployment-target/deployment-target.gyp +28 -0
  693. data/ext/gyp/test/mac/framework/TestFramework/English.lproj/InfoPlist.strings +2 -0
  694. data/ext/gyp/test/mac/framework/TestFramework/Info.plist +28 -0
  695. data/ext/gyp/test/mac/framework/TestFramework/ObjCVector.h +28 -0
  696. data/ext/gyp/test/mac/framework/TestFramework/ObjCVector.mm +63 -0
  697. data/ext/gyp/test/mac/framework/TestFramework/ObjCVectorInternal.h +9 -0
  698. data/ext/gyp/test/mac/framework/TestFramework/TestFramework_Prefix.pch +7 -0
  699. data/ext/gyp/test/mac/framework/empty.c +0 -0
  700. data/ext/gyp/test/mac/framework/framework.gyp +108 -0
  701. data/ext/gyp/test/mac/framework-dirs/calculate.c +15 -0
  702. data/ext/gyp/test/mac/framework-dirs/framework-dirs.gyp +21 -0
  703. data/ext/gyp/test/mac/framework-headers/myframework.h +8 -0
  704. data/ext/gyp/test/mac/framework-headers/myframework.m +8 -0
  705. data/ext/gyp/test/mac/framework-headers/test.gyp +44 -0
  706. data/ext/gyp/test/mac/global-settings/src/dir1/dir1.gyp +11 -0
  707. data/ext/gyp/test/mac/global-settings/src/dir2/dir2.gyp +22 -0
  708. data/ext/gyp/test/mac/global-settings/src/dir2/file.txt +1 -0
  709. data/ext/gyp/test/mac/gyptest-action-envvars.py +36 -0
  710. data/ext/gyp/test/mac/gyptest-app-assets-catalog.py +125 -0
  711. data/ext/gyp/test/mac/gyptest-app-error.py +49 -0
  712. data/ext/gyp/test/mac/gyptest-app.py +122 -0
  713. data/ext/gyp/test/mac/gyptest-archs.py +96 -0
  714. data/ext/gyp/test/mac/gyptest-bundle-resources.py +64 -0
  715. data/ext/gyp/test/mac/gyptest-cflags.py +21 -0
  716. data/ext/gyp/test/mac/gyptest-clang-cxx-language-standard.py +25 -0
  717. data/ext/gyp/test/mac/gyptest-clang-cxx-library.py +32 -0
  718. data/ext/gyp/test/mac/gyptest-copies-with-xcode-envvars.py +65 -0
  719. data/ext/gyp/test/mac/gyptest-copies.py +62 -0
  720. data/ext/gyp/test/mac/gyptest-copy-dylib.py +25 -0
  721. data/ext/gyp/test/mac/gyptest-debuginfo.py +36 -0
  722. data/ext/gyp/test/mac/gyptest-depend-on-bundle.py +45 -0
  723. data/ext/gyp/test/mac/gyptest-deployment-target.py +27 -0
  724. data/ext/gyp/test/mac/gyptest-framework-dirs.py +23 -0
  725. data/ext/gyp/test/mac/gyptest-framework-headers.py +38 -0
  726. data/ext/gyp/test/mac/gyptest-framework.py +80 -0
  727. data/ext/gyp/test/mac/gyptest-global-settings.py +33 -0
  728. data/ext/gyp/test/mac/gyptest-identical-name.py +45 -0
  729. data/ext/gyp/test/mac/gyptest-infoplist-process.py +56 -0
  730. data/ext/gyp/test/mac/gyptest-installname.py +85 -0
  731. data/ext/gyp/test/mac/gyptest-kext.py +27 -0
  732. data/ext/gyp/test/mac/gyptest-ldflags-passed-to-libtool.py +37 -0
  733. data/ext/gyp/test/mac/gyptest-ldflags.py +74 -0
  734. data/ext/gyp/test/mac/gyptest-libraries.py +30 -0
  735. data/ext/gyp/test/mac/gyptest-libtool-zero.py +26 -0
  736. data/ext/gyp/test/mac/gyptest-loadable-module-bundle-product-extension.py +31 -0
  737. data/ext/gyp/test/mac/gyptest-loadable-module.py +54 -0
  738. data/ext/gyp/test/mac/gyptest-lto.py +66 -0
  739. data/ext/gyp/test/mac/gyptest-missing-cfbundlesignature.py +34 -0
  740. data/ext/gyp/test/mac/gyptest-non-strs-flattened-to-env.py +38 -0
  741. data/ext/gyp/test/mac/gyptest-objc-arc.py +27 -0
  742. data/ext/gyp/test/mac/gyptest-objc-gc.py +51 -0
  743. data/ext/gyp/test/mac/gyptest-postbuild-copy-bundle.py +75 -0
  744. data/ext/gyp/test/mac/gyptest-postbuild-defaults.py +34 -0
  745. data/ext/gyp/test/mac/gyptest-postbuild-fail.py +71 -0
  746. data/ext/gyp/test/mac/gyptest-postbuild-multiple-configurations.py +26 -0
  747. data/ext/gyp/test/mac/gyptest-postbuild-static-library.py +28 -0
  748. data/ext/gyp/test/mac/gyptest-postbuild.py +53 -0
  749. data/ext/gyp/test/mac/gyptest-prefixheader.py +20 -0
  750. data/ext/gyp/test/mac/gyptest-rebuild.py +46 -0
  751. data/ext/gyp/test/mac/gyptest-rpath.py +50 -0
  752. data/ext/gyp/test/mac/gyptest-sdkroot.py +56 -0
  753. data/ext/gyp/test/mac/gyptest-sourceless-module.py +77 -0
  754. data/ext/gyp/test/mac/gyptest-strip-default.py +97 -0
  755. data/ext/gyp/test/mac/gyptest-strip.py +66 -0
  756. data/ext/gyp/test/mac/gyptest-swift-library.py +67 -0
  757. data/ext/gyp/test/mac/gyptest-type-envvars.py +26 -0
  758. data/ext/gyp/test/mac/gyptest-unicode-settings.py +20 -0
  759. data/ext/gyp/test/mac/gyptest-xcode-env-order.py +95 -0
  760. data/ext/gyp/test/mac/gyptest-xcode-gcc-clang.py +40 -0
  761. data/ext/gyp/test/mac/gyptest-xcode-gcc.py +60 -0
  762. data/ext/gyp/test/mac/gyptest-xcode-support-actions.py +25 -0
  763. data/ext/gyp/test/mac/gyptest-xctest.py +41 -0
  764. data/ext/gyp/test/mac/gyptest-xcuitest.py +39 -0
  765. data/ext/gyp/test/mac/identical-name/proxy/proxy.cc +2 -0
  766. data/ext/gyp/test/mac/identical-name/proxy/proxy.gyp +9 -0
  767. data/ext/gyp/test/mac/identical-name/proxy/testlib/testlib.cc +2 -0
  768. data/ext/gyp/test/mac/identical-name/proxy/testlib/testlib.gyp +8 -0
  769. data/ext/gyp/test/mac/identical-name/test-should-fail.gyp +10 -0
  770. data/ext/gyp/test/mac/identical-name/test.gyp +11 -0
  771. data/ext/gyp/test/mac/identical-name/test.gypi +7 -0
  772. data/ext/gyp/test/mac/identical-name/testlib/main.cc +3 -0
  773. data/ext/gyp/test/mac/identical-name/testlib/testlib.gyp +14 -0
  774. data/ext/gyp/test/mac/identical-name/testlib/void.cc +2 -0
  775. data/ext/gyp/test/mac/infoplist-process/Info.plist +36 -0
  776. data/ext/gyp/test/mac/infoplist-process/main.c +7 -0
  777. data/ext/gyp/test/mac/infoplist-process/test1.gyp +25 -0
  778. data/ext/gyp/test/mac/infoplist-process/test2.gyp +25 -0
  779. data/ext/gyp/test/mac/infoplist-process/test3.gyp +25 -0
  780. data/ext/gyp/test/mac/installname/Info.plist +28 -0
  781. data/ext/gyp/test/mac/installname/file.c +1 -0
  782. data/ext/gyp/test/mac/installname/main.c +1 -0
  783. data/ext/gyp/test/mac/installname/test.gyp +93 -0
  784. data/ext/gyp/test/mac/kext/GypKext/GypKext-Info.plist +35 -0
  785. data/ext/gyp/test/mac/kext/GypKext/GypKext.c +16 -0
  786. data/ext/gyp/test/mac/kext/kext.gyp +18 -0
  787. data/ext/gyp/test/mac/ldflags/subdirectory/Info.plist +8 -0
  788. data/ext/gyp/test/mac/ldflags/subdirectory/file.c +2 -0
  789. data/ext/gyp/test/mac/ldflags/subdirectory/symbol_list.def +1 -0
  790. data/ext/gyp/test/mac/ldflags/subdirectory/test.gyp +66 -0
  791. data/ext/gyp/test/mac/ldflags-libtool/file.c +1 -0
  792. data/ext/gyp/test/mac/ldflags-libtool/test.gyp +17 -0
  793. data/ext/gyp/test/mac/libraries/subdir/README.txt +1 -0
  794. data/ext/gyp/test/mac/libraries/subdir/hello.cc +10 -0
  795. data/ext/gyp/test/mac/libraries/subdir/mylib.c +7 -0
  796. data/ext/gyp/test/mac/libraries/subdir/test.gyp +65 -0
  797. data/ext/gyp/test/mac/libtool-zero/mylib.c +7 -0
  798. data/ext/gyp/test/mac/libtool-zero/test.gyp +18 -0
  799. data/ext/gyp/test/mac/loadable-module/Info.plist +26 -0
  800. data/ext/gyp/test/mac/loadable-module/module.c +11 -0
  801. data/ext/gyp/test/mac/loadable-module/test.gyp +18 -0
  802. data/ext/gyp/test/mac/loadable-module-bundle-product-extension/src.cc +7 -0
  803. data/ext/gyp/test/mac/loadable-module-bundle-product-extension/test.gyp +24 -0
  804. data/ext/gyp/test/mac/lto/asmfile.S +2 -0
  805. data/ext/gyp/test/mac/lto/ccfile.cc +1 -0
  806. data/ext/gyp/test/mac/lto/cfile.c +1 -0
  807. data/ext/gyp/test/mac/lto/mfile.m +1 -0
  808. data/ext/gyp/test/mac/lto/mmfile.mm +1 -0
  809. data/ext/gyp/test/mac/lto/test.gyp +35 -0
  810. data/ext/gyp/test/mac/missing-cfbundlesignature/Info.plist +10 -0
  811. data/ext/gyp/test/mac/missing-cfbundlesignature/Other-Info.plist +12 -0
  812. data/ext/gyp/test/mac/missing-cfbundlesignature/Third-Info.plist +12 -0
  813. data/ext/gyp/test/mac/missing-cfbundlesignature/file.c +1 -0
  814. data/ext/gyp/test/mac/missing-cfbundlesignature/test.gyp +34 -0
  815. data/ext/gyp/test/mac/non-strs-flattened-to-env/Info.plist +15 -0
  816. data/ext/gyp/test/mac/non-strs-flattened-to-env/main.c +7 -0
  817. data/ext/gyp/test/mac/non-strs-flattened-to-env/test.gyp +27 -0
  818. data/ext/gyp/test/mac/objc-arc/c-file.c +5 -0
  819. data/ext/gyp/test/mac/objc-arc/cc-file.cc +5 -0
  820. data/ext/gyp/test/mac/objc-arc/m-file-arc-weak.m +9 -0
  821. data/ext/gyp/test/mac/objc-arc/m-file-no-arc.m +9 -0
  822. data/ext/gyp/test/mac/objc-arc/m-file.m +9 -0
  823. data/ext/gyp/test/mac/objc-arc/mm-file-arc-weak.mm +9 -0
  824. data/ext/gyp/test/mac/objc-arc/mm-file-no-arc.mm +9 -0
  825. data/ext/gyp/test/mac/objc-arc/mm-file.mm +9 -0
  826. data/ext/gyp/test/mac/objc-arc/test.gyp +53 -0
  827. data/ext/gyp/test/mac/objc-gc/c-file.c +1 -0
  828. data/ext/gyp/test/mac/objc-gc/cc-file.cc +1 -0
  829. data/ext/gyp/test/mac/objc-gc/main.m +6 -0
  830. data/ext/gyp/test/mac/objc-gc/needs-gc-mm.mm +1 -0
  831. data/ext/gyp/test/mac/objc-gc/needs-gc.m +1 -0
  832. data/ext/gyp/test/mac/objc-gc/test.gyp +102 -0
  833. data/ext/gyp/test/mac/postbuild-copy-bundle/Framework-Info.plist +30 -0
  834. data/ext/gyp/test/mac/postbuild-copy-bundle/TestApp-Info.plist +32 -0
  835. data/ext/gyp/test/mac/postbuild-copy-bundle/copied.txt +1 -0
  836. data/ext/gyp/test/mac/postbuild-copy-bundle/empty.c +0 -0
  837. data/ext/gyp/test/mac/postbuild-copy-bundle/main.c +4 -0
  838. data/ext/gyp/test/mac/postbuild-copy-bundle/postbuild-copy-framework.sh +9 -0
  839. data/ext/gyp/test/mac/postbuild-copy-bundle/resource_file.sb +1 -0
  840. data/ext/gyp/test/mac/postbuild-copy-bundle/test.gyp +49 -0
  841. data/ext/gyp/test/mac/postbuild-defaults/Info.plist +13 -0
  842. data/ext/gyp/test/mac/postbuild-defaults/main.c +7 -0
  843. data/ext/gyp/test/mac/postbuild-defaults/postbuild-defaults.sh +15 -0
  844. data/ext/gyp/test/mac/postbuild-defaults/test.gyp +26 -0
  845. data/ext/gyp/test/mac/postbuild-fail/file.c +6 -0
  846. data/ext/gyp/test/mac/postbuild-fail/postbuild-fail.sh +6 -0
  847. data/ext/gyp/test/mac/postbuild-fail/test.gyp +38 -0
  848. data/ext/gyp/test/mac/postbuild-fail/touch-dynamic.sh +7 -0
  849. data/ext/gyp/test/mac/postbuild-fail/touch-static.sh +7 -0
  850. data/ext/gyp/test/mac/postbuild-multiple-configurations/main.c +4 -0
  851. data/ext/gyp/test/mac/postbuild-multiple-configurations/postbuild-touch-file.sh +7 -0
  852. data/ext/gyp/test/mac/postbuild-multiple-configurations/test.gyp +26 -0
  853. data/ext/gyp/test/mac/postbuild-static-library/empty.c +4 -0
  854. data/ext/gyp/test/mac/postbuild-static-library/postbuild-touch-file.sh +7 -0
  855. data/ext/gyp/test/mac/postbuild-static-library/test.gyp +34 -0
  856. data/ext/gyp/test/mac/postbuilds/copy.sh +3 -0
  857. data/ext/gyp/test/mac/postbuilds/file.c +4 -0
  858. data/ext/gyp/test/mac/postbuilds/file_g.c +4 -0
  859. data/ext/gyp/test/mac/postbuilds/file_h.c +4 -0
  860. data/ext/gyp/test/mac/postbuilds/script/shared_library_postbuild.sh +23 -0
  861. data/ext/gyp/test/mac/postbuilds/script/static_library_postbuild.sh +23 -0
  862. data/ext/gyp/test/mac/postbuilds/subdirectory/copied_file.txt +1 -0
  863. data/ext/gyp/test/mac/postbuilds/subdirectory/nested_target.gyp +53 -0
  864. data/ext/gyp/test/mac/postbuilds/test.gyp +93 -0
  865. data/ext/gyp/test/mac/prefixheader/file.c +1 -0
  866. data/ext/gyp/test/mac/prefixheader/file.cc +1 -0
  867. data/ext/gyp/test/mac/prefixheader/file.m +1 -0
  868. data/ext/gyp/test/mac/prefixheader/file.mm +1 -0
  869. data/ext/gyp/test/mac/prefixheader/header.h +1 -0
  870. data/ext/gyp/test/mac/prefixheader/test.gyp +82 -0
  871. data/ext/gyp/test/mac/rebuild/TestApp-Info.plist +32 -0
  872. data/ext/gyp/test/mac/rebuild/delay-touch.sh +6 -0
  873. data/ext/gyp/test/mac/rebuild/empty.c +0 -0
  874. data/ext/gyp/test/mac/rebuild/main.c +1 -0
  875. data/ext/gyp/test/mac/rebuild/test.gyp +56 -0
  876. data/ext/gyp/test/mac/rpath/file.c +1 -0
  877. data/ext/gyp/test/mac/rpath/main.c +1 -0
  878. data/ext/gyp/test/mac/rpath/test.gyp +48 -0
  879. data/ext/gyp/test/mac/sdkroot/file.cc +5 -0
  880. data/ext/gyp/test/mac/sdkroot/test.gyp +35 -0
  881. data/ext/gyp/test/mac/sdkroot/test_shorthand.sh +20 -0
  882. data/ext/gyp/test/mac/sourceless-module/empty.c +1 -0
  883. data/ext/gyp/test/mac/sourceless-module/empty.txt +2 -0
  884. data/ext/gyp/test/mac/sourceless-module/fun.c +1 -0
  885. data/ext/gyp/test/mac/sourceless-module/test.gyp +96 -0
  886. data/ext/gyp/test/mac/strip/file.c +22 -0
  887. data/ext/gyp/test/mac/strip/main.c +25 -0
  888. data/ext/gyp/test/mac/strip/strip.saves +5 -0
  889. data/ext/gyp/test/mac/strip/subdirectory/nested_file.c +1 -0
  890. data/ext/gyp/test/mac/strip/subdirectory/nested_strip.saves +5 -0
  891. data/ext/gyp/test/mac/strip/subdirectory/subdirectory.gyp +38 -0
  892. data/ext/gyp/test/mac/strip/subdirectory/test_reading_save_file_from_postbuild.sh +5 -0
  893. data/ext/gyp/test/mac/strip/test-defaults.gyp +51 -0
  894. data/ext/gyp/test/mac/strip/test.gyp +119 -0
  895. data/ext/gyp/test/mac/swift-library/Info.plist +28 -0
  896. data/ext/gyp/test/mac/swift-library/file.swift +9 -0
  897. data/ext/gyp/test/mac/swift-library/test.gyp +21 -0
  898. data/ext/gyp/test/mac/type_envvars/file.c +6 -0
  899. data/ext/gyp/test/mac/type_envvars/test.gyp +100 -0
  900. data/ext/gyp/test/mac/type_envvars/test_bundle_executable.sh +30 -0
  901. data/ext/gyp/test/mac/type_envvars/test_bundle_loadable_module.sh +35 -0
  902. data/ext/gyp/test/mac/type_envvars/test_bundle_shared_library.sh +38 -0
  903. data/ext/gyp/test/mac/type_envvars/test_check_sdkroot.sh +47 -0
  904. data/ext/gyp/test/mac/type_envvars/test_nonbundle_executable.sh +33 -0
  905. data/ext/gyp/test/mac/type_envvars/test_nonbundle_loadable_module.sh +31 -0
  906. data/ext/gyp/test/mac/type_envvars/test_nonbundle_none.sh +32 -0
  907. data/ext/gyp/test/mac/type_envvars/test_nonbundle_shared_library.sh +31 -0
  908. data/ext/gyp/test/mac/type_envvars/test_nonbundle_static_library.sh +31 -0
  909. data/ext/gyp/test/mac/unicode-settings/file.cc +2 -0
  910. data/ext/gyp/test/mac/unicode-settings/test.gyp +23 -0
  911. data/ext/gyp/test/mac/unicode-settings/test_bundle_display_name.sh +7 -0
  912. data/ext/gyp/test/mac/xcode-env-order/Info.plist +56 -0
  913. data/ext/gyp/test/mac/xcode-env-order/file.ext1 +0 -0
  914. data/ext/gyp/test/mac/xcode-env-order/file.ext2 +0 -0
  915. data/ext/gyp/test/mac/xcode-env-order/file.ext3 +0 -0
  916. data/ext/gyp/test/mac/xcode-env-order/main.c +7 -0
  917. data/ext/gyp/test/mac/xcode-env-order/test.gyp +121 -0
  918. data/ext/gyp/test/mac/xcode-gcc/aliasing.cc +13 -0
  919. data/ext/gyp/test/mac/xcode-gcc/test-clang.gyp +42 -0
  920. data/ext/gyp/test/mac/xcode-gcc/test.gyp +60 -0
  921. data/ext/gyp/test/mac/xcode-gcc/valid_c.c +8 -0
  922. data/ext/gyp/test/mac/xcode-gcc/valid_cc.cc +8 -0
  923. data/ext/gyp/test/mac/xcode-gcc/valid_m.m +8 -0
  924. data/ext/gyp/test/mac/xcode-gcc/valid_mm.mm +8 -0
  925. data/ext/gyp/test/mac/xcode-gcc/warn_about_invalid_offsetof_macro.cc +15 -0
  926. data/ext/gyp/test/mac/xcode-gcc/warn_about_missing_newline.c +8 -0
  927. data/ext/gyp/test/mac/xcode-support-actions/source.c +0 -0
  928. data/ext/gyp/test/mac/xcode-support-actions/test.gyp +26 -0
  929. data/ext/gyp/test/mac/xctest/MyClass.h +8 -0
  930. data/ext/gyp/test/mac/xctest/MyClass.m +8 -0
  931. data/ext/gyp/test/mac/xctest/TestCase.m +16 -0
  932. data/ext/gyp/test/mac/xctest/resource.txt +1 -0
  933. data/ext/gyp/test/mac/xctest/test.gyp +47 -0
  934. data/ext/gyp/test/mac/xctest/test.xcodeproj/xcshareddata/xcschemes/classes.xcscheme +69 -0
  935. data/ext/gyp/test/mac/xcuitest/Info.plist +28 -0
  936. data/ext/gyp/test/mac/xcuitest/MyAppDelegate.h +8 -0
  937. data/ext/gyp/test/mac/xcuitest/MyAppDelegate.m +19 -0
  938. data/ext/gyp/test/mac/xcuitest/TestCase.m +15 -0
  939. data/ext/gyp/test/mac/xcuitest/main.m +15 -0
  940. data/ext/gyp/test/mac/xcuitest/resource.txt +1 -0
  941. data/ext/gyp/test/mac/xcuitest/test.gyp +69 -0
  942. data/ext/gyp/test/make/dependencies.gyp +15 -0
  943. data/ext/gyp/test/make/gyptest-dependencies.py +26 -0
  944. data/ext/gyp/test/make/gyptest-noload.py +57 -0
  945. data/ext/gyp/test/make/main.cc +12 -0
  946. data/ext/gyp/test/make/main.h +0 -0
  947. data/ext/gyp/test/make/noload/all.gyp +18 -0
  948. data/ext/gyp/test/make/noload/lib/shared.c +3 -0
  949. data/ext/gyp/test/make/noload/lib/shared.gyp +16 -0
  950. data/ext/gyp/test/make/noload/lib/shared.h +1 -0
  951. data/ext/gyp/test/make/noload/main.c +9 -0
  952. data/ext/gyp/test/make_global_settings/ar/gyptest-make_global_settings_ar.py +126 -0
  953. data/ext/gyp/test/make_global_settings/ar/make_global_settings_ar.gyp +29 -0
  954. data/ext/gyp/test/make_global_settings/basics/gyptest-make_global_settings.py +51 -0
  955. data/ext/gyp/test/make_global_settings/basics/make_global_settings.gyp +17 -0
  956. data/ext/gyp/test/make_global_settings/env-wrapper/gyptest-wrapper.py +51 -0
  957. data/ext/gyp/test/make_global_settings/env-wrapper/wrapper.gyp +17 -0
  958. data/ext/gyp/test/make_global_settings/full-toolchain/bar.cc +1 -0
  959. data/ext/gyp/test/make_global_settings/full-toolchain/foo.c +1 -0
  960. data/ext/gyp/test/make_global_settings/full-toolchain/gyptest-make_global_settings.py +53 -0
  961. data/ext/gyp/test/make_global_settings/full-toolchain/make_global_settings.gyp +22 -0
  962. data/ext/gyp/test/make_global_settings/full-toolchain/my_nm.py +9 -0
  963. data/ext/gyp/test/make_global_settings/full-toolchain/my_readelf.py +9 -0
  964. data/ext/gyp/test/make_global_settings/ld/gyptest-make_global_settings_ld.py +130 -0
  965. data/ext/gyp/test/make_global_settings/ld/make_global_settings_ld.gyp +29 -0
  966. data/ext/gyp/test/make_global_settings/wrapper/gyptest-wrapper.py +52 -0
  967. data/ext/gyp/test/make_global_settings/wrapper/wrapper.gyp +21 -0
  968. data/ext/gyp/test/many-actions/file0 +0 -0
  969. data/ext/gyp/test/many-actions/file1 +0 -0
  970. data/ext/gyp/test/many-actions/file2 +0 -0
  971. data/ext/gyp/test/many-actions/file3 +0 -0
  972. data/ext/gyp/test/many-actions/file4 +0 -0
  973. data/ext/gyp/test/many-actions/gyptest-many-actions-unsorted.py +43 -0
  974. data/ext/gyp/test/many-actions/gyptest-many-actions.py +29 -0
  975. data/ext/gyp/test/many-actions/many-actions-unsorted.gyp +154 -0
  976. data/ext/gyp/test/many-actions/many-actions.gyp +1817 -0
  977. data/ext/gyp/test/module/gyptest-default.py +28 -0
  978. data/ext/gyp/test/module/src/lib1.c +10 -0
  979. data/ext/gyp/test/module/src/lib2.c +10 -0
  980. data/ext/gyp/test/module/src/module.gyp +53 -0
  981. data/ext/gyp/test/module/src/program.c +111 -0
  982. data/ext/gyp/test/msvs/buildevents/buildevents.gyp +14 -0
  983. data/ext/gyp/test/msvs/buildevents/gyptest-msbuild-supports-prepostbuild.py +24 -0
  984. data/ext/gyp/test/msvs/buildevents/gyptest-ninja-warnings.py +29 -0
  985. data/ext/gyp/test/msvs/buildevents/main.cc +5 -0
  986. data/ext/gyp/test/msvs/config_attrs/gyptest-config_attrs.py +41 -0
  987. data/ext/gyp/test/msvs/config_attrs/hello.c +11 -0
  988. data/ext/gyp/test/msvs/config_attrs/hello.gyp +21 -0
  989. data/ext/gyp/test/msvs/express/base/base.gyp +22 -0
  990. data/ext/gyp/test/msvs/express/express.gyp +19 -0
  991. data/ext/gyp/test/msvs/express/gyptest-express.py +29 -0
  992. data/ext/gyp/test/msvs/external_builder/external.gyp +68 -0
  993. data/ext/gyp/test/msvs/external_builder/external_builder.py +9 -0
  994. data/ext/gyp/test/msvs/external_builder/gyptest-all.py +59 -0
  995. data/ext/gyp/test/msvs/external_builder/hello.cpp +10 -0
  996. data/ext/gyp/test/msvs/external_builder/hello.z +6 -0
  997. data/ext/gyp/test/msvs/external_builder/msbuild_action.py +9 -0
  998. data/ext/gyp/test/msvs/external_builder/msbuild_rule.py +11 -0
  999. data/ext/gyp/test/msvs/filters/filters.gyp +47 -0
  1000. data/ext/gyp/test/msvs/filters/gyptest-filters-2008.py +68 -0
  1001. data/ext/gyp/test/msvs/filters/gyptest-filters-2010.py +57 -0
  1002. data/ext/gyp/test/msvs/list_excluded/gyptest-all.py +51 -0
  1003. data/ext/gyp/test/msvs/list_excluded/hello.cpp +10 -0
  1004. data/ext/gyp/test/msvs/list_excluded/hello_exclude.gyp +19 -0
  1005. data/ext/gyp/test/msvs/list_excluded/hello_mac.cpp +10 -0
  1006. data/ext/gyp/test/msvs/missing_sources/gyptest-missing.py +43 -0
  1007. data/ext/gyp/test/msvs/missing_sources/hello_missing.gyp +15 -0
  1008. data/ext/gyp/test/msvs/multiple_actions_error_handling/action_fail.py +7 -0
  1009. data/ext/gyp/test/msvs/multiple_actions_error_handling/action_succeed.py +7 -0
  1010. data/ext/gyp/test/msvs/multiple_actions_error_handling/actions.gyp +40 -0
  1011. data/ext/gyp/test/msvs/multiple_actions_error_handling/gyptest.py +26 -0
  1012. data/ext/gyp/test/msvs/props/AppName.props +14 -0
  1013. data/ext/gyp/test/msvs/props/AppName.vsprops +11 -0
  1014. data/ext/gyp/test/msvs/props/gyptest-props.py +22 -0
  1015. data/ext/gyp/test/msvs/props/hello.c +11 -0
  1016. data/ext/gyp/test/msvs/props/hello.gyp +22 -0
  1017. data/ext/gyp/test/msvs/rules_stdout_stderr/dummy.bar +5 -0
  1018. data/ext/gyp/test/msvs/rules_stdout_stderr/dummy.foo +5 -0
  1019. data/ext/gyp/test/msvs/rules_stdout_stderr/gyptest-rules-stdout-stderr.py +29 -0
  1020. data/ext/gyp/test/msvs/rules_stdout_stderr/rule_stderr.py +8 -0
  1021. data/ext/gyp/test/msvs/rules_stdout_stderr/rule_stdout.py +7 -0
  1022. data/ext/gyp/test/msvs/rules_stdout_stderr/rules-stdout-stderr.gyp +52 -0
  1023. data/ext/gyp/test/msvs/shared_output/common.gypi +17 -0
  1024. data/ext/gyp/test/msvs/shared_output/gyptest-shared_output.py +41 -0
  1025. data/ext/gyp/test/msvs/shared_output/hello.c +12 -0
  1026. data/ext/gyp/test/msvs/shared_output/hello.gyp +21 -0
  1027. data/ext/gyp/test/msvs/shared_output/there/there.c +12 -0
  1028. data/ext/gyp/test/msvs/shared_output/there/there.gyp +16 -0
  1029. data/ext/gyp/test/msvs/uldi2010/gyptest-all.py +20 -0
  1030. data/ext/gyp/test/msvs/uldi2010/hello.c +13 -0
  1031. data/ext/gyp/test/msvs/uldi2010/hello.gyp +26 -0
  1032. data/ext/gyp/test/msvs/uldi2010/hello2.c +10 -0
  1033. data/ext/gyp/test/multiple-targets/gyptest-all.py +30 -0
  1034. data/ext/gyp/test/multiple-targets/gyptest-default.py +30 -0
  1035. data/ext/gyp/test/multiple-targets/src/common.c +7 -0
  1036. data/ext/gyp/test/multiple-targets/src/multiple.gyp +24 -0
  1037. data/ext/gyp/test/multiple-targets/src/prog1.c +10 -0
  1038. data/ext/gyp/test/multiple-targets/src/prog2.c +10 -0
  1039. data/ext/gyp/test/ninja/action-rule-hash/gyptest-action-rule-hash.py +32 -0
  1040. data/ext/gyp/test/ninja/action-rule-hash/subdir/action-rule-hash.gyp +29 -0
  1041. data/ext/gyp/test/ninja/action-rule-hash/subdir/emit.py +13 -0
  1042. data/ext/gyp/test/ninja/action_dependencies/gyptest-action-dependencies.py +64 -0
  1043. data/ext/gyp/test/ninja/action_dependencies/src/a.c +10 -0
  1044. data/ext/gyp/test/ninja/action_dependencies/src/a.h +13 -0
  1045. data/ext/gyp/test/ninja/action_dependencies/src/action_dependencies.gyp +88 -0
  1046. data/ext/gyp/test/ninja/action_dependencies/src/b.c +18 -0
  1047. data/ext/gyp/test/ninja/action_dependencies/src/b.h +13 -0
  1048. data/ext/gyp/test/ninja/action_dependencies/src/c.c +10 -0
  1049. data/ext/gyp/test/ninja/action_dependencies/src/c.h +13 -0
  1050. data/ext/gyp/test/ninja/action_dependencies/src/emit.py +11 -0
  1051. data/ext/gyp/test/ninja/chained-dependency/chained-dependency.gyp +53 -0
  1052. data/ext/gyp/test/ninja/chained-dependency/chained.c +5 -0
  1053. data/ext/gyp/test/ninja/chained-dependency/gyptest-chained-dependency.py +30 -0
  1054. data/ext/gyp/test/ninja/empty-and-non-empty-duplicate-name/gyptest-empty-and-non-empty-duplicate-name.py +23 -0
  1055. data/ext/gyp/test/ninja/empty-and-non-empty-duplicate-name/subdir/included.gyp +19 -0
  1056. data/ext/gyp/test/ninja/empty-and-non-empty-duplicate-name/test.gyp +19 -0
  1057. data/ext/gyp/test/ninja/normalize-paths-win/gyptest-normalize-paths.py +46 -0
  1058. data/ext/gyp/test/ninja/normalize-paths-win/hello.cc +7 -0
  1059. data/ext/gyp/test/ninja/normalize-paths-win/normalize-paths.gyp +68 -0
  1060. data/ext/gyp/test/ninja/s-needs-no-depfiles/empty.s +1 -0
  1061. data/ext/gyp/test/ninja/s-needs-no-depfiles/gyptest-s-needs-no-depfiles.py +42 -0
  1062. data/ext/gyp/test/ninja/s-needs-no-depfiles/s-needs-no-depfiles.gyp +13 -0
  1063. data/ext/gyp/test/ninja/solibs_avoid_relinking/gyptest-solibs-avoid-relinking.py +48 -0
  1064. data/ext/gyp/test/ninja/solibs_avoid_relinking/main.cc +5 -0
  1065. data/ext/gyp/test/ninja/solibs_avoid_relinking/solib.cc +8 -0
  1066. data/ext/gyp/test/ninja/solibs_avoid_relinking/solibs_avoid_relinking.gyp +38 -0
  1067. data/ext/gyp/test/ninja/use-console/foo.bar +5 -0
  1068. data/ext/gyp/test/ninja/use-console/gyptest-use-console.py +29 -0
  1069. data/ext/gyp/test/ninja/use-console/use-console.gyp +60 -0
  1070. data/ext/gyp/test/ninja/use-custom-environment-files/gyptest-use-custom-environment-files.py +28 -0
  1071. data/ext/gyp/test/ninja/use-custom-environment-files/use-custom-environment-files.cc +7 -0
  1072. data/ext/gyp/test/ninja/use-custom-environment-files/use-custom-environment-files.gyp +15 -0
  1073. data/ext/gyp/test/no-cpp/gyptest-no-cpp.py +53 -0
  1074. data/ext/gyp/test/no-cpp/src/call-f-main.c +2 -0
  1075. data/ext/gyp/test/no-cpp/src/empty-main.c +1 -0
  1076. data/ext/gyp/test/no-cpp/src/f.cc +3 -0
  1077. data/ext/gyp/test/no-cpp/src/test.gyp +25 -0
  1078. data/ext/gyp/test/no-output/gyptest-no-output.py +21 -0
  1079. data/ext/gyp/test/no-output/src/nooutput.gyp +17 -0
  1080. data/ext/gyp/test/product/gyptest-product.py +43 -0
  1081. data/ext/gyp/test/product/hello.c +15 -0
  1082. data/ext/gyp/test/product/product.gyp +128 -0
  1083. data/ext/gyp/test/prune_targets/gyptest-prune-targets.py +66 -0
  1084. data/ext/gyp/test/prune_targets/lib1.cc +6 -0
  1085. data/ext/gyp/test/prune_targets/lib2.cc +6 -0
  1086. data/ext/gyp/test/prune_targets/lib3.cc +6 -0
  1087. data/ext/gyp/test/prune_targets/lib_indirect.cc +6 -0
  1088. data/ext/gyp/test/prune_targets/program.cc +7 -0
  1089. data/ext/gyp/test/prune_targets/test1.gyp +26 -0
  1090. data/ext/gyp/test/prune_targets/test2.gyp +30 -0
  1091. data/ext/gyp/test/relative/foo/a/a.cc +9 -0
  1092. data/ext/gyp/test/relative/foo/a/a.gyp +13 -0
  1093. data/ext/gyp/test/relative/foo/a/c/c.cc +9 -0
  1094. data/ext/gyp/test/relative/foo/a/c/c.gyp +12 -0
  1095. data/ext/gyp/test/relative/foo/b/b.cc +9 -0
  1096. data/ext/gyp/test/relative/foo/b/b.gyp +9 -0
  1097. data/ext/gyp/test/relative/gyptest-default.py +25 -0
  1098. data/ext/gyp/test/rename/filecase/file.c +1 -0
  1099. data/ext/gyp/test/rename/filecase/test-casesensitive.gyp +15 -0
  1100. data/ext/gyp/test/rename/filecase/test.gyp +14 -0
  1101. data/ext/gyp/test/rename/gyptest-filecase.py +35 -0
  1102. data/ext/gyp/test/restat/gyptest-restat.py +31 -0
  1103. data/ext/gyp/test/restat/src/create_intermediate.py +17 -0
  1104. data/ext/gyp/test/restat/src/restat.gyp +50 -0
  1105. data/ext/gyp/test/restat/src/touch.py +16 -0
  1106. data/ext/gyp/test/rules/gyptest-all.py +84 -0
  1107. data/ext/gyp/test/rules/gyptest-default.py +70 -0
  1108. data/ext/gyp/test/rules/gyptest-input-root.py +26 -0
  1109. data/ext/gyp/test/rules/gyptest-special-variables.py +18 -0
  1110. data/ext/gyp/test/rules/src/actions.gyp +23 -0
  1111. data/ext/gyp/test/rules/src/an_asm.S +6 -0
  1112. data/ext/gyp/test/rules/src/as.bat +7 -0
  1113. data/ext/gyp/test/rules/src/copy-file.py +11 -0
  1114. data/ext/gyp/test/rules/src/external/external.gyp +66 -0
  1115. data/ext/gyp/test/rules/src/external/file1.in +1 -0
  1116. data/ext/gyp/test/rules/src/external/file2.in +1 -0
  1117. data/ext/gyp/test/rules/src/input-root.gyp +24 -0
  1118. data/ext/gyp/test/rules/src/noaction/file1.in +1 -0
  1119. data/ext/gyp/test/rules/src/noaction/no_action_with_rules_fails.gyp +37 -0
  1120. data/ext/gyp/test/rules/src/rule.py +17 -0
  1121. data/ext/gyp/test/rules/src/somefile.ext +0 -0
  1122. data/ext/gyp/test/rules/src/special-variables.gyp +34 -0
  1123. data/ext/gyp/test/rules/src/subdir1/executable.gyp +37 -0
  1124. data/ext/gyp/test/rules/src/subdir1/function1.in +6 -0
  1125. data/ext/gyp/test/rules/src/subdir1/function2.in +6 -0
  1126. data/ext/gyp/test/rules/src/subdir1/program.c +12 -0
  1127. data/ext/gyp/test/rules/src/subdir2/both_rule_and_action_input.gyp +50 -0
  1128. data/ext/gyp/test/rules/src/subdir2/file1.in +1 -0
  1129. data/ext/gyp/test/rules/src/subdir2/file2.in +1 -0
  1130. data/ext/gyp/test/rules/src/subdir2/never_used.gyp +31 -0
  1131. data/ext/gyp/test/rules/src/subdir2/no_action.gyp +38 -0
  1132. data/ext/gyp/test/rules/src/subdir2/no_inputs.gyp +32 -0
  1133. data/ext/gyp/test/rules/src/subdir2/none.gyp +33 -0
  1134. data/ext/gyp/test/rules/src/subdir2/program.c +12 -0
  1135. data/ext/gyp/test/rules/src/subdir3/executable2.gyp +37 -0
  1136. data/ext/gyp/test/rules/src/subdir3/function3.in +6 -0
  1137. data/ext/gyp/test/rules/src/subdir3/program.c +10 -0
  1138. data/ext/gyp/test/rules/src/subdir4/asm-function.assem +10 -0
  1139. data/ext/gyp/test/rules/src/subdir4/build-asm.gyp +49 -0
  1140. data/ext/gyp/test/rules/src/subdir4/program.c +19 -0
  1141. data/ext/gyp/test/rules-dirname/gyptest-dirname.py +57 -0
  1142. data/ext/gyp/test/rules-dirname/src/actions.gyp +15 -0
  1143. data/ext/gyp/test/rules-dirname/src/copy-file.py +11 -0
  1144. data/ext/gyp/test/rules-dirname/src/subdir/a/b/c.gencc +8 -0
  1145. data/ext/gyp/test/rules-dirname/src/subdir/a/b/c.printvars +1 -0
  1146. data/ext/gyp/test/rules-dirname/src/subdir/foo/bar/baz.gencc +8 -0
  1147. data/ext/gyp/test/rules-dirname/src/subdir/foo/bar/baz.printvars +1 -0
  1148. data/ext/gyp/test/rules-dirname/src/subdir/input-rule-dirname.gyp +140 -0
  1149. data/ext/gyp/test/rules-dirname/src/subdir/main.cc +14 -0
  1150. data/ext/gyp/test/rules-dirname/src/subdir/nodir.gencc +8 -0
  1151. data/ext/gyp/test/rules-dirname/src/subdir/printvars.py +14 -0
  1152. data/ext/gyp/test/rules-rebuild/gyptest-all.py +70 -0
  1153. data/ext/gyp/test/rules-rebuild/gyptest-default.py +91 -0
  1154. data/ext/gyp/test/rules-rebuild/src/main.c +12 -0
  1155. data/ext/gyp/test/rules-rebuild/src/make-sources.py +19 -0
  1156. data/ext/gyp/test/rules-rebuild/src/prog1.in +7 -0
  1157. data/ext/gyp/test/rules-rebuild/src/prog2.in +7 -0
  1158. data/ext/gyp/test/rules-rebuild/src/same_target.gyp +31 -0
  1159. data/ext/gyp/test/rules-use-built-dependencies/gyptest-use-built-dependencies.py +23 -0
  1160. data/ext/gyp/test/rules-use-built-dependencies/src/main.cc +17 -0
  1161. data/ext/gyp/test/rules-use-built-dependencies/src/use-built-dependencies-rule.gyp +42 -0
  1162. data/ext/gyp/test/rules-variables/gyptest-rules-variables.py +35 -0
  1163. data/ext/gyp/test/rules-variables/src/input_ext.c +9 -0
  1164. data/ext/gyp/test/rules-variables/src/input_name/test.c +9 -0
  1165. data/ext/gyp/test/rules-variables/src/input_path/subdir/test.c +9 -0
  1166. data/ext/gyp/test/rules-variables/src/subdir/input_dirname.c +9 -0
  1167. data/ext/gyp/test/rules-variables/src/subdir/test.c +18 -0
  1168. data/ext/gyp/test/rules-variables/src/test.input_root.c +9 -0
  1169. data/ext/gyp/test/rules-variables/src/variables.gyp +40 -0
  1170. data/ext/gyp/test/same-gyp-name/gyptest-all.py +38 -0
  1171. data/ext/gyp/test/same-gyp-name/gyptest-default.py +38 -0
  1172. data/ext/gyp/test/same-gyp-name/gyptest-library.py +20 -0
  1173. data/ext/gyp/test/same-gyp-name/library/one/sub.gyp +11 -0
  1174. data/ext/gyp/test/same-gyp-name/library/test.gyp +15 -0
  1175. data/ext/gyp/test/same-gyp-name/library/two/sub.gyp +11 -0
  1176. data/ext/gyp/test/same-gyp-name/src/all.gyp +16 -0
  1177. data/ext/gyp/test/same-gyp-name/src/subdir1/executable.gyp +15 -0
  1178. data/ext/gyp/test/same-gyp-name/src/subdir1/main1.cc +6 -0
  1179. data/ext/gyp/test/same-gyp-name/src/subdir2/executable.gyp +15 -0
  1180. data/ext/gyp/test/same-gyp-name/src/subdir2/main2.cc +6 -0
  1181. data/ext/gyp/test/same-rule-output-file-name/gyptest-all.py +23 -0
  1182. data/ext/gyp/test/same-rule-output-file-name/src/subdir1/subdir1.gyp +30 -0
  1183. data/ext/gyp/test/same-rule-output-file-name/src/subdir2/subdir2.gyp +30 -0
  1184. data/ext/gyp/test/same-rule-output-file-name/src/subdirs.gyp +16 -0
  1185. data/ext/gyp/test/same-rule-output-file-name/src/touch.py +11 -0
  1186. data/ext/gyp/test/same-source-file-name/gyptest-all.py +34 -0
  1187. data/ext/gyp/test/same-source-file-name/gyptest-default.py +34 -0
  1188. data/ext/gyp/test/same-source-file-name/gyptest-pass-executable.py +33 -0
  1189. data/ext/gyp/test/same-source-file-name/gyptest-pass-shared.py +18 -0
  1190. data/ext/gyp/test/same-source-file-name/gyptest-static.py +34 -0
  1191. data/ext/gyp/test/same-source-file-name/src/all.gyp +30 -0
  1192. data/ext/gyp/test/same-source-file-name/src/double-executable.gyp +21 -0
  1193. data/ext/gyp/test/same-source-file-name/src/double-shared.gyp +27 -0
  1194. data/ext/gyp/test/same-source-file-name/src/double-static.gyp +22 -0
  1195. data/ext/gyp/test/same-source-file-name/src/func.c +6 -0
  1196. data/ext/gyp/test/same-source-file-name/src/prog1.c +16 -0
  1197. data/ext/gyp/test/same-source-file-name/src/prog2.c +16 -0
  1198. data/ext/gyp/test/same-source-file-name/src/prog3.c +18 -0
  1199. data/ext/gyp/test/same-source-file-name/src/subdir1/func.c +6 -0
  1200. data/ext/gyp/test/same-source-file-name/src/subdir2/func.c +6 -0
  1201. data/ext/gyp/test/same-target-name/gyptest-same-target-name.py +18 -0
  1202. data/ext/gyp/test/same-target-name/src/all.gyp +16 -0
  1203. data/ext/gyp/test/same-target-name/src/executable1.gyp +15 -0
  1204. data/ext/gyp/test/same-target-name/src/executable2.gyp +15 -0
  1205. data/ext/gyp/test/same-target-name-different-directory/gyptest-all.py +41 -0
  1206. data/ext/gyp/test/same-target-name-different-directory/src/subdir1/subdir1.gyp +66 -0
  1207. data/ext/gyp/test/same-target-name-different-directory/src/subdir2/subdir2.gyp +66 -0
  1208. data/ext/gyp/test/same-target-name-different-directory/src/subdirs.gyp +16 -0
  1209. data/ext/gyp/test/same-target-name-different-directory/src/touch.py +11 -0
  1210. data/ext/gyp/test/sanitize-rule-names/blah.S +0 -0
  1211. data/ext/gyp/test/sanitize-rule-names/gyptest-sanitize-rule-names.py +17 -0
  1212. data/ext/gyp/test/sanitize-rule-names/hello.cc +7 -0
  1213. data/ext/gyp/test/sanitize-rule-names/sanitize-rule-names.gyp +27 -0
  1214. data/ext/gyp/test/sanitize-rule-names/script.py +10 -0
  1215. data/ext/gyp/test/self-dependency/common.gypi +13 -0
  1216. data/ext/gyp/test/self-dependency/dep.gyp +23 -0
  1217. data/ext/gyp/test/self-dependency/gyptest-self-dependency.py +19 -0
  1218. data/ext/gyp/test/self-dependency/self_dependency.gyp +15 -0
  1219. data/ext/gyp/test/sibling/gyptest-all.py +42 -0
  1220. data/ext/gyp/test/sibling/gyptest-relocate.py +44 -0
  1221. data/ext/gyp/test/sibling/src/build/all.gyp +16 -0
  1222. data/ext/gyp/test/sibling/src/prog1/prog1.c +7 -0
  1223. data/ext/gyp/test/sibling/src/prog1/prog1.gyp +15 -0
  1224. data/ext/gyp/test/sibling/src/prog2/prog2.c +7 -0
  1225. data/ext/gyp/test/sibling/src/prog2/prog2.gyp +15 -0
  1226. data/ext/gyp/test/small/gyptest-small.py +56 -0
  1227. data/ext/gyp/test/standalone/gyptest-standalone.py +35 -0
  1228. data/ext/gyp/test/standalone/standalone.gyp +12 -0
  1229. data/ext/gyp/test/standalone-static-library/gyptest-standalone-static-library.py +50 -0
  1230. data/ext/gyp/test/standalone-static-library/invalid.gyp +16 -0
  1231. data/ext/gyp/test/standalone-static-library/mylib.c +7 -0
  1232. data/ext/gyp/test/standalone-static-library/mylib.gyp +26 -0
  1233. data/ext/gyp/test/standalone-static-library/prog.c +7 -0
  1234. data/ext/gyp/test/subdirectory/gyptest-SYMROOT-all.py +36 -0
  1235. data/ext/gyp/test/subdirectory/gyptest-SYMROOT-default.py +37 -0
  1236. data/ext/gyp/test/subdirectory/gyptest-subdir-all.py +34 -0
  1237. data/ext/gyp/test/subdirectory/gyptest-subdir-default.py +34 -0
  1238. data/ext/gyp/test/subdirectory/gyptest-subdir2-deep.py +25 -0
  1239. data/ext/gyp/test/subdirectory/gyptest-top-all.py +43 -0
  1240. data/ext/gyp/test/subdirectory/gyptest-top-default.py +43 -0
  1241. data/ext/gyp/test/subdirectory/src/prog1.c +7 -0
  1242. data/ext/gyp/test/subdirectory/src/prog1.gyp +21 -0
  1243. data/ext/gyp/test/subdirectory/src/subdir/prog2.c +7 -0
  1244. data/ext/gyp/test/subdirectory/src/subdir/prog2.gyp +18 -0
  1245. data/ext/gyp/test/subdirectory/src/subdir/subdir2/prog3.c +7 -0
  1246. data/ext/gyp/test/subdirectory/src/subdir/subdir2/prog3.gyp +18 -0
  1247. data/ext/gyp/test/subdirectory/src/symroot.gypi +16 -0
  1248. data/ext/gyp/test/symlinks/gyptest-symlinks.py +66 -0
  1249. data/ext/gyp/test/symlinks/hello.c +12 -0
  1250. data/ext/gyp/test/symlinks/hello.gyp +15 -0
  1251. data/ext/gyp/test/target/gyptest-target.py +37 -0
  1252. data/ext/gyp/test/target/hello.c +7 -0
  1253. data/ext/gyp/test/target/target.gyp +24 -0
  1254. data/ext/gyp/test/toolsets/gyptest-toolsets.py +31 -0
  1255. data/ext/gyp/test/toolsets/main.cc +13 -0
  1256. data/ext/gyp/test/toolsets/toolsets.cc +11 -0
  1257. data/ext/gyp/test/toolsets/toolsets.gyp +62 -0
  1258. data/ext/gyp/test/toolsets/toolsets_shared.cc +11 -0
  1259. data/ext/gyp/test/toplevel-dir/gyptest-toplevel-dir.py +31 -0
  1260. data/ext/gyp/test/toplevel-dir/src/sub1/main.gyp +18 -0
  1261. data/ext/gyp/test/toplevel-dir/src/sub1/prog1.c +7 -0
  1262. data/ext/gyp/test/toplevel-dir/src/sub2/prog2.c +7 -0
  1263. data/ext/gyp/test/toplevel-dir/src/sub2/prog2.gyp +15 -0
  1264. data/ext/gyp/test/variables/commands/commands-repeated.gyp +128 -0
  1265. data/ext/gyp/test/variables/commands/commands-repeated.gyp.stdout +136 -0
  1266. data/ext/gyp/test/variables/commands/commands-repeated.gypd.golden +77 -0
  1267. data/ext/gyp/test/variables/commands/commands.gyp +91 -0
  1268. data/ext/gyp/test/variables/commands/commands.gyp.ignore-env.stdout +96 -0
  1269. data/ext/gyp/test/variables/commands/commands.gyp.stdout +96 -0
  1270. data/ext/gyp/test/variables/commands/commands.gypd.golden +66 -0
  1271. data/ext/gyp/test/variables/commands/commands.gypi +23 -0
  1272. data/ext/gyp/test/variables/commands/gyptest-commands-ignore-env.py +47 -0
  1273. data/ext/gyp/test/variables/commands/gyptest-commands-repeated-multidir.py +23 -0
  1274. data/ext/gyp/test/variables/commands/gyptest-commands-repeated.py +40 -0
  1275. data/ext/gyp/test/variables/commands/gyptest-commands.py +40 -0
  1276. data/ext/gyp/test/variables/commands/repeated_multidir/dir_1/test_1.gyp +13 -0
  1277. data/ext/gyp/test/variables/commands/repeated_multidir/dir_2/test_2.gyp +13 -0
  1278. data/ext/gyp/test/variables/commands/repeated_multidir/main.gyp +16 -0
  1279. data/ext/gyp/test/variables/commands/repeated_multidir/print_cwd_basename.py +11 -0
  1280. data/ext/gyp/test/variables/commands/repeated_multidir/repeated_command_common.gypi +25 -0
  1281. data/ext/gyp/test/variables/commands/test.py +7 -0
  1282. data/ext/gyp/test/variables/commands/update_golden +11 -0
  1283. data/ext/gyp/test/variables/empty/empty.gyp +13 -0
  1284. data/ext/gyp/test/variables/empty/empty.gypi +9 -0
  1285. data/ext/gyp/test/variables/empty/gyptest-empty.py +19 -0
  1286. data/ext/gyp/test/variables/filelist/filelist.gyp.stdout +26 -0
  1287. data/ext/gyp/test/variables/filelist/filelist.gypd.golden +43 -0
  1288. data/ext/gyp/test/variables/filelist/gyptest-filelist-golden.py +53 -0
  1289. data/ext/gyp/test/variables/filelist/gyptest-filelist.py +29 -0
  1290. data/ext/gyp/test/variables/filelist/src/dummy.py +5 -0
  1291. data/ext/gyp/test/variables/filelist/src/filelist.gyp +93 -0
  1292. data/ext/gyp/test/variables/filelist/src/filelist2.gyp +40 -0
  1293. data/ext/gyp/test/variables/filelist/update_golden +8 -0
  1294. data/ext/gyp/test/variables/latelate/gyptest-latelate.py +25 -0
  1295. data/ext/gyp/test/variables/latelate/src/latelate.gyp +34 -0
  1296. data/ext/gyp/test/variables/latelate/src/program.cc +13 -0
  1297. data/ext/gyp/test/variables/variable-in-path/C1/hello.cc +7 -0
  1298. data/ext/gyp/test/variables/variable-in-path/gyptest-variable-in-path.py +23 -0
  1299. data/ext/gyp/test/variables/variable-in-path/variable-in-path.gyp +31 -0
  1300. data/ext/gyp/test/win/asm-files/asm-files.gyp +17 -0
  1301. data/ext/gyp/test/win/asm-files/b.s +0 -0
  1302. data/ext/gyp/test/win/asm-files/c.S +0 -0
  1303. data/ext/gyp/test/win/asm-files/hello.cc +7 -0
  1304. data/ext/gyp/test/win/batch-file-action/batch-file-action.gyp +21 -0
  1305. data/ext/gyp/test/win/batch-file-action/infile +1 -0
  1306. data/ext/gyp/test/win/batch-file-action/somecmd.bat +5 -0
  1307. data/ext/gyp/test/win/command-quote/a.S +0 -0
  1308. data/ext/gyp/test/win/command-quote/bat with spaces.bat +7 -0
  1309. data/ext/gyp/test/win/command-quote/command-quote.gyp +79 -0
  1310. data/ext/gyp/test/win/command-quote/go.bat +7 -0
  1311. data/ext/gyp/test/win/command-quote/subdir/and/another/in-subdir.gyp +27 -0
  1312. data/ext/gyp/test/win/compiler-flags/additional-include-dirs.cc +10 -0
  1313. data/ext/gyp/test/win/compiler-flags/additional-include-dirs.gyp +20 -0
  1314. data/ext/gyp/test/win/compiler-flags/additional-options.cc +10 -0
  1315. data/ext/gyp/test/win/compiler-flags/additional-options.gyp +31 -0
  1316. data/ext/gyp/test/win/compiler-flags/analysis.gyp +40 -0
  1317. data/ext/gyp/test/win/compiler-flags/buffer-security-check.gyp +51 -0
  1318. data/ext/gyp/test/win/compiler-flags/buffer-security.cc +12 -0
  1319. data/ext/gyp/test/win/compiler-flags/calling-convention-cdecl.def +6 -0
  1320. data/ext/gyp/test/win/compiler-flags/calling-convention-fastcall.def +6 -0
  1321. data/ext/gyp/test/win/compiler-flags/calling-convention-stdcall.def +6 -0
  1322. data/ext/gyp/test/win/compiler-flags/calling-convention-vectorcall.def +6 -0
  1323. data/ext/gyp/test/win/compiler-flags/calling-convention.cc +6 -0
  1324. data/ext/gyp/test/win/compiler-flags/calling-convention.gyp +66 -0
  1325. data/ext/gyp/test/win/compiler-flags/character-set-mbcs.cc +11 -0
  1326. data/ext/gyp/test/win/compiler-flags/character-set-unicode.cc +15 -0
  1327. data/ext/gyp/test/win/compiler-flags/character-set.gyp +35 -0
  1328. data/ext/gyp/test/win/compiler-flags/compile-as-managed.cc +9 -0
  1329. data/ext/gyp/test/win/compiler-flags/compile-as-managed.gyp +29 -0
  1330. data/ext/gyp/test/win/compiler-flags/compile-as-winrt.cc +12 -0
  1331. data/ext/gyp/test/win/compiler-flags/compile-as-winrt.gyp +20 -0
  1332. data/ext/gyp/test/win/compiler-flags/debug-format.gyp +48 -0
  1333. data/ext/gyp/test/win/compiler-flags/default-char-is-unsigned.cc +15 -0
  1334. data/ext/gyp/test/win/compiler-flags/default-char-is-unsigned.gyp +20 -0
  1335. data/ext/gyp/test/win/compiler-flags/disable-specific-warnings.cc +9 -0
  1336. data/ext/gyp/test/win/compiler-flags/disable-specific-warnings.gyp +29 -0
  1337. data/ext/gyp/test/win/compiler-flags/enable-enhanced-instruction-set.cc +28 -0
  1338. data/ext/gyp/test/win/compiler-flags/enable-enhanced-instruction-set.gyp +68 -0
  1339. data/ext/gyp/test/win/compiler-flags/exception-handling-on.cc +24 -0
  1340. data/ext/gyp/test/win/compiler-flags/exception-handling.gyp +46 -0
  1341. data/ext/gyp/test/win/compiler-flags/floating-point-model-fast.cc +19 -0
  1342. data/ext/gyp/test/win/compiler-flags/floating-point-model-precise.cc +19 -0
  1343. data/ext/gyp/test/win/compiler-flags/floating-point-model-strict.cc +19 -0
  1344. data/ext/gyp/test/win/compiler-flags/floating-point-model.gyp +43 -0
  1345. data/ext/gyp/test/win/compiler-flags/force-include-files-with-precompiled.cc +10 -0
  1346. data/ext/gyp/test/win/compiler-flags/force-include-files.cc +8 -0
  1347. data/ext/gyp/test/win/compiler-flags/force-include-files.gyp +36 -0
  1348. data/ext/gyp/test/win/compiler-flags/function-level-linking.cc +11 -0
  1349. data/ext/gyp/test/win/compiler-flags/function-level-linking.gyp +28 -0
  1350. data/ext/gyp/test/win/compiler-flags/hello.cc +7 -0
  1351. data/ext/gyp/test/win/compiler-flags/optimizations.gyp +207 -0
  1352. data/ext/gyp/test/win/compiler-flags/pdbname-override.gyp +26 -0
  1353. data/ext/gyp/test/win/compiler-flags/pdbname.cc +7 -0
  1354. data/ext/gyp/test/win/compiler-flags/pdbname.gyp +24 -0
  1355. data/ext/gyp/test/win/compiler-flags/precomp.cc +6 -0
  1356. data/ext/gyp/test/win/compiler-flags/rtti-on.cc +11 -0
  1357. data/ext/gyp/test/win/compiler-flags/rtti.gyp +37 -0
  1358. data/ext/gyp/test/win/compiler-flags/runtime-checks.cc +11 -0
  1359. data/ext/gyp/test/win/compiler-flags/runtime-checks.gyp +29 -0
  1360. data/ext/gyp/test/win/compiler-flags/runtime-library-md.cc +19 -0
  1361. data/ext/gyp/test/win/compiler-flags/runtime-library-mdd.cc +19 -0
  1362. data/ext/gyp/test/win/compiler-flags/runtime-library-mt.cc +19 -0
  1363. data/ext/gyp/test/win/compiler-flags/runtime-library-mtd.cc +19 -0
  1364. data/ext/gyp/test/win/compiler-flags/runtime-library.gyp +48 -0
  1365. data/ext/gyp/test/win/compiler-flags/subdir/header.h +0 -0
  1366. data/ext/gyp/test/win/compiler-flags/treat-wchar-t-as-built-in-type.gyp +33 -0
  1367. data/ext/gyp/test/win/compiler-flags/treat-wchar-t-as-built-in-type1.cc +11 -0
  1368. data/ext/gyp/test/win/compiler-flags/treat-wchar-t-as-built-in-type2.cc +11 -0
  1369. data/ext/gyp/test/win/compiler-flags/uninit.cc +13 -0
  1370. data/ext/gyp/test/win/compiler-flags/warning-as-error.cc +9 -0
  1371. data/ext/gyp/test/win/compiler-flags/warning-as-error.gyp +37 -0
  1372. data/ext/gyp/test/win/compiler-flags/warning-level.gyp +115 -0
  1373. data/ext/gyp/test/win/compiler-flags/warning-level1.cc +8 -0
  1374. data/ext/gyp/test/win/compiler-flags/warning-level2.cc +14 -0
  1375. data/ext/gyp/test/win/compiler-flags/warning-level3.cc +11 -0
  1376. data/ext/gyp/test/win/compiler-flags/warning-level4.cc +10 -0
  1377. data/ext/gyp/test/win/enable-winrt/dllmain.cc +30 -0
  1378. data/ext/gyp/test/win/enable-winrt/enable-winrt.gyp +39 -0
  1379. data/ext/gyp/test/win/generator-output-different-drive/gyptest-generator-output-different-drive.py +44 -0
  1380. data/ext/gyp/test/win/generator-output-different-drive/prog.c +10 -0
  1381. data/ext/gyp/test/win/generator-output-different-drive/prog.gyp +15 -0
  1382. data/ext/gyp/test/win/gyptest-asm-files.py +26 -0
  1383. data/ext/gyp/test/win/gyptest-cl-additional-include-dirs.py +22 -0
  1384. data/ext/gyp/test/win/gyptest-cl-additional-options.py +28 -0
  1385. data/ext/gyp/test/win/gyptest-cl-analysis.py +30 -0
  1386. data/ext/gyp/test/win/gyptest-cl-buffer-security-check.py +53 -0
  1387. data/ext/gyp/test/win/gyptest-cl-calling-convention.py +22 -0
  1388. data/ext/gyp/test/win/gyptest-cl-character-set.py +22 -0
  1389. data/ext/gyp/test/win/gyptest-cl-compile-as-managed.py +24 -0
  1390. data/ext/gyp/test/win/gyptest-cl-compile-as-winrt.py +20 -0
  1391. data/ext/gyp/test/win/gyptest-cl-debug-format.py +43 -0
  1392. data/ext/gyp/test/win/gyptest-cl-default-char-is-unsigned.py +22 -0
  1393. data/ext/gyp/test/win/gyptest-cl-disable-specific-warnings.py +32 -0
  1394. data/ext/gyp/test/win/gyptest-cl-enable-enhanced-instruction-set.py +49 -0
  1395. data/ext/gyp/test/win/gyptest-cl-exception-handling.py +33 -0
  1396. data/ext/gyp/test/win/gyptest-cl-floating-point-model.py +22 -0
  1397. data/ext/gyp/test/win/gyptest-cl-force-include-files.py +22 -0
  1398. data/ext/gyp/test/win/gyptest-cl-function-level-linking.py +54 -0
  1399. data/ext/gyp/test/win/gyptest-cl-optimizations.py +105 -0
  1400. data/ext/gyp/test/win/gyptest-cl-pdbname-override.py +27 -0
  1401. data/ext/gyp/test/win/gyptest-cl-pdbname.py +30 -0
  1402. data/ext/gyp/test/win/gyptest-cl-rtti.py +30 -0
  1403. data/ext/gyp/test/win/gyptest-cl-runtime-checks.py +30 -0
  1404. data/ext/gyp/test/win/gyptest-cl-runtime-library.py +22 -0
  1405. data/ext/gyp/test/win/gyptest-cl-treat-wchar-t-as-built-in-type.py +22 -0
  1406. data/ext/gyp/test/win/gyptest-cl-warning-as-error.py +30 -0
  1407. data/ext/gyp/test/win/gyptest-cl-warning-level.py +41 -0
  1408. data/ext/gyp/test/win/gyptest-command-quote.py +42 -0
  1409. data/ext/gyp/test/win/gyptest-crosscompile-ar.py +29 -0
  1410. data/ext/gyp/test/win/gyptest-lib-ltcg.py +22 -0
  1411. data/ext/gyp/test/win/gyptest-link-additional-deps.py +22 -0
  1412. data/ext/gyp/test/win/gyptest-link-additional-options.py +22 -0
  1413. data/ext/gyp/test/win/gyptest-link-aslr.py +35 -0
  1414. data/ext/gyp/test/win/gyptest-link-base-address.py +62 -0
  1415. data/ext/gyp/test/win/gyptest-link-debug-info.py +26 -0
  1416. data/ext/gyp/test/win/gyptest-link-default-libs.py +22 -0
  1417. data/ext/gyp/test/win/gyptest-link-deffile.py +43 -0
  1418. data/ext/gyp/test/win/gyptest-link-defrelink.py +56 -0
  1419. data/ext/gyp/test/win/gyptest-link-delay-load-dlls.py +35 -0
  1420. data/ext/gyp/test/win/gyptest-link-embed-manifest.py +100 -0
  1421. data/ext/gyp/test/win/gyptest-link-enable-uac.py +104 -0
  1422. data/ext/gyp/test/win/gyptest-link-enable-winrt-app-revision.py +43 -0
  1423. data/ext/gyp/test/win/gyptest-link-enable-winrt-target-platform-version.py +47 -0
  1424. data/ext/gyp/test/win/gyptest-link-enable-winrt.py +37 -0
  1425. data/ext/gyp/test/win/gyptest-link-entrypointsymbol.py +24 -0
  1426. data/ext/gyp/test/win/gyptest-link-fixed-base.py +40 -0
  1427. data/ext/gyp/test/win/gyptest-link-force-symbol-reference.py +26 -0
  1428. data/ext/gyp/test/win/gyptest-link-generate-manifest.py +127 -0
  1429. data/ext/gyp/test/win/gyptest-link-incremental.py +37 -0
  1430. data/ext/gyp/test/win/gyptest-link-large-address-aware.py +35 -0
  1431. data/ext/gyp/test/win/gyptest-link-large-pdb.py +76 -0
  1432. data/ext/gyp/test/win/gyptest-link-library-adjust.py +21 -0
  1433. data/ext/gyp/test/win/gyptest-link-library-directories.py +35 -0
  1434. data/ext/gyp/test/win/gyptest-link-ltcg.py +44 -0
  1435. data/ext/gyp/test/win/gyptest-link-mapfile.py +44 -0
  1436. data/ext/gyp/test/win/gyptest-link-nodefaultlib.py +24 -0
  1437. data/ext/gyp/test/win/gyptest-link-noimportlib.py +30 -0
  1438. data/ext/gyp/test/win/gyptest-link-nxcompat.py +37 -0
  1439. data/ext/gyp/test/win/gyptest-link-opt-icf.py +41 -0
  1440. data/ext/gyp/test/win/gyptest-link-opt-ref.py +40 -0
  1441. data/ext/gyp/test/win/gyptest-link-ordering.py +103 -0
  1442. data/ext/gyp/test/win/gyptest-link-outputfile.py +28 -0
  1443. data/ext/gyp/test/win/gyptest-link-pdb-no-output.py +25 -0
  1444. data/ext/gyp/test/win/gyptest-link-pdb-output.py +33 -0
  1445. data/ext/gyp/test/win/gyptest-link-pdb.py +35 -0
  1446. data/ext/gyp/test/win/gyptest-link-pgo.py +75 -0
  1447. data/ext/gyp/test/win/gyptest-link-profile.py +37 -0
  1448. data/ext/gyp/test/win/gyptest-link-restat-importlib.py +47 -0
  1449. data/ext/gyp/test/win/gyptest-link-safeseh.py +46 -0
  1450. data/ext/gyp/test/win/gyptest-link-shard.py +30 -0
  1451. data/ext/gyp/test/win/gyptest-link-stacksize.py +62 -0
  1452. data/ext/gyp/test/win/gyptest-link-subsystem.py +38 -0
  1453. data/ext/gyp/test/win/gyptest-link-target-machine.py +28 -0
  1454. data/ext/gyp/test/win/gyptest-link-tsaware.py +33 -0
  1455. data/ext/gyp/test/win/gyptest-link-uldi-depending-on-module.py +24 -0
  1456. data/ext/gyp/test/win/gyptest-link-uldi.py +28 -0
  1457. data/ext/gyp/test/win/gyptest-link-unsupported-manifest.py +27 -0
  1458. data/ext/gyp/test/win/gyptest-link-update-manifest.py +104 -0
  1459. data/ext/gyp/test/win/gyptest-link-warnings-as-errors.py +24 -0
  1460. data/ext/gyp/test/win/gyptest-long-command-line.py +23 -0
  1461. data/ext/gyp/test/win/gyptest-macro-projectname.py +24 -0
  1462. data/ext/gyp/test/win/gyptest-macro-targetext.py +26 -0
  1463. data/ext/gyp/test/win/gyptest-macro-targetfilename.py +37 -0
  1464. data/ext/gyp/test/win/gyptest-macro-targetname.py +29 -0
  1465. data/ext/gyp/test/win/gyptest-macro-targetpath.py +30 -0
  1466. data/ext/gyp/test/win/gyptest-macro-vcinstalldir.py +24 -0
  1467. data/ext/gyp/test/win/gyptest-macros-containing-gyp.py +21 -0
  1468. data/ext/gyp/test/win/gyptest-macros-in-inputs-and-outputs.py +27 -0
  1469. data/ext/gyp/test/win/gyptest-midl-excluded.py +22 -0
  1470. data/ext/gyp/test/win/gyptest-midl-includedirs.py +21 -0
  1471. data/ext/gyp/test/win/gyptest-midl-rules.py +28 -0
  1472. data/ext/gyp/test/win/gyptest-ml-safeseh.py +22 -0
  1473. data/ext/gyp/test/win/gyptest-quoting-commands.py +25 -0
  1474. data/ext/gyp/test/win/gyptest-rc-build.py +29 -0
  1475. data/ext/gyp/test/win/gyptest-sys.py +27 -0
  1476. data/ext/gyp/test/win/gyptest-system-include.py +21 -0
  1477. data/ext/gyp/test/win/idl-excluded/bad.idl +6 -0
  1478. data/ext/gyp/test/win/idl-excluded/copy-file.py +11 -0
  1479. data/ext/gyp/test/win/idl-excluded/idl-excluded.gyp +58 -0
  1480. data/ext/gyp/test/win/idl-excluded/program.cc +7 -0
  1481. data/ext/gyp/test/win/idl-includedirs/hello.cc +7 -0
  1482. data/ext/gyp/test/win/idl-includedirs/idl-includedirs.gyp +26 -0
  1483. data/ext/gyp/test/win/idl-includedirs/subdir/bar.idl +13 -0
  1484. data/ext/gyp/test/win/idl-includedirs/subdir/foo.idl +14 -0
  1485. data/ext/gyp/test/win/idl-rules/Window.idl +9 -0
  1486. data/ext/gyp/test/win/idl-rules/basic-idl.gyp +67 -0
  1487. data/ext/gyp/test/win/idl-rules/history_indexer.idl +17 -0
  1488. data/ext/gyp/test/win/idl-rules/history_indexer_user.cc +15 -0
  1489. data/ext/gyp/test/win/idl-rules/idl_compiler.py +17 -0
  1490. data/ext/gyp/test/win/importlib/dll_no_exports.cc +9 -0
  1491. data/ext/gyp/test/win/importlib/has-exports.cc +10 -0
  1492. data/ext/gyp/test/win/importlib/hello.cc +9 -0
  1493. data/ext/gyp/test/win/importlib/importlib.gyp +30 -0
  1494. data/ext/gyp/test/win/importlib/noimplib.gyp +16 -0
  1495. data/ext/gyp/test/win/large-pdb/dllmain.cc +9 -0
  1496. data/ext/gyp/test/win/large-pdb/large-pdb.gyp +98 -0
  1497. data/ext/gyp/test/win/large-pdb/main.cc +7 -0
  1498. data/ext/gyp/test/win/lib-crosscompile/answer.cc +9 -0
  1499. data/ext/gyp/test/win/lib-crosscompile/answer.h +5 -0
  1500. data/ext/gyp/test/win/lib-crosscompile/use_host_ar.gyp +17 -0
  1501. data/ext/gyp/test/win/lib-flags/answer.cc +9 -0
  1502. data/ext/gyp/test/win/lib-flags/answer.h +5 -0
  1503. data/ext/gyp/test/win/lib-flags/ltcg.gyp +21 -0
  1504. data/ext/gyp/test/win/linker-flags/a/x.cc +7 -0
  1505. data/ext/gyp/test/win/linker-flags/a/z.cc +7 -0
  1506. data/ext/gyp/test/win/linker-flags/additional-deps.cc +10 -0
  1507. data/ext/gyp/test/win/linker-flags/additional-deps.gyp +30 -0
  1508. data/ext/gyp/test/win/linker-flags/additional-options.gyp +29 -0
  1509. data/ext/gyp/test/win/linker-flags/aslr.gyp +35 -0
  1510. data/ext/gyp/test/win/linker-flags/b/y.cc +7 -0
  1511. data/ext/gyp/test/win/linker-flags/base-address.gyp +38 -0
  1512. data/ext/gyp/test/win/linker-flags/debug-info.gyp +28 -0
  1513. data/ext/gyp/test/win/linker-flags/deffile-multiple.gyp +17 -0
  1514. data/ext/gyp/test/win/linker-flags/deffile.cc +13 -0
  1515. data/ext/gyp/test/win/linker-flags/deffile.def +8 -0
  1516. data/ext/gyp/test/win/linker-flags/deffile.gyp +38 -0
  1517. data/ext/gyp/test/win/linker-flags/delay-load-dlls.gyp +35 -0
  1518. data/ext/gyp/test/win/linker-flags/delay-load.cc +10 -0
  1519. data/ext/gyp/test/win/linker-flags/embed-manifest.gyp +109 -0
  1520. data/ext/gyp/test/win/linker-flags/enable-uac.gyp +45 -0
  1521. data/ext/gyp/test/win/linker-flags/entrypointsymbol.cc +13 -0
  1522. data/ext/gyp/test/win/linker-flags/entrypointsymbol.gyp +28 -0
  1523. data/ext/gyp/test/win/linker-flags/extra.manifest +11 -0
  1524. data/ext/gyp/test/win/linker-flags/extra2.manifest +11 -0
  1525. data/ext/gyp/test/win/linker-flags/fixed-base.gyp +52 -0
  1526. data/ext/gyp/test/win/linker-flags/force-symbol-reference.gyp +39 -0
  1527. data/ext/gyp/test/win/linker-flags/generate-manifest.gyp +166 -0
  1528. data/ext/gyp/test/win/linker-flags/hello.cc +7 -0
  1529. data/ext/gyp/test/win/linker-flags/incremental.gyp +65 -0
  1530. data/ext/gyp/test/win/linker-flags/inline_test.cc +12 -0
  1531. data/ext/gyp/test/win/linker-flags/inline_test.h +5 -0
  1532. data/ext/gyp/test/win/linker-flags/inline_test_main.cc +15 -0
  1533. data/ext/gyp/test/win/linker-flags/large-address-aware.gyp +28 -0
  1534. data/ext/gyp/test/win/linker-flags/library-adjust.cc +10 -0
  1535. data/ext/gyp/test/win/linker-flags/library-adjust.gyp +16 -0
  1536. data/ext/gyp/test/win/linker-flags/library-directories-define.cc +7 -0
  1537. data/ext/gyp/test/win/linker-flags/library-directories-reference.cc +10 -0
  1538. data/ext/gyp/test/win/linker-flags/library-directories.gyp +42 -0
  1539. data/ext/gyp/test/win/linker-flags/link-ordering.gyp +95 -0
  1540. data/ext/gyp/test/win/linker-flags/link-warning.cc +10 -0
  1541. data/ext/gyp/test/win/linker-flags/ltcg.gyp +42 -0
  1542. data/ext/gyp/test/win/linker-flags/main-crt.c +8 -0
  1543. data/ext/gyp/test/win/linker-flags/manifest-in-comment.cc +13 -0
  1544. data/ext/gyp/test/win/linker-flags/mapfile.cc +12 -0
  1545. data/ext/gyp/test/win/linker-flags/mapfile.gyp +45 -0
  1546. data/ext/gyp/test/win/linker-flags/no-default-libs.cc +18 -0
  1547. data/ext/gyp/test/win/linker-flags/no-default-libs.gyp +13 -0
  1548. data/ext/gyp/test/win/linker-flags/nodefaultlib.cc +13 -0
  1549. data/ext/gyp/test/win/linker-flags/nodefaultlib.gyp +30 -0
  1550. data/ext/gyp/test/win/linker-flags/nxcompat.gyp +35 -0
  1551. data/ext/gyp/test/win/linker-flags/opt-icf.cc +29 -0
  1552. data/ext/gyp/test/win/linker-flags/opt-icf.gyp +63 -0
  1553. data/ext/gyp/test/win/linker-flags/opt-ref.cc +11 -0
  1554. data/ext/gyp/test/win/linker-flags/opt-ref.gyp +56 -0
  1555. data/ext/gyp/test/win/linker-flags/outputfile.gyp +58 -0
  1556. data/ext/gyp/test/win/linker-flags/pdb-output.gyp +49 -0
  1557. data/ext/gyp/test/win/linker-flags/pgo.gyp +143 -0
  1558. data/ext/gyp/test/win/linker-flags/profile.gyp +50 -0
  1559. data/ext/gyp/test/win/linker-flags/program-database.gyp +40 -0
  1560. data/ext/gyp/test/win/linker-flags/safeseh.gyp +79 -0
  1561. data/ext/gyp/test/win/linker-flags/safeseh_hello.cc +11 -0
  1562. data/ext/gyp/test/win/linker-flags/safeseh_zero.asm +10 -0
  1563. data/ext/gyp/test/win/linker-flags/safeseh_zero64.asm +9 -0
  1564. data/ext/gyp/test/win/linker-flags/stacksize.gyp +44 -0
  1565. data/ext/gyp/test/win/linker-flags/subdir/library.gyp +13 -0
  1566. data/ext/gyp/test/win/linker-flags/subsystem-windows.cc +9 -0
  1567. data/ext/gyp/test/win/linker-flags/subsystem.gyp +70 -0
  1568. data/ext/gyp/test/win/linker-flags/target-machine.gyp +48 -0
  1569. data/ext/gyp/test/win/linker-flags/tsaware.gyp +28 -0
  1570. data/ext/gyp/test/win/linker-flags/unsupported-manifest.gyp +13 -0
  1571. data/ext/gyp/test/win/linker-flags/update_pgd.py +35 -0
  1572. data/ext/gyp/test/win/linker-flags/warn-as-error.gyp +33 -0
  1573. data/ext/gyp/test/win/linker-flags/x.cc +7 -0
  1574. data/ext/gyp/test/win/linker-flags/y.cc +7 -0
  1575. data/ext/gyp/test/win/linker-flags/z.cc +7 -0
  1576. data/ext/gyp/test/win/long-command-line/function.cc +7 -0
  1577. data/ext/gyp/test/win/long-command-line/hello.cc +7 -0
  1578. data/ext/gyp/test/win/long-command-line/long-command-line.gyp +54 -0
  1579. data/ext/gyp/test/win/ml-safeseh/a.asm +10 -0
  1580. data/ext/gyp/test/win/ml-safeseh/hello.cc +11 -0
  1581. data/ext/gyp/test/win/ml-safeseh/ml-safeseh.gyp +24 -0
  1582. data/ext/gyp/test/win/precompiled/gyptest-all.py +21 -0
  1583. data/ext/gyp/test/win/precompiled/hello.c +14 -0
  1584. data/ext/gyp/test/win/precompiled/hello.gyp +28 -0
  1585. data/ext/gyp/test/win/precompiled/hello2.c +13 -0
  1586. data/ext/gyp/test/win/precompiled/precomp.c +8 -0
  1587. data/ext/gyp/test/win/rc-build/Resource.h +26 -0
  1588. data/ext/gyp/test/win/rc-build/hello.cpp +30 -0
  1589. data/ext/gyp/test/win/rc-build/hello.gyp +92 -0
  1590. data/ext/gyp/test/win/rc-build/hello.h +3 -0
  1591. data/ext/gyp/test/win/rc-build/hello.ico +0 -0
  1592. data/ext/gyp/test/win/rc-build/hello.rc +86 -0
  1593. data/ext/gyp/test/win/rc-build/hello3.rc +87 -0
  1594. data/ext/gyp/test/win/rc-build/small.ico +0 -0
  1595. data/ext/gyp/test/win/rc-build/subdir/hello2.rc +87 -0
  1596. data/ext/gyp/test/win/rc-build/subdir/include.h +1 -0
  1597. data/ext/gyp/test/win/rc-build/targetver.h +24 -0
  1598. data/ext/gyp/test/win/shard/hello.cc +7 -0
  1599. data/ext/gyp/test/win/shard/hello1.cc +7 -0
  1600. data/ext/gyp/test/win/shard/hello2.cc +7 -0
  1601. data/ext/gyp/test/win/shard/hello3.cc +7 -0
  1602. data/ext/gyp/test/win/shard/hello4.cc +7 -0
  1603. data/ext/gyp/test/win/shard/shard.gyp +31 -0
  1604. data/ext/gyp/test/win/shard/shard_ref.gyp +41 -0
  1605. data/ext/gyp/test/win/system-include/bar/header.h +0 -0
  1606. data/ext/gyp/test/win/system-include/common/commonheader.h +0 -0
  1607. data/ext/gyp/test/win/system-include/foo/header.h +0 -0
  1608. data/ext/gyp/test/win/system-include/main.cc +4 -0
  1609. data/ext/gyp/test/win/system-include/test.gyp +26 -0
  1610. data/ext/gyp/test/win/uldi/a.cc +7 -0
  1611. data/ext/gyp/test/win/uldi/b.cc +7 -0
  1612. data/ext/gyp/test/win/uldi/dll.cc +6 -0
  1613. data/ext/gyp/test/win/uldi/exe.cc +7 -0
  1614. data/ext/gyp/test/win/uldi/main.cc +10 -0
  1615. data/ext/gyp/test/win/uldi/uldi-depending-on-module.gyp +42 -0
  1616. data/ext/gyp/test/win/uldi/uldi.gyp +45 -0
  1617. data/ext/gyp/test/win/vs-macros/as.py +20 -0
  1618. data/ext/gyp/test/win/vs-macros/containing-gyp.gyp +39 -0
  1619. data/ext/gyp/test/win/vs-macros/do_stuff.py +8 -0
  1620. data/ext/gyp/test/win/vs-macros/hello.cc +7 -0
  1621. data/ext/gyp/test/win/vs-macros/input-output-macros.gyp +32 -0
  1622. data/ext/gyp/test/win/vs-macros/input.S +0 -0
  1623. data/ext/gyp/test/win/vs-macros/projectname.gyp +29 -0
  1624. data/ext/gyp/test/win/vs-macros/stuff.blah +1 -0
  1625. data/ext/gyp/test/win/vs-macros/targetext.gyp +59 -0
  1626. data/ext/gyp/test/win/vs-macros/targetfilename.gyp +59 -0
  1627. data/ext/gyp/test/win/vs-macros/targetname.gyp +52 -0
  1628. data/ext/gyp/test/win/vs-macros/targetpath.gyp +59 -0
  1629. data/ext/gyp/test/win/vs-macros/test_exists.py +10 -0
  1630. data/ext/gyp/test/win/vs-macros/vcinstalldir.gyp +41 -0
  1631. data/ext/gyp/test/win/win-driver-target-type/win-driver-target-type.c +10 -0
  1632. data/ext/gyp/test/win/win-driver-target-type/win-driver-target-type.gyp +32 -0
  1633. data/ext/gyp/test/win/win-driver-target-type/win-driver-target-type.h +13 -0
  1634. data/ext/gyp/test/win/win-driver-target-type/win-driver-target-type.rc +14 -0
  1635. data/ext/gyp/test/win/win-tool/copies_readonly_files.gyp +29 -0
  1636. data/ext/gyp/test/win/win-tool/gyptest-win-tool-handles-readonly-files.py +55 -0
  1637. data/ext/gyp/test/win/winrt-app-type-revision/dllmain.cc +30 -0
  1638. data/ext/gyp/test/win/winrt-app-type-revision/winrt-app-type-revison.gyp +43 -0
  1639. data/ext/gyp/test/win/winrt-target-platform-version/dllmain.cc +30 -0
  1640. data/ext/gyp/test/win/winrt-target-platform-version/winrt-target-platform-version.gyp +49 -0
  1641. data/ext/gyp/test/xcode-ninja/list_excluded/gyptest-all.py +49 -0
  1642. data/ext/gyp/test/xcode-ninja/list_excluded/hello.cpp +7 -0
  1643. data/ext/gyp/test/xcode-ninja/list_excluded/hello_exclude.gyp +19 -0
  1644. data/ext/gyp/test/xcode-ninja/list_excluded/hello_excluded.cpp +7 -0
  1645. data/ext/gyp/tools/README +15 -0
  1646. data/ext/gyp/tools/Xcode/README +5 -0
  1647. data/ext/gyp/tools/Xcode/Specifications/gyp.pbfilespec +27 -0
  1648. data/ext/gyp/tools/Xcode/Specifications/gyp.xclangspec +226 -0
  1649. data/ext/gyp/tools/emacs/README +12 -0
  1650. data/ext/gyp/tools/emacs/gyp-tests.el +63 -0
  1651. data/ext/gyp/tools/emacs/gyp.el +275 -0
  1652. data/ext/gyp/tools/emacs/run-unit-tests.sh +7 -0
  1653. data/ext/gyp/tools/emacs/testdata/media.gyp +1105 -0
  1654. data/ext/gyp/tools/emacs/testdata/media.gyp.fontified +1107 -0
  1655. data/ext/gyp/tools/graphviz.py +102 -0
  1656. data/ext/gyp/tools/pretty_gyp.py +156 -0
  1657. data/ext/gyp/tools/pretty_sln.py +171 -0
  1658. data/ext/gyp/tools/pretty_vcproj.py +337 -0
  1659. data/ext/libuv/.gitattributes +1 -0
  1660. data/ext/libuv/.github/ISSUE_TEMPLATE.md +13 -0
  1661. data/ext/libuv/.github/stale.yml +22 -0
  1662. data/ext/libuv/.gitignore +80 -0
  1663. data/ext/libuv/.mailmap +50 -0
  1664. data/ext/libuv/AUTHORS +415 -0
  1665. data/ext/libuv/CMakeLists.txt +430 -0
  1666. data/ext/libuv/CONTRIBUTING.md +172 -0
  1667. data/ext/libuv/ChangeLog +4548 -0
  1668. data/ext/libuv/LICENSE +70 -0
  1669. data/ext/libuv/LICENSE-docs +396 -0
  1670. data/ext/libuv/MAINTAINERS.md +48 -0
  1671. data/ext/libuv/Makefile.am +548 -0
  1672. data/ext/libuv/README.md +431 -0
  1673. data/ext/libuv/SUPPORTED_PLATFORMS.md +68 -0
  1674. data/ext/libuv/android-configure-arm +23 -0
  1675. data/ext/libuv/android-configure-arm64 +23 -0
  1676. data/ext/libuv/android-configure-x86 +23 -0
  1677. data/ext/libuv/android-configure-x86_64 +25 -0
  1678. data/ext/libuv/appveyor.yml +32 -0
  1679. data/ext/libuv/autogen.sh +46 -0
  1680. data/ext/libuv/common.gypi +213 -0
  1681. data/ext/libuv/configure.ac +82 -0
  1682. data/ext/libuv/docs/Makefile +183 -0
  1683. data/ext/libuv/docs/code/cgi/main.c +81 -0
  1684. data/ext/libuv/docs/code/cgi/tick.c +13 -0
  1685. data/ext/libuv/docs/code/detach/main.c +31 -0
  1686. data/ext/libuv/docs/code/dns/main.c +80 -0
  1687. data/ext/libuv/docs/code/helloworld/main.c +15 -0
  1688. data/ext/libuv/docs/code/idle-basic/main.c +24 -0
  1689. data/ext/libuv/docs/code/idle-compute/main.c +43 -0
  1690. data/ext/libuv/docs/code/interfaces/main.c +33 -0
  1691. data/ext/libuv/docs/code/locks/main.c +57 -0
  1692. data/ext/libuv/docs/code/multi-echo-server/hammer.js +20 -0
  1693. data/ext/libuv/docs/code/multi-echo-server/main.c +114 -0
  1694. data/ext/libuv/docs/code/multi-echo-server/worker.c +88 -0
  1695. data/ext/libuv/docs/code/onchange/main.c +44 -0
  1696. data/ext/libuv/docs/code/pipe-echo-server/main.c +94 -0
  1697. data/ext/libuv/docs/code/plugin/hello.c +5 -0
  1698. data/ext/libuv/docs/code/plugin/main.c +39 -0
  1699. data/ext/libuv/docs/code/plugin/plugin.h +7 -0
  1700. data/ext/libuv/docs/code/proc-streams/main.c +49 -0
  1701. data/ext/libuv/docs/code/proc-streams/test.c +8 -0
  1702. data/ext/libuv/docs/code/progress/main.c +47 -0
  1703. data/ext/libuv/docs/code/queue-cancel/main.c +59 -0
  1704. data/ext/libuv/docs/code/queue-work/main.c +44 -0
  1705. data/ext/libuv/docs/code/ref-timer/main.c +29 -0
  1706. data/ext/libuv/docs/code/signal/main.c +66 -0
  1707. data/ext/libuv/docs/code/spawn/main.c +36 -0
  1708. data/ext/libuv/docs/code/tcp-echo-server/main.c +87 -0
  1709. data/ext/libuv/docs/code/thread-create/main.c +36 -0
  1710. data/ext/libuv/docs/code/tty/main.c +29 -0
  1711. data/ext/libuv/docs/code/tty-gravity/main.c +48 -0
  1712. data/ext/libuv/docs/code/udp-dhcp/main.c +127 -0
  1713. data/ext/libuv/docs/code/uvcat/main.c +63 -0
  1714. data/ext/libuv/docs/code/uvstop/main.c +33 -0
  1715. data/ext/libuv/docs/code/uvtee/main.c +80 -0
  1716. data/ext/libuv/docs/code/uvwget/main.c +166 -0
  1717. data/ext/libuv/docs/make.bat +243 -0
  1718. data/ext/libuv/docs/src/api.rst +35 -0
  1719. data/ext/libuv/docs/src/async.rst +65 -0
  1720. data/ext/libuv/docs/src/check.rst +46 -0
  1721. data/ext/libuv/docs/src/conf.py +348 -0
  1722. data/ext/libuv/docs/src/design.rst +140 -0
  1723. data/ext/libuv/docs/src/dll.rst +44 -0
  1724. data/ext/libuv/docs/src/dns.rst +108 -0
  1725. data/ext/libuv/docs/src/errors.rst +365 -0
  1726. data/ext/libuv/docs/src/fs.rst +689 -0
  1727. data/ext/libuv/docs/src/fs_event.rst +132 -0
  1728. data/ext/libuv/docs/src/fs_poll.rst +77 -0
  1729. data/ext/libuv/docs/src/guide/about.rst +22 -0
  1730. data/ext/libuv/docs/src/guide/basics.rst +219 -0
  1731. data/ext/libuv/docs/src/guide/eventloops.rst +48 -0
  1732. data/ext/libuv/docs/src/guide/filesystem.rst +330 -0
  1733. data/ext/libuv/docs/src/guide/introduction.rst +75 -0
  1734. data/ext/libuv/docs/src/guide/networking.rst +250 -0
  1735. data/ext/libuv/docs/src/guide/processes.rst +406 -0
  1736. data/ext/libuv/docs/src/guide/threads.rst +385 -0
  1737. data/ext/libuv/docs/src/guide/utilities.rst +437 -0
  1738. data/ext/libuv/docs/src/guide.rst +22 -0
  1739. data/ext/libuv/docs/src/handle.rst +283 -0
  1740. data/ext/libuv/docs/src/idle.rst +54 -0
  1741. data/ext/libuv/docs/src/index.rst +62 -0
  1742. data/ext/libuv/docs/src/loop.rst +238 -0
  1743. data/ext/libuv/docs/src/migration_010_100.rst +244 -0
  1744. data/ext/libuv/docs/src/misc.rst +702 -0
  1745. data/ext/libuv/docs/src/pipe.rst +116 -0
  1746. data/ext/libuv/docs/src/poll.rst +121 -0
  1747. data/ext/libuv/docs/src/prepare.rst +46 -0
  1748. data/ext/libuv/docs/src/process.rst +250 -0
  1749. data/ext/libuv/docs/src/request.rst +116 -0
  1750. data/ext/libuv/docs/src/signal.rst +101 -0
  1751. data/ext/libuv/docs/src/sphinx-plugins/manpage.py +45 -0
  1752. data/ext/libuv/docs/src/static/architecture.png +0 -0
  1753. data/ext/libuv/docs/src/static/diagrams.key/Data/st0-311.jpg +0 -0
  1754. data/ext/libuv/docs/src/static/diagrams.key/Data/st1-475.jpg +0 -0
  1755. data/ext/libuv/docs/src/static/diagrams.key/Index.zip +0 -0
  1756. data/ext/libuv/docs/src/static/diagrams.key/Metadata/BuildVersionHistory.plist +8 -0
  1757. data/ext/libuv/docs/src/static/diagrams.key/Metadata/DocumentIdentifier +1 -0
  1758. data/ext/libuv/docs/src/static/diagrams.key/Metadata/Properties.plist +0 -0
  1759. data/ext/libuv/docs/src/static/diagrams.key/preview-micro.jpg +0 -0
  1760. data/ext/libuv/docs/src/static/diagrams.key/preview-web.jpg +0 -0
  1761. data/ext/libuv/docs/src/static/diagrams.key/preview.jpg +0 -0
  1762. data/ext/libuv/docs/src/static/favicon.ico +0 -0
  1763. data/ext/libuv/docs/src/static/logo.png +0 -0
  1764. data/ext/libuv/docs/src/static/loop_iteration.png +0 -0
  1765. data/ext/libuv/docs/src/stream.rst +237 -0
  1766. data/ext/libuv/docs/src/tcp.rst +125 -0
  1767. data/ext/libuv/docs/src/threading.rst +197 -0
  1768. data/ext/libuv/docs/src/threadpool.rst +69 -0
  1769. data/ext/libuv/docs/src/timer.rst +81 -0
  1770. data/ext/libuv/docs/src/tty.rst +139 -0
  1771. data/ext/libuv/docs/src/udp.rst +390 -0
  1772. data/ext/libuv/docs/src/upgrading.rst +11 -0
  1773. data/ext/libuv/docs/src/version.rst +60 -0
  1774. data/ext/libuv/gyp_uv.py +73 -0
  1775. data/ext/libuv/img/banner.png +0 -0
  1776. data/ext/libuv/img/logos.svg +152 -0
  1777. data/ext/libuv/include/uv/aix.h +32 -0
  1778. data/ext/libuv/include/uv/android-ifaddrs.h +54 -0
  1779. data/ext/libuv/include/uv/bsd.h +34 -0
  1780. data/ext/libuv/include/uv/darwin.h +61 -0
  1781. data/ext/libuv/include/uv/errno.h +448 -0
  1782. data/ext/libuv/include/uv/linux.h +34 -0
  1783. data/ext/libuv/include/uv/os390.h +33 -0
  1784. data/ext/libuv/include/uv/posix.h +31 -0
  1785. data/ext/libuv/include/uv/stdint-msvc2008.h +247 -0
  1786. data/ext/libuv/include/uv/sunos.h +44 -0
  1787. data/ext/libuv/include/uv/threadpool.h +37 -0
  1788. data/ext/libuv/include/uv/tree.h +768 -0
  1789. data/ext/libuv/include/uv/unix.h +505 -0
  1790. data/ext/libuv/include/uv/version.h +43 -0
  1791. data/ext/libuv/include/uv/win.h +691 -0
  1792. data/ext/libuv/include/uv.h +1782 -0
  1793. data/ext/libuv/libuv.pc.in +12 -0
  1794. data/ext/libuv/m4/.gitignore +4 -0
  1795. data/ext/libuv/m4/as_case.m4 +21 -0
  1796. data/ext/libuv/m4/libuv-check-flags.m4 +319 -0
  1797. data/ext/libuv/src/fs-poll.c +287 -0
  1798. data/ext/libuv/src/heap-inl.h +245 -0
  1799. data/ext/libuv/src/idna.c +291 -0
  1800. data/ext/libuv/src/idna.h +31 -0
  1801. data/ext/libuv/src/inet.c +302 -0
  1802. data/ext/libuv/src/queue.h +108 -0
  1803. data/ext/libuv/src/random.c +123 -0
  1804. data/ext/libuv/src/strscpy.c +17 -0
  1805. data/ext/libuv/src/strscpy.h +18 -0
  1806. data/ext/libuv/src/threadpool.c +388 -0
  1807. data/ext/libuv/src/timer.c +181 -0
  1808. data/ext/libuv/src/unix/aix-common.c +337 -0
  1809. data/ext/libuv/src/unix/aix.c +1066 -0
  1810. data/ext/libuv/src/unix/android-ifaddrs.c +712 -0
  1811. data/ext/libuv/src/unix/async.c +298 -0
  1812. data/ext/libuv/src/unix/atomic-ops.h +59 -0
  1813. data/ext/libuv/src/unix/bsd-ifaddrs.c +161 -0
  1814. data/ext/libuv/src/unix/bsd-proctitle.c +93 -0
  1815. data/ext/libuv/src/unix/core.c +1571 -0
  1816. data/ext/libuv/src/unix/cygwin.c +53 -0
  1817. data/ext/libuv/src/unix/darwin-proctitle.c +202 -0
  1818. data/ext/libuv/src/unix/darwin.c +225 -0
  1819. data/ext/libuv/src/unix/dl.c +80 -0
  1820. data/ext/libuv/src/unix/freebsd.c +290 -0
  1821. data/ext/libuv/src/unix/fs.c +2044 -0
  1822. data/ext/libuv/src/unix/fsevents.c +924 -0
  1823. data/ext/libuv/src/unix/getaddrinfo.c +255 -0
  1824. data/ext/libuv/src/unix/getnameinfo.c +121 -0
  1825. data/ext/libuv/src/unix/haiku.c +167 -0
  1826. data/ext/libuv/src/unix/ibmi.c +249 -0
  1827. data/ext/libuv/src/unix/internal.h +331 -0
  1828. data/ext/libuv/src/unix/kqueue.c +544 -0
  1829. data/ext/libuv/src/unix/linux-core.c +1091 -0
  1830. data/ext/libuv/src/unix/linux-inotify.c +354 -0
  1831. data/ext/libuv/src/unix/linux-syscalls.c +394 -0
  1832. data/ext/libuv/src/unix/linux-syscalls.h +153 -0
  1833. data/ext/libuv/src/unix/loop-watcher.c +68 -0
  1834. data/ext/libuv/src/unix/loop.c +194 -0
  1835. data/ext/libuv/src/unix/netbsd.c +259 -0
  1836. data/ext/libuv/src/unix/no-fsevents.c +42 -0
  1837. data/ext/libuv/src/unix/no-proctitle.c +42 -0
  1838. data/ext/libuv/src/unix/openbsd.c +244 -0
  1839. data/ext/libuv/src/unix/os390-syscalls.c +519 -0
  1840. data/ext/libuv/src/unix/os390-syscalls.h +68 -0
  1841. data/ext/libuv/src/unix/os390.c +1003 -0
  1842. data/ext/libuv/src/unix/pipe.c +377 -0
  1843. data/ext/libuv/src/unix/poll.c +150 -0
  1844. data/ext/libuv/src/unix/posix-hrtime.c +35 -0
  1845. data/ext/libuv/src/unix/posix-poll.c +336 -0
  1846. data/ext/libuv/src/unix/process.c +603 -0
  1847. data/ext/libuv/src/unix/procfs-exepath.c +45 -0
  1848. data/ext/libuv/src/unix/proctitle.c +132 -0
  1849. data/ext/libuv/src/unix/pthread-fixes.c +56 -0
  1850. data/ext/libuv/src/unix/random-devurandom.c +93 -0
  1851. data/ext/libuv/src/unix/random-getentropy.c +57 -0
  1852. data/ext/libuv/src/unix/random-getrandom.c +88 -0
  1853. data/ext/libuv/src/unix/random-sysctl-linux.c +99 -0
  1854. data/ext/libuv/src/unix/signal.c +577 -0
  1855. data/ext/libuv/src/unix/spinlock.h +53 -0
  1856. data/ext/libuv/src/unix/stream.c +1697 -0
  1857. data/ext/libuv/src/unix/sunos.c +836 -0
  1858. data/ext/libuv/src/unix/sysinfo-loadavg.c +36 -0
  1859. data/ext/libuv/src/unix/sysinfo-memory.c +42 -0
  1860. data/ext/libuv/src/unix/tcp.c +450 -0
  1861. data/ext/libuv/src/unix/thread.c +852 -0
  1862. data/ext/libuv/src/unix/tty.c +381 -0
  1863. data/ext/libuv/src/unix/udp.c +1136 -0
  1864. data/ext/libuv/src/uv-common.c +812 -0
  1865. data/ext/libuv/src/uv-common.h +326 -0
  1866. data/ext/libuv/src/uv-data-getter-setters.c +98 -0
  1867. data/ext/libuv/src/version.c +45 -0
  1868. data/ext/libuv/src/win/async.c +98 -0
  1869. data/ext/libuv/src/win/atomicops-inl.h +57 -0
  1870. data/ext/libuv/src/win/core.c +657 -0
  1871. data/ext/libuv/src/win/detect-wakeup.c +35 -0
  1872. data/ext/libuv/src/win/dl.c +136 -0
  1873. data/ext/libuv/src/win/error.c +172 -0
  1874. data/ext/libuv/src/win/fs-event.c +589 -0
  1875. data/ext/libuv/src/win/fs-fd-hash-inl.h +178 -0
  1876. data/ext/libuv/src/win/fs.c +3238 -0
  1877. data/ext/libuv/src/win/getaddrinfo.c +463 -0
  1878. data/ext/libuv/src/win/getnameinfo.c +157 -0
  1879. data/ext/libuv/src/win/handle-inl.h +180 -0
  1880. data/ext/libuv/src/win/handle.c +162 -0
  1881. data/ext/libuv/src/win/internal.h +344 -0
  1882. data/ext/libuv/src/win/loop-watcher.c +122 -0
  1883. data/ext/libuv/src/win/pipe.c +2386 -0
  1884. data/ext/libuv/src/win/poll.c +643 -0
  1885. data/ext/libuv/src/win/process-stdio.c +512 -0
  1886. data/ext/libuv/src/win/process.c +1282 -0
  1887. data/ext/libuv/src/win/req-inl.h +221 -0
  1888. data/ext/libuv/src/win/signal.c +277 -0
  1889. data/ext/libuv/src/win/snprintf.c +42 -0
  1890. data/ext/libuv/src/win/stream-inl.h +54 -0
  1891. data/ext/libuv/src/win/stream.c +243 -0
  1892. data/ext/libuv/src/win/tcp.c +1520 -0
  1893. data/ext/libuv/src/win/thread.c +520 -0
  1894. data/ext/libuv/src/win/tty.c +2348 -0
  1895. data/ext/libuv/src/win/udp.c +1185 -0
  1896. data/ext/libuv/src/win/util.c +1879 -0
  1897. data/ext/libuv/src/win/winapi.c +149 -0
  1898. data/ext/libuv/src/win/winapi.h +4751 -0
  1899. data/ext/libuv/src/win/winsock.c +575 -0
  1900. data/ext/libuv/src/win/winsock.h +201 -0
  1901. data/ext/libuv/test/benchmark-async-pummel.c +119 -0
  1902. data/ext/libuv/test/benchmark-async.c +141 -0
  1903. data/ext/libuv/test/benchmark-fs-stat.c +136 -0
  1904. data/ext/libuv/test/benchmark-getaddrinfo.c +92 -0
  1905. data/ext/libuv/test/benchmark-list.h +163 -0
  1906. data/ext/libuv/test/benchmark-loop-count.c +92 -0
  1907. data/ext/libuv/test/benchmark-million-async.c +112 -0
  1908. data/ext/libuv/test/benchmark-million-timers.c +86 -0
  1909. data/ext/libuv/test/benchmark-multi-accept.c +447 -0
  1910. data/ext/libuv/test/benchmark-ping-pongs.c +221 -0
  1911. data/ext/libuv/test/benchmark-pound.c +351 -0
  1912. data/ext/libuv/test/benchmark-pump.c +476 -0
  1913. data/ext/libuv/test/benchmark-sizes.c +46 -0
  1914. data/ext/libuv/test/benchmark-spawn.c +164 -0
  1915. data/ext/libuv/test/benchmark-tcp-write-batch.c +144 -0
  1916. data/ext/libuv/test/benchmark-thread.c +64 -0
  1917. data/ext/libuv/test/benchmark-udp-pummel.c +243 -0
  1918. data/ext/libuv/test/blackhole-server.c +121 -0
  1919. data/ext/libuv/test/dns-server.c +340 -0
  1920. data/ext/libuv/test/echo-server.c +382 -0
  1921. data/ext/libuv/test/fixtures/empty_file +0 -0
  1922. data/ext/libuv/test/fixtures/load_error.node +1 -0
  1923. data/ext/libuv/test/fixtures/lorem_ipsum.txt +1 -0
  1924. data/ext/libuv/test/run-benchmarks.c +65 -0
  1925. data/ext/libuv/test/run-tests.c +239 -0
  1926. data/ext/libuv/test/runner-unix.c +450 -0
  1927. data/ext/libuv/test/runner-unix.h +36 -0
  1928. data/ext/libuv/test/runner-win.c +357 -0
  1929. data/ext/libuv/test/runner-win.h +41 -0
  1930. data/ext/libuv/test/runner.c +431 -0
  1931. data/ext/libuv/test/runner.h +176 -0
  1932. data/ext/libuv/test/task.h +238 -0
  1933. data/ext/libuv/test/test-active.c +84 -0
  1934. data/ext/libuv/test/test-async-null-cb.c +64 -0
  1935. data/ext/libuv/test/test-async.c +134 -0
  1936. data/ext/libuv/test/test-barrier.c +148 -0
  1937. data/ext/libuv/test/test-callback-order.c +77 -0
  1938. data/ext/libuv/test/test-callback-stack.c +204 -0
  1939. data/ext/libuv/test/test-close-fd.c +80 -0
  1940. data/ext/libuv/test/test-close-order.c +80 -0
  1941. data/ext/libuv/test/test-condvar.c +267 -0
  1942. data/ext/libuv/test/test-connect-unspecified.c +63 -0
  1943. data/ext/libuv/test/test-connection-fail.c +151 -0
  1944. data/ext/libuv/test/test-cwd-and-chdir.c +58 -0
  1945. data/ext/libuv/test/test-default-loop-close.c +59 -0
  1946. data/ext/libuv/test/test-delayed-accept.c +189 -0
  1947. data/ext/libuv/test/test-dlerror.c +61 -0
  1948. data/ext/libuv/test/test-eintr-handling.c +94 -0
  1949. data/ext/libuv/test/test-embed.c +139 -0
  1950. data/ext/libuv/test/test-emfile.c +121 -0
  1951. data/ext/libuv/test/test-env-vars.c +140 -0
  1952. data/ext/libuv/test/test-error.c +79 -0
  1953. data/ext/libuv/test/test-fail-always.c +29 -0
  1954. data/ext/libuv/test/test-fork.c +683 -0
  1955. data/ext/libuv/test/test-fs-copyfile.c +209 -0
  1956. data/ext/libuv/test/test-fs-event.c +1165 -0
  1957. data/ext/libuv/test/test-fs-fd-hash.c +133 -0
  1958. data/ext/libuv/test/test-fs-open-flags.c +435 -0
  1959. data/ext/libuv/test/test-fs-poll.c +300 -0
  1960. data/ext/libuv/test/test-fs-readdir.c +462 -0
  1961. data/ext/libuv/test/test-fs.c +4238 -0
  1962. data/ext/libuv/test/test-get-currentexe.c +86 -0
  1963. data/ext/libuv/test/test-get-loadavg.c +35 -0
  1964. data/ext/libuv/test/test-get-memory.c +40 -0
  1965. data/ext/libuv/test/test-get-passwd.c +86 -0
  1966. data/ext/libuv/test/test-getaddrinfo.c +191 -0
  1967. data/ext/libuv/test/test-gethostname.c +58 -0
  1968. data/ext/libuv/test/test-getnameinfo.c +101 -0
  1969. data/ext/libuv/test/test-getsockname.c +361 -0
  1970. data/ext/libuv/test/test-getters-setters.c +88 -0
  1971. data/ext/libuv/test/test-gettimeofday.c +39 -0
  1972. data/ext/libuv/test/test-handle-fileno.c +125 -0
  1973. data/ext/libuv/test/test-homedir.c +72 -0
  1974. data/ext/libuv/test/test-hrtime.c +52 -0
  1975. data/ext/libuv/test/test-idle.c +99 -0
  1976. data/ext/libuv/test/test-idna.c +195 -0
  1977. data/ext/libuv/test/test-ip4-addr.c +55 -0
  1978. data/ext/libuv/test/test-ip6-addr.c +171 -0
  1979. data/ext/libuv/test/test-ipc-heavy-traffic-deadlock-bug.c +159 -0
  1980. data/ext/libuv/test/test-ipc-send-recv.c +429 -0
  1981. data/ext/libuv/test/test-ipc.c +974 -0
  1982. data/ext/libuv/test/test-list.h +1064 -0
  1983. data/ext/libuv/test/test-loop-alive.c +67 -0
  1984. data/ext/libuv/test/test-loop-close.c +75 -0
  1985. data/ext/libuv/test/test-loop-configure.c +38 -0
  1986. data/ext/libuv/test/test-loop-handles.c +337 -0
  1987. data/ext/libuv/test/test-loop-stop.c +71 -0
  1988. data/ext/libuv/test/test-loop-time.c +63 -0
  1989. data/ext/libuv/test/test-multiple-listen.c +109 -0
  1990. data/ext/libuv/test/test-mutexes.c +182 -0
  1991. data/ext/libuv/test/test-osx-select.c +140 -0
  1992. data/ext/libuv/test/test-pass-always.c +28 -0
  1993. data/ext/libuv/test/test-ping-pong.c +301 -0
  1994. data/ext/libuv/test/test-pipe-bind-error.c +139 -0
  1995. data/ext/libuv/test/test-pipe-close-stdout-read-stdin.c +112 -0
  1996. data/ext/libuv/test/test-pipe-connect-error.c +95 -0
  1997. data/ext/libuv/test/test-pipe-connect-multiple.c +107 -0
  1998. data/ext/libuv/test/test-pipe-connect-prepare.c +83 -0
  1999. data/ext/libuv/test/test-pipe-getsockname.c +266 -0
  2000. data/ext/libuv/test/test-pipe-pending-instances.c +59 -0
  2001. data/ext/libuv/test/test-pipe-sendmsg.c +172 -0
  2002. data/ext/libuv/test/test-pipe-server-close.c +94 -0
  2003. data/ext/libuv/test/test-pipe-set-fchmod.c +90 -0
  2004. data/ext/libuv/test/test-pipe-set-non-blocking.c +99 -0
  2005. data/ext/libuv/test/test-platform-output.c +170 -0
  2006. data/ext/libuv/test/test-poll-close-doesnt-corrupt-stack.c +114 -0
  2007. data/ext/libuv/test/test-poll-close.c +73 -0
  2008. data/ext/libuv/test/test-poll-closesocket.c +92 -0
  2009. data/ext/libuv/test/test-poll-oob.c +210 -0
  2010. data/ext/libuv/test/test-poll.c +668 -0
  2011. data/ext/libuv/test/test-process-priority.c +83 -0
  2012. data/ext/libuv/test/test-process-title-threadsafe.c +89 -0
  2013. data/ext/libuv/test/test-process-title.c +76 -0
  2014. data/ext/libuv/test/test-queue-foreach-delete.c +204 -0
  2015. data/ext/libuv/test/test-random.c +94 -0
  2016. data/ext/libuv/test/test-ref.c +445 -0
  2017. data/ext/libuv/test/test-run-nowait.c +45 -0
  2018. data/ext/libuv/test/test-run-once.c +48 -0
  2019. data/ext/libuv/test/test-semaphore.c +111 -0
  2020. data/ext/libuv/test/test-shutdown-close.c +108 -0
  2021. data/ext/libuv/test/test-shutdown-eof.c +182 -0
  2022. data/ext/libuv/test/test-shutdown-twice.c +85 -0
  2023. data/ext/libuv/test/test-signal-multiple-loops.c +302 -0
  2024. data/ext/libuv/test/test-signal-pending-on-close.c +94 -0
  2025. data/ext/libuv/test/test-signal.c +325 -0
  2026. data/ext/libuv/test/test-socket-buffer-size.c +77 -0
  2027. data/ext/libuv/test/test-spawn.c +1924 -0
  2028. data/ext/libuv/test/test-stdio-over-pipes.c +256 -0
  2029. data/ext/libuv/test/test-strscpy.c +53 -0
  2030. data/ext/libuv/test/test-tcp-alloc-cb-fail.c +123 -0
  2031. data/ext/libuv/test/test-tcp-bind-error.c +254 -0
  2032. data/ext/libuv/test/test-tcp-bind6-error.c +176 -0
  2033. data/ext/libuv/test/test-tcp-close-accept.c +198 -0
  2034. data/ext/libuv/test/test-tcp-close-reset.c +290 -0
  2035. data/ext/libuv/test/test-tcp-close-while-connecting.c +97 -0
  2036. data/ext/libuv/test/test-tcp-close.c +136 -0
  2037. data/ext/libuv/test/test-tcp-connect-error-after-write.c +98 -0
  2038. data/ext/libuv/test/test-tcp-connect-error.c +73 -0
  2039. data/ext/libuv/test/test-tcp-connect-timeout.c +91 -0
  2040. data/ext/libuv/test/test-tcp-connect6-error.c +71 -0
  2041. data/ext/libuv/test/test-tcp-create-socket-early.c +209 -0
  2042. data/ext/libuv/test/test-tcp-flags.c +52 -0
  2043. data/ext/libuv/test/test-tcp-oob.c +146 -0
  2044. data/ext/libuv/test/test-tcp-open.c +400 -0
  2045. data/ext/libuv/test/test-tcp-read-stop.c +76 -0
  2046. data/ext/libuv/test/test-tcp-shutdown-after-write.c +138 -0
  2047. data/ext/libuv/test/test-tcp-try-write-error.c +109 -0
  2048. data/ext/libuv/test/test-tcp-try-write.c +135 -0
  2049. data/ext/libuv/test/test-tcp-unexpected-read.c +117 -0
  2050. data/ext/libuv/test/test-tcp-write-after-connect.c +72 -0
  2051. data/ext/libuv/test/test-tcp-write-fail.c +115 -0
  2052. data/ext/libuv/test/test-tcp-write-queue-order.c +139 -0
  2053. data/ext/libuv/test/test-tcp-write-to-half-open-connection.c +141 -0
  2054. data/ext/libuv/test/test-tcp-writealot.c +180 -0
  2055. data/ext/libuv/test/test-thread-equal.c +45 -0
  2056. data/ext/libuv/test/test-thread.c +286 -0
  2057. data/ext/libuv/test/test-threadpool-cancel.c +349 -0
  2058. data/ext/libuv/test/test-threadpool.c +76 -0
  2059. data/ext/libuv/test/test-timer-again.c +141 -0
  2060. data/ext/libuv/test/test-timer-from-check.c +80 -0
  2061. data/ext/libuv/test/test-timer.c +343 -0
  2062. data/ext/libuv/test/test-tmpdir.c +82 -0
  2063. data/ext/libuv/test/test-tty-duplicate-key.c +321 -0
  2064. data/ext/libuv/test/test-tty.c +464 -0
  2065. data/ext/libuv/test/test-udp-alloc-cb-fail.c +196 -0
  2066. data/ext/libuv/test/test-udp-bind.c +93 -0
  2067. data/ext/libuv/test/test-udp-connect.c +182 -0
  2068. data/ext/libuv/test/test-udp-create-socket-early.c +135 -0
  2069. data/ext/libuv/test/test-udp-dgram-too-big.c +91 -0
  2070. data/ext/libuv/test/test-udp-ipv6.c +200 -0
  2071. data/ext/libuv/test/test-udp-multicast-interface.c +99 -0
  2072. data/ext/libuv/test/test-udp-multicast-interface6.c +103 -0
  2073. data/ext/libuv/test/test-udp-multicast-join.c +181 -0
  2074. data/ext/libuv/test/test-udp-multicast-join6.c +215 -0
  2075. data/ext/libuv/test/test-udp-multicast-ttl.c +94 -0
  2076. data/ext/libuv/test/test-udp-open.c +350 -0
  2077. data/ext/libuv/test/test-udp-options.c +156 -0
  2078. data/ext/libuv/test/test-udp-send-and-recv.c +212 -0
  2079. data/ext/libuv/test/test-udp-send-hang-loop.c +99 -0
  2080. data/ext/libuv/test/test-udp-send-immediate.c +148 -0
  2081. data/ext/libuv/test/test-udp-send-unreachable.c +150 -0
  2082. data/ext/libuv/test/test-udp-try-send.c +121 -0
  2083. data/ext/libuv/test/test-uname.c +69 -0
  2084. data/ext/libuv/test/test-walk-handles.c +77 -0
  2085. data/ext/libuv/test/test-watcher-cross-stop.c +111 -0
  2086. data/ext/libuv/test/test.gyp +293 -0
  2087. data/ext/libuv/tools/make_dist_html.py +124 -0
  2088. data/ext/libuv/tools/vswhere_usability_wrapper.cmd +33 -0
  2089. data/ext/libuv/uv.gyp +368 -0
  2090. data/ext/libuv/vcbuild.bat +184 -0
  2091. data/lib/mt-libuv/tcp.rb +2 -2
  2092. data/lib/mt-libuv/version.rb +1 -1
  2093. data/mt-libuv.gemspec +26 -26
  2094. metadata +2089 -2
@@ -0,0 +1,4548 @@
1
+ 2020.01.13, Version 1.34.1 (Stable)
2
+
3
+ Changes since version 1.34.0:
4
+
5
+ * unix: fix -Wstrict-aliasing compiler warning (Ben Noordhuis)
6
+
7
+ * unix: cache address of dlsym("mkostemp") (Ben Noordhuis)
8
+
9
+ * build: remove -pedantic from compiler flags (Ben Noordhuis)
10
+
11
+ * Revert "darwin: assume pthread_setname_np() is available" (Ben Noordhuis)
12
+
13
+ * Revert "darwin: speed up uv_set_process_title()" (Ben Noordhuis)
14
+
15
+ * darwin: assume pthread_setname_np() is available (Ben Noordhuis)
16
+
17
+ * ibmi: fix the false isatty() issue on IBMi (Xu Meng)
18
+
19
+ * test: fix test failure under NetBSD and OpenBSD (David Carlier)
20
+
21
+ * test: skip some test cases on IBMi (Xu Meng)
22
+
23
+ * test: skip uv_(get|set)_process_title on IBMi (Xu Meng)
24
+
25
+ * doc: remove binaries for Windows from README (Richard Lau)
26
+
27
+ * unix: fix -Wunused-but-set-variable warning (George Zhao)
28
+
29
+ * unix: pass sysctl size arg using ARRAY_SIZE macro (David Carlier)
30
+
31
+ * test: disallow running the test suite as root (cjihrig)
32
+
33
+ * unix: suppress -Waddress-of-packed-member warning (Ben Noordhuis)
34
+
35
+ * misc: make more tags "not-stale" (Jameson Nash)
36
+
37
+ * test: fix pthread memory leak (Trevor Norris)
38
+
39
+ * docs: delete socks5-proxy sample (Jameson Nash)
40
+
41
+ * ibmi: fix the CMSG length issue (Xu Meng)
42
+
43
+ * docs: fix formatting (Jameson Nash)
44
+
45
+ * unix: squelch fchmod() EPERM on CIFS share (Ben Noordhuis)
46
+
47
+ * docs: fix linkcheck (Jameson Nash)
48
+
49
+ * docs: switch from linux.die.net to man7.org (Jameson Nash)
50
+
51
+ * win: remove abort when non-IFS LSP detection fails (virtualyw)
52
+
53
+ * docs: clarify that uv_pipe_t is a pipe (Jameson Nash)
54
+
55
+ * win,tty: avoid regressions in utf-8 handling (Jameson Nash)
56
+
57
+ * win: remove bad assert in uv_loop_close (Jameson Nash)
58
+
59
+ * test: fix -fno-common build errors (Ben Noordhuis)
60
+
61
+ * build: turn on -fno-common to catch regressions (Ben Noordhuis)
62
+
63
+ * test: fix fs birth time test failure (Ben Noordhuis)
64
+
65
+ * tty,unix: avoid affecting controlling TTY (Jameson Nash)
66
+
67
+
68
+ 2019.12.05, Version 1.34.0 (Stable), 15ae750151ac9341e5945eb38f8982d59fb99201
69
+
70
+ Changes since version 1.33.1:
71
+
72
+ * unix: move random-sysctl to random-sysctl-linux (nia)
73
+
74
+ * netbsd: use KERN_ARND sysctl to get entropy (nia)
75
+
76
+ * unix: refactor uv__fs_copyfile() logic (cjihrig)
77
+
78
+ * build: fix android build, add missing sources (Ben Noordhuis)
79
+
80
+ * build: fix android build, fix symbol redefinition (Ben Noordhuis)
81
+
82
+ * build: fix android autotools build (Ben Noordhuis)
83
+
84
+ * fs: handle non-functional statx system call (Milad Farazmand)
85
+
86
+ * unix,win: add uv_sleep() (cjihrig)
87
+
88
+ * doc: add richardlau to maintainers (Richard Lau)
89
+
90
+ * aix: fix netmask for IPv6 (Richard Lau)
91
+
92
+ * aix: clean up after errors in uv_interface_addresses() (Richard Lau)
93
+
94
+ * aix: fix setting of physical addresses (Richard Lau)
95
+
96
+ * fs: add uv_fs_mkstemp (Saúl Ibarra Corretgé)
97
+
98
+ * unix: switch uv_sleep() to nanosleep() (Ben Noordhuis)
99
+
100
+ * unix: retry on EINTR in uv_sleep() (Ben Noordhuis)
101
+
102
+ * zos: fix nanosleep() emulation (Ben Noordhuis)
103
+
104
+
105
+ 2019.10.20, Version 1.33.1 (Stable), 07ad32138f4d2285ba2226b5e20462b27b091a59
106
+
107
+ Changes since version 1.33.0:
108
+
109
+ * linux: fix arm64 SYS__sysctl build breakage (Ben Noordhuis)
110
+
111
+
112
+ 2019.10.17, Version 1.33.0 (Stable), e56e42e9310e4437e1886dbd6771792c14c0a5f3
113
+
114
+ Changes since version 1.32.0:
115
+
116
+ * Revert "linux: drop code path for epoll_pwait-less kernels" (Yang Yu)
117
+
118
+ * build: fix build error with __ANDROID_API__ < 21 (Yang Yu)
119
+
120
+ * win: fix reading hidden env vars (Anna Henningsen)
121
+
122
+ * unix,win: add uv_random() (Ben Noordhuis)
123
+
124
+ * win: simplify mkdtemp (Saúl Ibarra Corretgé)
125
+
126
+ * docs: fix literal-includes in User Guide (Nhan Khong)
127
+
128
+ * win, tty: fix problem of receiving unexpected SIGWINCH (erw7)
129
+
130
+ * unix: fix {Net,Open}BSD build (David Carlier)
131
+
132
+ * win,mingw: Fix undefined MCAST_* constants (Crunkle)
133
+
134
+ * build: Add link for test/fixtures/lorem_ipsum.txt (Andrew Paprocki)
135
+
136
+ * fs: use statvfs in uv__fs_statfs() for Haiku (Calvin Hill)
137
+
138
+ * fsevents: stop using fsevents to watch files (Jameson Nash)
139
+
140
+ * fsevents: regression in watching / (Jameson Nash)
141
+
142
+ * build,cmake: don't try to detect a C++ compiler (Isabella Muerte)
143
+
144
+ * build: fix build warning on cygwin (MaYuming)
145
+
146
+ * unix: set sin_len and sin6_len (Ouyang Yadong)
147
+
148
+ * test: fix order of operations in test (cjihrig)
149
+
150
+ * doc: improve uv_fs_readdir() cleanup docs (cjihrig)
151
+
152
+ * build: remove duplicated test in build files (ZYSzys)
153
+
154
+ * android: enable getentropy on Android >= 28 (David Carlier)
155
+
156
+ * android: fix build (David Carlier)
157
+
158
+ * darwin: speed up uv_set_process_title() (Ben Noordhuis)
159
+
160
+ * darwin: assume pthread_setname_np() is available (Ben Noordhuis)
161
+
162
+ * unix,udp: ensure addr is non-null (Jameson Nash)
163
+
164
+ * win,tty: add uv_tty_{get,set}_vterm_state (erw7)
165
+
166
+ * win: fix uv_statfs_t leak in uv_fs_statfs() (Ryan Liptak)
167
+
168
+ * build: install files on windows via cmake (Carl Lei)
169
+
170
+ * darwin,test: include AvailabilityMacros.h (Saúl Ibarra Corretgé)
171
+
172
+ * darwin,test: update loop time after sleeping (Saúl Ibarra Corretgé)
173
+
174
+ * doc: remove old FreeBSD 9 related note (Saúl Ibarra Corretgé)
175
+
176
+ * doc: improve uv_{send,recv}_buffer_size() docs (Ryan Liptak)
177
+
178
+ * build: move -Wno-long-long check to configure time (Ben Noordhuis)
179
+
180
+ * unix: update uv_fs_copyfile() fallback logic (Stefan Bender)
181
+
182
+ * win: cast setsockopt struct to const char* (Shelley Vohr)
183
+
184
+
185
+ 2019.09.10, Version 1.32.0 (Stable), 697bea87b3a0b0e9b4e5ff86b39d1dedb70ee46d
186
+
187
+ Changes since version 1.31.0:
188
+
189
+ * misc: enable stalebot (Saúl Ibarra Corretgé)
190
+
191
+ * win: map ERROR_ENVVAR_NOT_FOUND to UV_ENOENT (cjihrig)
192
+
193
+ * win: use L'\0' as UTF-16 null terminator (cjihrig)
194
+
195
+ * win: support retrieving empty env variables (cjihrig)
196
+
197
+ * unix,stream: fix returned error codes (Santiago Gimeno)
198
+
199
+ * test: fix typo in DYLD_LIBRARY_PATH (Ben Noordhuis)
200
+
201
+ * unix,signal: keep handle active if pending signal (Santiago Gimeno)
202
+
203
+ * openbsd: fix uv_cpu_info (Santiago Gimeno)
204
+
205
+ * src: move uv_free_cpu_info to uv-common.c (Santiago Gimeno)
206
+
207
+ * tcp: add uv_tcp_close_reset method (Santiago Gimeno)
208
+
209
+ * test: fix udp-multicast-join tests (Santiago Gimeno)
210
+
211
+ * test: remove assertion in fs_statfs test (cjihrig)
212
+
213
+ * doc: clarify uv_buf_t usage in uv_alloc_cb (Tomas Krizek)
214
+
215
+ * win: fix typo in preprocessor expression (Konstantin Podsvirov)
216
+
217
+ * timer: fix uv_timer_start on closing timer (seny)
218
+
219
+ * udp: add source-specific multicast support (Vladimir Karnushin)
220
+
221
+ * udp: fix error return values (Santiago Gimeno)
222
+
223
+ * udp: drop IPV6_SSM_SUPPORT macro (Santiago Gimeno)
224
+
225
+ * udp: fix uv__udp_set_source_membership6 (Santiago Gimeno)
226
+
227
+ * udp: use sockaddr_storage instead of union (Santiago Gimeno)
228
+
229
+ * build,zos: add _OPEN_SYS_SOCK_EXT3 flag (Santiago Gimeno)
230
+
231
+ * test: add specific source multicast tests (Santiago Gimeno)
232
+
233
+ * include: map EILSEQ error code (cjihrig)
234
+
235
+ * win, tty: improve SIGWINCH performance (Bartosz Sosnowski)
236
+
237
+ * build: fix ios build error (MaYuming)
238
+
239
+ * aix: replace ECONNRESET with EOF if already closed (Milad Farazmand)
240
+
241
+ * build: add cmake library VERSION, SOVERSION (Eneas U de Queiroz)
242
+
243
+ * build: make include/ public in CMakeLists.txt (Ben Noordhuis)
244
+
245
+ * build: export USING_UV_SHARED=1 to cmake deps (Ben Noordhuis)
246
+
247
+ * build: cmake_minimum_required(VERSION 2.8.12) (Daniel Hahler)
248
+
249
+ * aix: Fix broken cmpxchgi() XL C++ specialization. (Andrew Paprocki)
250
+
251
+ * test: fix -Wsign-compare warning (Ben Noordhuis)
252
+
253
+ * unix: simplify open(O_CLOEXEC) feature detection (Ben Noordhuis)
254
+
255
+ * unix: fix UV_FS_O_DIRECT definition on Linux (Joran Dirk Greef)
256
+
257
+ * doc: uv_handle_t documentation suggestion (Daniel Bevenius)
258
+
259
+
260
+ 2019.08.10, Version 1.31.0 (Stable), 0a6771cee4c15184c924bfe9d397bdd0c3b206ba
261
+
262
+ Changes since version 1.30.1:
263
+
264
+ * win,fs: don't modify global file translation mode (Javier Blazquez)
265
+
266
+ * win: fix uv_os_tmpdir when env var is 260 chars (Mustafa M)
267
+
268
+ * win: prevent tty event explosion machine hang (Javier Blazquez)
269
+
270
+ * win: add UV_FS_O_FILEMAP (João Reis)
271
+
272
+ * win, fs: mkdir return UV_EINVAL for invalid names (Bartosz Sosnowski)
273
+
274
+ * github: add root warning to template (cjihrig)
275
+
276
+ * win: misc fs cleanup (cjihrig)
277
+
278
+ * unix,win: add uv_fs_statfs() (cjihrig)
279
+
280
+ * test: avoid AF_LOCAL (Carlo Marcelo Arenas Belón)
281
+
282
+ * unix,win: add ability to retrieve all env variables (Saúl Ibarra Corretgé)
283
+
284
+ * Revert "darwin: speed up uv_set_process_title()" (Ben Noordhuis)
285
+
286
+ * doc: add %p to valgrind log-file arg (Zach Bjornson)
287
+
288
+ * doc: fix typo in basics.rst (Nan Xiao)
289
+
290
+ * ibmi: support Makefile build for IBM i (Xu Meng)
291
+
292
+ * OpenBSD: only get active CPU core count (Ben Davies)
293
+
294
+ * test: fix gcc 8 warnings for tests (Nhan Khong)
295
+
296
+ * ibmi: use correct header files (Xu Meng)
297
+
298
+ * unix: clear UV_HANDLE_READING flag before callback (zyxwvu Shi)
299
+
300
+ * unix: fix unused-function warning on BSD (Nhan Khong)
301
+
302
+ * test: fix test runner on MinGW (Crunkle)
303
+
304
+ * win: remove try-except outside MSVC (Crunkle)
305
+
306
+ * win: fix uv_spawn() ENOMEM on empty env (Ben Noordhuis)
307
+
308
+
309
+ 2019.07.03, Version 1.30.1 (Stable), 1551969c84c2f546a429dac169c7fdac3e38115e
310
+
311
+ Changes since version 1.30.0:
312
+
313
+ * doc: fix incorrect versionchanged (cjihrig)
314
+
315
+ * test: allow UV_ECONNRESET in tcp_try_write_error (cjihrig)
316
+
317
+ * unix: add uv_get_constrained_memory() cygwin stub (cjihrig)
318
+
319
+ * build: fix android cmake build (Ben Noordhuis)
320
+
321
+ * unix: squelch -Wcast-function-type warning (Ben Noordhuis)
322
+
323
+ * build: fix compile error with uClibc (zlargon)
324
+
325
+
326
+ 2019.06.28, Version 1.30.0 (Stable), 365b6f2a0eacda1ff52be8e57ab9381cfddc5dbb
327
+
328
+ Changes since version 1.29.1:
329
+
330
+ * darwin: fall back to F_BARRIERFSYNC (Ben Noordhuis)
331
+
332
+ * darwin: add 32 bit close$NOCANCEL implementation (ken-cunningham-webuse)
333
+
334
+ * build, core, unix: add support for Haiku (Leorize)
335
+
336
+ * darwin,linux: more conservative minimum stack size (Ben Noordhuis)
337
+
338
+ * threadpool: increase UV_THREADPOOL_SIZE limit (Vlad A)
339
+
340
+ * unix: return actual error from `uv_try_write()` (Anna Henningsen)
341
+
342
+ * darwin: fix build error with macos 10.10 (Ben Noordhuis)
343
+
344
+ * unix: make uv_cwd() report UV_ENOBUFS (Ben Noordhuis)
345
+
346
+ * unix: make uv_fs_read() fill all buffers (Ben Noordhuis)
347
+
348
+ * test: give hrtime test a custom 10s timeout (Ben Noordhuis)
349
+
350
+ * fs: fix uv_fs_copyfile if same src and dst (Santiago Gimeno)
351
+
352
+ * build: add cmake option to skip building tests (Niels Lohmann)
353
+
354
+ * doc: add link to nodejs.org (Jenil Christo)
355
+
356
+ * unix: fix a comment typo in signal.c (Evgeny Ermakov)
357
+
358
+ * unix: remove redundant cast in process.c (gengjiawen)
359
+
360
+ * doc: fix wrong mutex function prototypes (Leo Chung)
361
+
362
+
363
+ 2019.05.22, Version 1.29.1 (Stable), d16e6094e1eb3b0b5981ef1dd7e03ec4d466944d
364
+
365
+ Changes since version 1.29.0:
366
+
367
+ * unix: simplify uv/posix.h include logic (cjihrig)
368
+
369
+ * test: increase test timeout (cjihrig)
370
+
371
+ * linux: fix sscanf() overflows reading from /proc (Ben Noordhuis)
372
+
373
+
374
+ 2019.05.16, Version 1.29.0 (Stable), 43957efd92c167b352b4c948b617ca7afbee0ed1
375
+
376
+ Changes since version 1.28.0:
377
+
378
+ * ibmi: read memory and CPU usage info (Xu Meng)
379
+
380
+ * doc: update the cmake testing instruction (zlargon)
381
+
382
+ * unix: fix race condition in uv_async_send() (Ben Noordhuis)
383
+
384
+ * linux: use O_CLOEXEC instead of EPOLL_CLOEXEC (Ben Noordhuis)
385
+
386
+ * doc: mark uv_async_send() as async-signal-safe (Ben Noordhuis)
387
+
388
+ * linux: init st_flags and st_gen when using statx (Oscar Waddell)
389
+
390
+ * linux: read free/total memory from /proc/meminfo (Ben Noordhuis)
391
+
392
+ * test: test zero-sized uv_fs_sendfile() writes (Ben Noordhuis)
393
+
394
+ * unix: don't assert on UV_PROCESS_WINDOWS_* flags (Ben Noordhuis)
395
+
396
+ * linux: set correct mac address for IP-aliases (Santiago Gimeno)
397
+
398
+ * win,util: fix null pointer dereferencing (Tobias Nießen)
399
+
400
+ * unix,win: fix `uv_fs_poll_stop()` when active (Anna Henningsen)
401
+
402
+ * doc: add missing uv_fs_type entries (Michele Caini)
403
+
404
+ * doc: fix build with sphinx 2.x (FX Coudert)
405
+
406
+ * unix: don't make statx system call on Android (George Zhao)
407
+
408
+ * unix: fix clang scan-build warning (Kyle Edwards)
409
+
410
+ * unix: fall back to kqueue on older macOS systems (ken-cunningham-webuse)
411
+
412
+ * unix,win: add uv_get_constrained_memory() (Kelvin Jin)
413
+
414
+ * darwin: fix thread cancellation fd leak (Ben Noordhuis)
415
+
416
+ * linux: fix thread cancellation fd leak (Ben Noordhuis)
417
+
418
+
419
+ 2019.04.16, Version 1.28.0 (Stable), 7bf8fabfa934660ee0fe889f78e151198a1165fc
420
+
421
+ Changes since version 1.27.0:
422
+
423
+ * unix,win: add uv_gettimeofday() (cjihrig)
424
+
425
+ * unix,win: add uv_fs_{open,read,close}dir() (cjihrig)
426
+
427
+ * unix: fix uv_interface_addresses() (Andreas Rohner)
428
+
429
+ * fs: remove macOS-specific copyfile(3) (Rich Trott)
430
+
431
+ * fs: add test for copyfile() respecting permissions (Rich Trott)
432
+
433
+ * build: partially revert 5234b1c43a (Ben Noordhuis)
434
+
435
+ * zos: fix setsockopt error when using AF_UNIX (Milad Farazmand)
436
+
437
+ * unix: suppress EINTR/EINPROGRESS in uv_fs_close() (Ben Noordhuis)
438
+
439
+ * build: use cmake APPLE variable to detect platform (zlargon)
440
+
441
+ * distcheck: remove duplicate test/ entry (Jameson Nash)
442
+
443
+ * unix: remove unused cmpxchgl() function (Ben Noordhuis)
444
+
445
+ * unix: support sockaddr_un in uv_udp_send() (Yury Selivanov)
446
+
447
+ * unix: guard use of PTHREAD_STACK_MIN (Kamil Rytarowski)
448
+
449
+ * unix,win: introduce uv_timeval64_t (cjihrig)
450
+
451
+ * doc: document uv_timeval_t and uv_timeval64_t (cjihrig)
452
+
453
+
454
+ 2019.03.17, Version 1.27.0 (Stable), a4fc9a66cc35256dbc4dcd67c910174f05b6daa6
455
+
456
+ Changes since version 1.26.0:
457
+
458
+ * doc: describe unix signal handling better (Vladimír Čunát)
459
+
460
+ * linux: use statx() to obtain file birth time (Ben Noordhuis)
461
+
462
+ * src: fill sockaddr_in6.sin6_len when it's defined (Santiago Gimeno)
463
+
464
+ * test: relax uv_hrtime() test assumptions (Ben Noordhuis)
465
+
466
+ * build: make cmake install LICENSE only once (Thomas Karl Pietrowski)
467
+
468
+ * bsd: plug uv_fs_event_start() error path fd leak (Ben Noordhuis)
469
+
470
+ * unix: fix __FreeBSD_kernel__ typo (cjihrig)
471
+
472
+ * doc: add note about uv_run() not being reentrant (Ben Noordhuis)
473
+
474
+ * unix, win: make fs-poll close wait for resource cleanup (Anna Henningsen)
475
+
476
+ * doc: fix typo in uv_thread_options_t definition (Ryan Liptak)
477
+
478
+ * win: skip winsock initialization in safe mode (evgley)
479
+
480
+ * unix: refactor getsockname/getpeername methods (Santiago Gimeno)
481
+
482
+ * win,udp: allow to use uv_udp_open on bound sockets (Santiago Gimeno)
483
+
484
+ * udp: add support for UDP connected sockets (Santiago Gimeno)
485
+
486
+ * build: fix uv_test shared uv Windows cmake build (ptlomholt)
487
+
488
+ * build: add android-configure scripts to EXTRA_DIST (Ben Noordhuis)
489
+
490
+ * build: add missing header (cjihrig)
491
+
492
+ * sunos: add perror() output prior to abort() (Andrew Paprocki)
493
+
494
+ * test,sunos: disable UV_DISCONNECT handling (Andrew Paprocki)
495
+
496
+ * sunos: disable __attribute__((unused)) (Andrew Paprocki)
497
+
498
+ * test,sunos: use unistd.h code branch (Andrew Paprocki)
499
+
500
+ * build,sunos: better handling of non-GCC compiler (Andrew Paprocki)
501
+
502
+ * test,sunos: fix statement not reached warnings (Andrew Paprocki)
503
+
504
+ * sunos: fix argument/prototype mismatch in atomics (Andrew Paprocki)
505
+
506
+ * test,sunos: test-ipc.c lacks newline at EOF (Andrew Paprocki)
507
+
508
+ * test: change spawn_stdin_stdout return to void (Andrew Paprocki)
509
+
510
+ * test: remove call to floor() in test driver (Andrew Paprocki)
511
+
512
+
513
+ 2019.02.11, Version 1.26.0 (Stable), 8669d8d3e93cddb62611b267ef62a3ddb5ba3ca0
514
+
515
+ Changes since version 1.25.0:
516
+
517
+ * doc: fix uv_get_free_memory doc (Stephen Belanger)
518
+
519
+ * unix: fix epoll cpu 100% issue (yeyuanfeng)
520
+
521
+ * openbsd,tcp: special handling of EINVAL on connect (ptlomholt)
522
+
523
+ * win: simplify registry closing in uv_cpu_info() (cjihrig)
524
+
525
+ * src,include: define UV_MAXHOSTNAMESIZE (cjihrig)
526
+
527
+ * win: return product name in uv_os_uname() version (cjihrig)
528
+
529
+ * thread: allow specifying stack size for new thread (Anna Henningsen)
530
+
531
+ * win: fix duplicate tty vt100 fn key (erw7)
532
+
533
+ * unix: don't attempt to invalidate invalid fd (Ben Noordhuis)
534
+
535
+
536
+ 2019.01.19, Version 1.25.0 (Stable), 4a10a9d425863330af199e4b74bd688e62d945f1
537
+
538
+ Changes since version 1.24.1:
539
+
540
+ * Revert "win,fs: retry if uv_fs_rename fails" (Ben Noordhuis)
541
+
542
+ * aix: manually trigger fs event monitoring (Gireesh Punathil)
543
+
544
+ * unix: rename WRITE_RETRY_ON_ERROR macro (Ben Noordhuis)
545
+
546
+ * darwin: DRY platform-specific error check (Ben Noordhuis)
547
+
548
+ * unix: refactor uv__write() (Ben Noordhuis)
549
+
550
+ * unix: don't send handle twice on partial write (Ben Noordhuis)
551
+
552
+ * tty,win: fix Alt+key under WSL (Bartosz Sosnowski)
553
+
554
+ * build: support running tests in out-of-tree builds (Jameson Nash)
555
+
556
+ * fsevents: really watch files with fsevents on macos 10.7+ (Jameson Nash)
557
+
558
+ * thread,mingw64: need intrin.h header for SSE2 MemoryBarrier (Jameson Nash)
559
+
560
+ * win: fix sizeof-pointer-div warning (cjihrig)
561
+
562
+ * unix,win: add uv_os_uname() (cjihrig)
563
+
564
+ * win, tty: fix CreateFileW() return value check (Bartosz Sosnowski)
565
+
566
+ * unix: enable IPv6 tests on OpenBSD (ptlomholt)
567
+
568
+ * test: fix test-ipc spawn_helper exit_cb (Santiago Gimeno)
569
+
570
+ * test: fix test-ipc tests (Santiago Gimeno)
571
+
572
+ * unix: better handling of unsupported F_FULLFSYNC (Victor Costan)
573
+
574
+ * win,test: de-flake fs_event_watch_dir_short_path (Refael Ackermann)
575
+
576
+ * win: fix msvc warning (sid)
577
+
578
+ * openbsd: switch to libuv's barrier implementation (ptlomholt)
579
+
580
+ * unix,stream: fix zero byte writes (Santiago Gimeno)
581
+
582
+ * ibmi: return EISDIR on read from directory fd (Kevin Adler)
583
+
584
+ * build: wrap long lines in Makefile.am (cjihrig)
585
+
586
+
587
+ 2018.12.17, Version 1.24.1 (Stable), 274f2bd3b70847cadd9a3965577a87e666ab9ac3
588
+
589
+ Changes since version 1.24.0:
590
+
591
+ * test: fix platform_output test on cygwin (damon-kwok)
592
+
593
+ * gitignore: ignore build/ directory (Damon Kwok)
594
+
595
+ * unix: zero epoll_event before use (Ashe Connor)
596
+
597
+ * darwin: use runtime check for file cloning (Ben Noordhuis)
598
+
599
+ * doc: replace deprecated build command on macOS (Rick)
600
+
601
+ * warnings: fix code that emits compiler warnings (Jameson Nash)
602
+
603
+ * doc: clarify expected memory management strategy (Ivan Krylov)
604
+
605
+ * test: add uv_inet_ntop(AF_INET) coverage (Ben Noordhuis)
606
+
607
+ * unix: harden string copying, introduce strscpy() (Ben Noordhuis)
608
+
609
+ * linux: get rid of strncpy() call (Ben Noordhuis)
610
+
611
+ * aix: get rid of strcat() calls (Ben Noordhuis)
612
+
613
+ * aix: fix data race in uv_fs_event_start() (Ben Noordhuis)
614
+
615
+ * win: fs: fix `FILE_FLAG_NO_BUFFERING` for writes (Joran Dirk Greef)
616
+
617
+ * build: don't link against -lpthread on Android (Michael Meier)
618
+
619
+
620
+ 2018.11.14, Version 1.24.0 (Stable), 2d427ee0083d1baf995df4ebf79a3f8890e9a3e1
621
+
622
+ Changes since version 1.23.2:
623
+
624
+ * unix: do not require PATH_MAX to be defined (Brad King)
625
+
626
+ * win,doc: path encoding in uv_fs_XX is UTF-8 (hitesh)
627
+
628
+ * unix: add missing link dependency on kFreeBSD (Svante Signell)
629
+
630
+ * unix: add support for GNU/Hurd (Samuel Thibault)
631
+
632
+ * test: avoid memory leak for test_output (Carlo Marcelo Arenas Belón)
633
+
634
+ * zos: avoid UB with NULL pointer arithmetic (Carlo Marcelo Arenas Belón)
635
+
636
+ * doc: add vtjnash to maintainers (Jameson Nash)
637
+
638
+ * unix: restore skipping of phys_addr copy (cjihrig)
639
+
640
+ * unix,win: make uv_interface_addresses() consistent (cjihrig)
641
+
642
+ * unix: remove unnecessary linebreaks (cjihrig)
643
+
644
+ * unix,win: handle zero-sized allocations uniformly (Ben Noordhuis)
645
+
646
+ * unix: remove unused uv__dup() function (Ben Noordhuis)
647
+
648
+ * core,bsd: refactor process_title functions (Santiago Gimeno)
649
+
650
+ * win: Redefine NSIG to consider SIGWINCH (Jeremy Studer)
651
+
652
+ * test: make sure that reading a directory fails (Sakthipriyan Vairamani)
653
+
654
+ * win, tty: remove zero-size read callbacks (Bartosz Sosnowski)
655
+
656
+ * test: fix test runner getenv async-signal-safety (Ben Noordhuis)
657
+
658
+ * test: fix test runner execvp async-signal-safety (Ben Noordhuis)
659
+
660
+ * test,unix: fix race in test runner (Ben Noordhuis)
661
+
662
+ * unix,win: support IDNA 2008 in uv_getaddrinfo() (Ben Noordhuis)
663
+
664
+ * win, tcp: avoid starving the loop (Bartosz Sosnowski)
665
+
666
+ * win, dl: proper error messages on some systems (Bartosz Sosnowski)
667
+
668
+ * win,fs: retry if uv_fs_rename fails (Bartosz Sosnowski)
669
+
670
+ * darwin: speed up uv_set_process_title() (Ben Noordhuis)
671
+
672
+ * aix: fix race in uv_get_process_title() (Gireesh Punathil)
673
+
674
+ * win: support more fine-grained windows hiding (Bartosz Sosnowski)
675
+
676
+
677
+ 2018.10.09, Version 1.23.2 (Stable), 34c12788d2e7308f3ac506c0abcbf74c0d6abd20
678
+
679
+ Changes since version 1.23.1:
680
+
681
+ * unix: return 0 retrieving rss on cygwin (cjihrig)
682
+
683
+ * unix: initialize uv_interface_address_t.phys_addr (cjihrig)
684
+
685
+ * test: handle uv_os_setpriority() windows edge case (cjihrig)
686
+
687
+ * tty, win: fix read stop for raw mode (Bartosz Sosnowski)
688
+
689
+ * Revert "Revert "unix,fs: fix for potential partial reads/writes"" (Jameson
690
+ Nash)
691
+
692
+ * unix,readv: always permit partial reads to return (Jameson Nash)
693
+
694
+ * win,tty: fix uv_tty_close() (Bartosz Sosnowski)
695
+
696
+ * doc: remove extraneous "on" (Ben Noordhuis)
697
+
698
+ * unix,win: fix threadpool race condition (Anna Henningsen)
699
+
700
+ * unix: rework thread barrier implementation (Ben Noordhuis)
701
+
702
+ * aix: switch to libuv's own thread barrier impl (Ben Noordhuis)
703
+
704
+ * unix: signal done to last thread barrier waiter (Ben Noordhuis)
705
+
706
+ * test: add uv_barrier_wait serial thread test (Ali Ijaz Sheikh)
707
+
708
+ * unix: optimize uv_fs_readlink() memory allocation (Ben Noordhuis)
709
+
710
+ * win: remove req.c and other cleanup (Carlo Marcelo Arenas Belón)
711
+
712
+ * aix: don't EISDIR on read from directory fd (Ben Noordhuis)
713
+
714
+
715
+ 2018.09.22, Version 1.23.1 (Stable), d2282b3d67821dc53c907c2155fa8c5c6ce25180
716
+
717
+ Changes since version 1.23.0:
718
+
719
+ * unix,win: limit concurrent DNS calls to nthreads/2 (Anna Henningsen)
720
+
721
+ * doc: add addaleax to maintainers (Anna Henningsen)
722
+
723
+ * doc: add missing slash in stream.rst (Emil Bay)
724
+
725
+ * unix,fs: use utimes & friends for uv_fs_utime (Jeremiah Senkpiel)
726
+
727
+ * unix,fs: remove linux fallback from utimesat() (Jeremiah Senkpiel)
728
+
729
+ * unix,fs: remove uv__utimesat() syscall fallback (Jeremiah Senkpiel)
730
+
731
+ * doc: fix argument name in tcp.rts (Emil Bay)
732
+
733
+ * doc: notes on running tests, benchmarks, tools (Jamie Davis)
734
+
735
+ * linux: remove epoll syscall wrappers (Ben Noordhuis)
736
+
737
+ * linux: drop code path for epoll_pwait-less kernels (Ben Noordhuis)
738
+
739
+ * Partially revert "win,code: remove GetQueuedCompletionStatus-based poller"
740
+ (Jameson Nash)
741
+
742
+ * build: add compile for android arm64/x86/x86-64 (Andy Zhang)
743
+
744
+ * doc: clarify that some remarks apply to windows (Bert Belder)
745
+
746
+ * test: fix compiler warnings (Jamie Davis)
747
+
748
+ * ibmi: return 0 from uv_resident_set_memory() (dmabupt)
749
+
750
+ * win: fix uv_udp_recv_start() error translation (Ryan Liptak)
751
+
752
+ * win,doc: improve uv_os_setpriority() documentation (Bartosz Sosnowski)
753
+
754
+ * test: increase upper bound in condvar_5 (Jamie Davis)
755
+
756
+ * win,tty: remove deadcode (Jameson Nash)
757
+
758
+ * stream: autodetect direction (Jameson Nash)
759
+
760
+
761
+ 2018.08.18, Version 1.23.0 (Stable), 7ebb26225f2eaae6db22f4ef34ce76fa16ff89ec
762
+
763
+ Changes since version 1.22.0:
764
+
765
+ * win,pipe: restore compatibility with the old IPC framing protocol (Bert
766
+ Belder)
767
+
768
+ * fs: add uv_open_osfhandle (Bartosz Sosnowski)
769
+
770
+ * doc: update Visual C++ Build Tools URL (Michał Kozakiewicz)
771
+
772
+ * unix: loop starvation on successful write complete (jBarz)
773
+
774
+ * win: add uv__getnameinfo_work() error handling (A. Hauptmann)
775
+
776
+ * win: return UV_ENOMEM from uv_loop_init() (cjihrig)
777
+
778
+ * unix,win: add uv_os_{get,set}priority() (cjihrig)
779
+
780
+ * test: fix warning in test-tcp-open (Santiago Gimeno)
781
+
782
+
783
+ 2018.07.11, Version 1.22.0 (Stable), 8568f78a777d79d35eb7d6994617267b9fb33967
784
+
785
+ Changes since version 1.21.0:
786
+
787
+ * unix: remove checksparse.sh (Ben Noordhuis)
788
+
789
+ * win: fix mingw build error (Ben Noordhuis)
790
+
791
+ * win: fix -Wunused-function warnings in thread.c (Ben Noordhuis)
792
+
793
+ * unix,win: merge timers implementation (Ben Noordhuis)
794
+
795
+ * win: fix pointer type in pipe.c (Ben Noordhuis)
796
+
797
+ * win: fixing build for older MSVC compilers (Michael Fero)
798
+
799
+ * zos: clear poll events on every iteration (jBarz)
800
+
801
+ * zos: write-protect message queue (jBarz)
802
+
803
+ * zos: use correct pointer type in strnlen (jBarz)
804
+
805
+ * unix,win: merge handle flags (Ben Noordhuis)
806
+
807
+ * doc: update Imran Iqbal's GitHub handle (cjihrig)
808
+
809
+ * src: add new error apis to prevent memory leaks (Shelley Vohr)
810
+
811
+ * test: make test-condvar call uv_cond_wait (Jamie Davis)
812
+
813
+ * fs: change position of uv_fs_lchown (Ujjwal Sharma)
814
+
815
+
816
+ 2018.06.23, Version 1.21.0 (Stable), e4983a9b0c152932f7553ff4a9ff189d2314cdcb
817
+
818
+ Changes since version 1.20.3:
819
+
820
+ * unix,windows: map EFTYPE errno (cjihrig)
821
+
822
+ * win: perform case insensitive PATH= comparison (cjihrig)
823
+
824
+ * win, fs: uv_fs_fchmod support for -A files (Bartosz Sosnowski)
825
+
826
+ * src,lib: fix comments (Tobias Nießen)
827
+
828
+ * win,process: allow child pipe handles to be opened in overlapped mode (Björn
829
+ Linse)
830
+
831
+ * src,test: fix idiosyncratic comment style (Bert Belder)
832
+
833
+ * test: fs_fchmod_archive_readonly must return a value (Bert Belder)
834
+
835
+ * win,pipe: fix incorrect error code returned from uv_pipe_write_impl() (Bert
836
+ Belder)
837
+
838
+ * win,pipe: properly set uv_write_t.send_handle in uv_write2() (Bert Belder)
839
+
840
+ * test: add vectored uv_write() ping-pong tests (Bert Belder)
841
+
842
+ * win,pipe: support vectored uv_write() calls (Bert Belder)
843
+
844
+ * win,pipe: refactor pipe read cancellation logic (Bert Belder)
845
+
846
+ * test: improve output from IPC test helpers (Bert Belder)
847
+
848
+ * test: add test for IPC deadlock on Windows (
849
+
850
+ * win,pipe: fix IPC pipe deadlock (Bert Belder)
851
+
852
+ * unix: catch some cases of watching fd twice (Ben Noordhuis)
853
+
854
+ * test: use custom timeout for getaddrinfo_fail_sync (Ben Noordhuis)
855
+
856
+ * Revert "win: add Windows XP support to uv_if_indextoname()" (Bert Belder)
857
+
858
+ * win,thread: remove fallback uv_cond implementation (Bert Belder)
859
+
860
+ * src,test: s/olny/only (cjihrig)
861
+
862
+ * unix: close signal pipe fds on unload (Ben Noordhuis)
863
+
864
+ * win: allow setting udp socket options before bind (cjihrig)
865
+
866
+ * unix: return UV_ENOTSUP on FICLONE_FORCE failure (cjihrig)
867
+
868
+ * win,pipe: remove unreferenced local variable (Bert Belder)
869
+
870
+ * win,code: remove GetQueuedCompletionStatus-based poller (Bert Belder)
871
+
872
+ * win: remove the remaining dynamic kernel32 imports (Bert Belder)
873
+
874
+ * test: speedup process-title-threadsafe on macOS (cjihrig)
875
+
876
+ * core: move all include files except uv.h to uv/ (Saúl Ibarra Corretgé)
877
+
878
+ * win: move stdint-msvc2008.h to include/uv/ (Ben Noordhuis)
879
+
880
+ * build: fix cygwin install (Ben Noordhuis)
881
+
882
+ * build,win: remove MinGW Makefile (Saúl Ibarra Corretgé)
883
+
884
+ * build: add a cmake build file (Ben Noordhuis)
885
+
886
+ * build: add test suite option to cmake build (Ben Noordhuis)
887
+
888
+ * unix: set errno in uv_fs_copyfile() (cjihrig)
889
+
890
+ * samples: fix inconsistency in parse_opts vs usage (zyxwvu Shi)
891
+
892
+ * linux: handle exclusive POLLHUP with UV_DISCONNECT (Brad King)
893
+
894
+ * include: declare uv_cpu_times_s in higher scope (Peter Johnson)
895
+
896
+ * doc: add uv_fs_fsync() AIX limitations (jBarz)
897
+
898
+ * unix,win: add uv_fs_lchown() (Paolo Greppi)
899
+
900
+ * unix: disable clang variable length array warning (Peter Johnson)
901
+
902
+ * doc: document uv_pipe_t::ipc (Ed Schouten)
903
+
904
+ * doc: undocument uv_req_type's UV_REQ_TYPE_PRIVATE (Ed Schouten)
905
+
906
+ * doc: document UV_*_MAP() macros (Ed Schouten)
907
+
908
+ * win: remove use of min() macro in pipe.c (Peter Johnson)
909
+
910
+ * doc: add jbarz as maintainer (
911
+
912
+
913
+ 2018.05.08, Version 1.20.3 (Stable), 8cfd67e59195251dff793ee47c185c9d6a8f3818
914
+
915
+ Changes since version 1.20.2:
916
+
917
+ * win: add Windows XP support to uv_if_indextoname() (ssrlive)
918
+
919
+ * win: fix `'floor' undefined` compiler warning (ssrlive)
920
+
921
+ * win, pipe: stop read for overlapped pipe (Bartosz Sosnowski)
922
+
923
+ * build: fix utf-8 name of copyright holder (Jérémy Lal)
924
+
925
+ * zos: initialize pollfd revents (jBarz)
926
+
927
+ * zos,doc: add system V message queue note (jBarz)
928
+
929
+ * linux: don't use uv__nonblock_ioctl() on sparc (Ben Noordhuis)
930
+
931
+
932
+ 2018.04.23, Version 1.20.2 (Stable), c51fd3f66bbb386a1efdeba6812789f35a372d1e
933
+
934
+ Changes since version 1.20.1:
935
+
936
+ * zos: use custom semaphore (jBarz)
937
+
938
+ * win: fix registry API error handling (Kyle Farnung)
939
+
940
+ * build: add support for 64-bit AIX (Richard Lau)
941
+
942
+ * aix: guard STATIC_ASSERT for glibc work around (Richard Lau)
943
+
944
+
945
+ 2018.04.19, Version 1.20.1 (Stable), 36ac2fc8edfd5ff3e9be529be1d4a3f0d5364e94
946
+
947
+ Changes since version 1.20.0:
948
+
949
+ * doc,fs: improve documentation (Bob Burger)
950
+
951
+ * win: return a floored double from uv_uptime() (Refael Ackermann)
952
+
953
+ * doc: clarify platform specific pipe naming (Thomas Versteeg)
954
+
955
+ * unix: fix uv_pipe_chmod() on macOS (zzzjim)
956
+
957
+ * unix: work around glibc semaphore race condition (Anna Henningsen)
958
+
959
+ * tcp,openbsd: disable Unix TCP check for IPV6_ONLY (Alex Arslan)
960
+
961
+ * test,openbsd: use RETURN_SKIP in UDP IPv6 tests (Alex Arslan)
962
+
963
+ * test,openbsd: fix multicast test (Alex Arslan)
964
+
965
+ * Revert "win, fs: use FILE_WRITE_ATTRIBUTES when opening files" (cjihrig)
966
+
967
+
968
+ 2018.04.03, Version 1.20.0 (Stable), 0012178ee2b04d9e4a2c66c27cf8891ad8325ceb
969
+
970
+ Changes since version 1.19.2:
971
+
972
+ * unix,spawn: respect user stdio flags for new pipe (Jameson Nash)
973
+
974
+ * Revert "Revert "unix,tcp: avoid marking server sockets connected"" (Jameson
975
+ Nash)
976
+
977
+ * req: revisions to uv_req_t handling (Jameson Nash)
978
+
979
+ * win: remove unnecessary initialization (cjihrig)
980
+
981
+ * win: update uv_os_homedir() to use uv_os_getenv() (cjihrig)
982
+
983
+ * test: fix tcp_oob test flakiness (Santiago Gimeno)
984
+
985
+ * posix: fix uv__pollfds_del() for invalidated fd's (Jesse Gorzinski)
986
+
987
+ * doc: README: add note on installing gyp (Jamie Davis)
988
+
989
+ * unix: refactor uv_os_homedir to use uv_os_getenv (Santiago Gimeno)
990
+
991
+ * unix: fix several instances of lost errno (Michael Kilburn)
992
+
993
+ * win,tty: update several TODO comments (Ruslan Bekenev)
994
+
995
+ * unix: add UV_FS_COPYFILE_FICLONE support (cjihrig)
996
+
997
+ * test: fix connect_unspecified (Santiago Gimeno)
998
+
999
+ * unix,win: add UV_FS_COPYFILE_FICLONE_FORCE support (cjihrig)
1000
+
1001
+ * win: use long directory name for handle->dirw (Nicholas Vavilov)
1002
+
1003
+ * build: build with -D_FILE_OFFSET_BITS=64 again (Ben Noordhuis)
1004
+
1005
+ * win, fs: fix uv_fs_unlink for +R -A files (Bartosz Sosnowski)
1006
+
1007
+ * win, fs: use FILE_WRITE_ATTRIBUTES when opening files (Bartosz Sosnowski)
1008
+
1009
+ * unix: use __PASE__ on IBM i platforms (Jesse Gorzinski)
1010
+
1011
+ * test,freebsd: fix flaky poll tests (Santiago Gimeno)
1012
+
1013
+ * test: increase connection timeout to 1 second (jBarz)
1014
+
1015
+ * win,tcp: handle canceled connect with ECANCELED (Jameson Nash)
1016
+
1017
+
1018
+ 2018.02.22, Version 1.19.2 (Stable), c5afc37e2a8a70d8ab0da8dac10b77ba78c0488c
1019
+
1020
+ Changes since version 1.19.1:
1021
+
1022
+ * test: fix incorrect asserts (cjihrig)
1023
+
1024
+ * test: fix a typo in test-fork.c (Felix Yan)
1025
+
1026
+ * build: remove long-obsolete gyp workarounds (Ben Noordhuis)
1027
+
1028
+ * build: split off tests into separate gyp file (Ben Noordhuis)
1029
+
1030
+ * test: check uv_cond_timedwait more carefully (Jamie Davis)
1031
+
1032
+ * include,src: introduce UV__ERR() macro (Mason X)
1033
+
1034
+ * build: add url field to libuv.pc (Ben Noordhuis)
1035
+
1036
+ * doc: mark IBM i as Tier 3 support (Jesse Gorzinski)
1037
+
1038
+ * win,build: correct C2059 errors (Michael Fero)
1039
+
1040
+ * zos: fix timeout for condition variable (jBarz)
1041
+
1042
+ * win: CREATE_NO_WINDOW when stdio is not inherited (Nick Logan)
1043
+
1044
+ * build: fix commmon.gypi comment (Ryuichi KAWAMATA)
1045
+
1046
+ * doc: document uv_timer_start() on an active timer (Vladimír Čunát)
1047
+
1048
+ * doc: add note about handle movability (Bartosz Sosnowski)
1049
+
1050
+ * doc: fix syntax error in loop documentation (Bartosz Sosnowski)
1051
+
1052
+ * osx,stream: retry sending handle on EMSGSIZE error (Santiago Gimeno)
1053
+
1054
+ * unix: delay fs req register until after validation (cjihrig)
1055
+
1056
+ * test: add tests for bad inputs (Joyee Cheung)
1057
+
1058
+ * unix,win: ensure req->bufs is freed (cjihrig)
1059
+
1060
+ * test: add additional fs memory management checks (cjihrig)
1061
+
1062
+
1063
+ 2018.01.20, Version 1.19.1 (Stable), 8202d1751196c2374ad370f7f3779daef89befae
1064
+
1065
+ Changes since version 1.19.0:
1066
+
1067
+ * Revert "unix,tcp: avoid marking server sockets connected" (Ben Noordhuis)
1068
+
1069
+ * Revert "unix,fs: fix for potential partial reads/writes" (Ben Noordhuis)
1070
+
1071
+ * Revert "win: use RemoveDirectoryW() instead of _wmrmdir()" (Ben Noordhuis)
1072
+
1073
+ * cygwin: fix compilation of ifaddrs impl (Brad King)
1074
+
1075
+
1076
+ 2018.01.18, Version 1.19.0 (Stable), effbb7c9d29090b2e085a40867f8cdfa916a66df
1077
+
1078
+ Changes since version 1.18.0:
1079
+
1080
+ * core: add getter/setter functions for easier ABI compat (Anna Henningsen)
1081
+
1082
+ * unix: make get(set)_process_title MT-safe (Matt Harrison)
1083
+
1084
+ * unix,win: wait for threads to start (Ben Noordhuis)
1085
+
1086
+ * test: add threadpool init/teardown test (Bartosz Sosnowski)
1087
+
1088
+ * win, process: uv_kill improvements (Bartosz Sosnowski)
1089
+
1090
+ * win: set _WIN32_WINNT to 0x0600 (cjihrig)
1091
+
1092
+ * zos: implement uv_fs_event* functions (jBarz)
1093
+
1094
+ * unix,tcp: avoid marking server sockets connected (Jameson Nash)
1095
+
1096
+ * doc: mark Windows 7 as Tier 1 support (Bartosz Sosnowski)
1097
+
1098
+ * win: map 0.0.0.0 and :: addresses to localhost (Bartosz Sosnowski)
1099
+
1100
+ * build: install libuv.pc unconditionally (Ben Noordhuis)
1101
+
1102
+ * test: remove custom timeout for thread test on ppc (Ben Noordhuis)
1103
+
1104
+ * test: allow multicast not permitted status (Jérémy Lal)
1105
+
1106
+ * test: allow net unreachable status in udp test (Ben Noordhuis)
1107
+
1108
+ * unix: use SA_RESTART when setting our sighandler (Brad King)
1109
+
1110
+ * unix,fs: fix for potential partial reads/writes (Ben Wijen)
1111
+
1112
+ * win,build: do not build executable installer for dll (Bert Belder)
1113
+
1114
+ * win: allow directory symlinks to be created in a non-elevated context (Bert
1115
+ Belder)
1116
+
1117
+ * zos,test: accept SIGKILL for flaky test (jBarz)
1118
+
1119
+ * win: use RemoveDirectoryW() instead of _wmrmdir() (Ben Noordhuis)
1120
+
1121
+ * unix: fix uv_cpu_info() error on FreeBSD (elephantp)
1122
+
1123
+ * zos,test: decrease pings to avoid timeout (jBarz)
1124
+
1125
+
1126
+ 2017.12.02, Version 1.18.0 (Stable), 1489c98b7fc17f1702821a269eb0c5e730c5c813
1127
+
1128
+ Changes since version 1.17.0:
1129
+
1130
+ * aix: fix -Wmaybe-uninitialized warning (cjihrig)
1131
+
1132
+ * doc: remove note about SIGWINCH on Windows (Bartosz Sosnowski)
1133
+
1134
+ * Revert "unix,win: wait for threads to start" (Ben Noordhuis)
1135
+
1136
+ * unix,win: add uv_os_getpid() (Bartosz Sosnowski)
1137
+
1138
+ * unix: remove incorrect assertion in uv_shutdown() (Jameson Nash)
1139
+
1140
+ * doc: fix IRC URL in CONTRIBUTING.md (Matt Harrison)
1141
+
1142
+
1143
+ 2017.11.25, Version 1.17.0 (Stable), 1344d2bb82e195d0eafc0b40ba103f18dfd04cc5
1144
+
1145
+ Changes since version 1.16.1:
1146
+
1147
+ * unix: avoid malloc() call in uv_spawn() (Ben Noordhuis)
1148
+
1149
+ * doc: clarify the description of uv_loop_alive() (Ed Schouten)
1150
+
1151
+ * win: map UV_FS_O_EXLOCK to a share mode of 0 (Joran Dirk Greef)
1152
+
1153
+ * win: fix build on case-sensitive file systems (Ben Noordhuis)
1154
+
1155
+ * win: fix test runner build with mingw64 (Ben Noordhuis)
1156
+
1157
+ * win: remove unused variable in test/test-fs.c (Ben Noordhuis)
1158
+
1159
+ * zos: add strnlen() implementation (jBarz)
1160
+
1161
+ * unix: keep track of bound sockets sent via spawn (jBarz)
1162
+
1163
+ * unix,win: wait for threads to start (Ben Noordhuis)
1164
+
1165
+ * test: add threadpool init/teardown test (Bartosz Sosnowski)
1166
+
1167
+ * test: avoid malloc() in threadpool test (Ben Noordhuis)
1168
+
1169
+ * test: lower number of tasks in threadpool test (Ben Noordhuis)
1170
+
1171
+ * win: issue memory barrier in uv_thread_join() (Ben Noordhuis)
1172
+
1173
+ * ibmi: add support for new platform (Xu Meng)
1174
+
1175
+ * test: fix test-spawn compilation (Bartosz Sosnowski)
1176
+
1177
+
1178
+ 2017.11.11, Version 1.16.1 (Stable), 4056fbe46493ef87237e307e0025e551db875e13
1179
+
1180
+ Changes since version 1.16.0:
1181
+
1182
+ * unix: move net/if.h include (cjihrig)
1183
+
1184
+ * win: fix undeclared NDIS_IF_MAX_STRING_SIZE (Nick Logan)
1185
+
1186
+
1187
+ 2017.11.07, Version 1.16.0 (Stable), d68779f0ea742918f653b9c20237460271c39aeb
1188
+
1189
+ Changes since version 1.15.0:
1190
+
1191
+ * win: change st_blksize from `2048` to `4096` (Joran Dirk Greef)
1192
+
1193
+ * unix,win: add fs open flags, map O_DIRECT|O_DSYNC (Joran Dirk Greef)
1194
+
1195
+ * win, fs: fix non-symlink reparse points (Wade Brainerd)
1196
+
1197
+ * test: fix -Wstrict-prototypes warnings (Ben Noordhuis)
1198
+
1199
+ * unix, windows: map ENOTTY errno (Ben Noordhuis)
1200
+
1201
+ * unix: fall back to fsync() if F_FULLFSYNC fails (Joran Dirk Greef)
1202
+
1203
+ * unix: do not close invalid kqueue fd after fork (jBarz)
1204
+
1205
+ * zos: reset epoll data after fork (jBarz)
1206
+
1207
+ * zos: skip fork_threadpool_queue_work_simple (jBarz)
1208
+
1209
+ * test: keep platform_output as first test (Bartosz Sosnowski)
1210
+
1211
+ * win: fix non-English dlopen error message (Bartosz Sosnowski)
1212
+
1213
+ * unix,win: add uv_os_getppid() (cjihrig)
1214
+
1215
+ * test: fix const qualification compiler warning (Ben Noordhuis)
1216
+
1217
+ * doc: mark uv_default_loop() as not thread safe (rayrase)
1218
+
1219
+ * win, pipe: null-initialize stream->shutdown_req (Jameson Nash)
1220
+
1221
+ * tty, win: get SetWinEventHook pointer at startup (Bartosz Sosnowski)
1222
+
1223
+ * test: no extra new line in skipped test output (Bartosz Sosnowski)
1224
+
1225
+ * pipe: allow access from other users (Bartosz Sosnowski)
1226
+
1227
+ * unix,win: add uv_if_{indextoname,indextoiid} (Pekka Nikander)
1228
+
1229
+
1230
+ 2017.10.03, Version 1.15.0 (Stable), 8b69ce1419d2958011d415a636810705c36c2cc2
1231
+
1232
+ Changes since version 1.14.1:
1233
+
1234
+ * unix: limit uv__has_forked_with_cfrunloop to macOS (Kamil Rytarowski)
1235
+
1236
+ * win: fix buffer size in uv__getpwuid_r() (tux.uudiin)
1237
+
1238
+ * win,tty: improve SIGWINCH support (Bartosz Sosnowski)
1239
+
1240
+ * unix: use fchmod() in uv_fs_copyfile() (cjihrig)
1241
+
1242
+ * unix: support copying empty files (cjihrig)
1243
+
1244
+ * unix: truncate destination in uv_fs_copyfile() (Nick Logan)
1245
+
1246
+ * win,build: keep cwd when setting build environment (darobs)
1247
+
1248
+ * test: add NetBSD support to test-udp-ipv6.c (Kamil Rytarowski)
1249
+
1250
+ * unix: add NetBSD support in core.c (Kamil Rytarowski)
1251
+
1252
+ * linux: increase thread stack size with musl libc (Ben Noordhuis)
1253
+
1254
+ * netbsd: correct uv_exepath() on NetBSD (Kamil Rytarowski)
1255
+
1256
+ * test: clean up semaphore after use (jBarz)
1257
+
1258
+ * win,build: bump vswhere_usability_wrapper to 2.0.0 (Refael Ackermann)
1259
+
1260
+ * win: let UV_PROCESS_WINDOWS_HIDE hide consoles (cjihrig)
1261
+
1262
+ * zos: lock protect global epoll list in epoll_ctl (jBarz)
1263
+
1264
+ * zos: change platform name to match python (jBarz)
1265
+
1266
+ * android: fix getifaddrs() (Zheng, Lei)
1267
+
1268
+ * netbsd: implement uv__tty_is_slave() (Kamil Rytarowski)
1269
+
1270
+ * zos: fix readlink for mounts with system variables (jBarz)
1271
+
1272
+ * test: sort the tests alphabetically (Sakthipriyan Vairamani)
1273
+
1274
+ * windows: fix compilation warnings (Carlo Marcelo Arenas Belón)
1275
+
1276
+ * build: avoid -fstrict-aliasing compile option (jBarz)
1277
+
1278
+ * win: remove unused variables (Carlo Marcelo Arenas Belón)
1279
+
1280
+ * unix: remove unused variables (Sakthipriyan Vairamani)
1281
+
1282
+ * netbsd: disable poll_bad_fdtype on NetBSD (Kamil Rytarowski)
1283
+
1284
+ * netbsd: use uv__cloexec and uv__nonblock (Kamil Rytarowski)
1285
+
1286
+ * test: fix udp_multicast_join6 on NetBSD (Kamil Rytarowski)
1287
+
1288
+ * unix,win: add uv_mutex_init_recursive() (Scott Parker)
1289
+
1290
+ * netbsd: do not exclude IPv6 functionality (Kamil Rytarowski)
1291
+
1292
+ * fsevents: watch files with fsevents on macos 10.7+ (Ben Noordhuis)
1293
+
1294
+ * unix: retry on ENOBUFS in sendmsg(2) (Kamil Rytarowski)
1295
+
1296
+
1297
+ 2017.09.07, Version 1.14.1 (Stable), b0f9fb2a07a5e638b1580fe9a42a356c3ab35f37
1298
+
1299
+ Changes since version 1.14.0:
1300
+
1301
+ * fs, win: add support for user symlinks (Bartosz Sosnowski)
1302
+
1303
+ * cygwin: include uv-posix.h header (Joel Winarske)
1304
+
1305
+ * zos: fix semaphore initialization (jBarz)
1306
+
1307
+ * zos: improve loop_count benchmark performance (jBarz)
1308
+
1309
+ * zos, test: flush out the oob data in callback (jBarz)
1310
+
1311
+ * unix,win: check for bad flags in uv_fs_copyfile() (cjihrig)
1312
+
1313
+ * unix: modify argv[0] when process title is set (Matthew Taylor)
1314
+
1315
+ * unix: don't use req->loop in uv__fs_copyfile() (cjihrig)
1316
+
1317
+ * doc: fix a trivial typo (Vladimír Čunát)
1318
+
1319
+ * android: fix uv_cond_timedwait on API level < 21 (Gergely Nagy)
1320
+
1321
+ * win: add uv__once_init() calls (Bartosz Sosnowski)
1322
+
1323
+ * unix,windows: init all requests in fs calls (cjihrig)
1324
+
1325
+ * unix,windows: return UV_EINVAL on NULL fs reqs (cjihrig)
1326
+
1327
+ * windows: add POST macro to fs functions (cjihrig)
1328
+
1329
+ * unix: handle partial sends in uv_fs_copyfile() (A. Hauptmann)
1330
+
1331
+ * Revert "win, test: fix double close in test runner" (Bartosz Sosnowski)
1332
+
1333
+ * win, test: remove surplus CloseHandle (Bartosz Sosnowski)
1334
+
1335
+
1336
+ 2017.08.17, Version 1.14.0 (Stable), e0d31e9e21870f88277746b6d59cf07b977cdfea
1337
+
1338
+ Changes since version 1.13.1:
1339
+
1340
+ * unix: check for NULL in uv_os_unsetenv for parameter name (André Klitzing)
1341
+
1342
+ * doc: add thread safety warning for process title (Matthew Taylor)
1343
+
1344
+ * unix: always copy process title into local buffer (Matthew Taylor)
1345
+
1346
+ * poll: add support for OOB TCP and GPIO interrupts (CurlyMoo)
1347
+
1348
+ * win,build: fix appveyor properly (Refael Ackermann)
1349
+
1350
+ * win: include filename in dlopen error message (Ben Noordhuis)
1351
+
1352
+ * aix: add netmask, mac address into net interfaces (Gireesh Punathil)
1353
+
1354
+ * unix, windows: map EREMOTEIO errno (Ben Noordhuis)
1355
+
1356
+ * unix: fix wrong MAC of uv_interface_address (XadillaX)
1357
+
1358
+ * win,build: fix building from Windows SDK or VS console (Saúl Ibarra Corretgé)
1359
+
1360
+ * github: fix link to help repo in issue template (Ben Noordhuis)
1361
+
1362
+ * zos: remove nonexistent include from autotools build (Saúl Ibarra Corretgé)
1363
+
1364
+ * misc: remove reference to pthread-fixes.h from LICENSE (Saúl Ibarra Corretgé)
1365
+
1366
+ * docs: fix guide source code example paths (Anticrisis)
1367
+
1368
+ * android: fix compilation with new NDK versions (Saúl Ibarra Corretgé)
1369
+
1370
+ * misc: add android-toolchain to .gitignore (Saúl Ibarra Corretgé)
1371
+
1372
+ * win, fs: support unusual reparse points (Bartosz Sosnowski)
1373
+
1374
+ * android: fix detection of pthread_condattr_setclock (Saúl Ibarra Corretgé)
1375
+
1376
+ * android: remove no longer needed check (Saúl Ibarra Corretgé)
1377
+
1378
+ * doc: update instructions for building on Android (Saúl Ibarra Corretgé)
1379
+
1380
+ * win, process: support semicolons in PATH variable (Bartosz Sosnowski)
1381
+
1382
+ * doc: document uv_async_(init|send) return values (Ben Noordhuis)
1383
+
1384
+ * doc: add Android as a tier 3 supported platform (Saúl Ibarra Corretgé)
1385
+
1386
+ * unix: add missing semicolon (jBarz)
1387
+
1388
+ * win, test: fix double close in test runner (Bartosz Sosnowski)
1389
+
1390
+ * doc: update supported windows version baseline (Ben Noordhuis)
1391
+
1392
+ * test,zos: skip chown root test (jBarz)
1393
+
1394
+ * test,zos: use gid=-1 to test spawn_setgid_fails (jBarz)
1395
+
1396
+ * zos: fix hr timer resolution (jBarz)
1397
+
1398
+ * android: fix blocking recvmsg due to netlink bug (Jacob Segal)
1399
+
1400
+ * zos: read more accurate rss info from RSM (jBarz)
1401
+
1402
+ * win: allow bound/connected socket in uv_tcp_open() (Maciej Szeptuch
1403
+ (Neverous))
1404
+
1405
+ * doc: differentiate SmartOS and SunOS support (cjihrig)
1406
+
1407
+ * unix: make uv_poll_stop() remove fd from pollset (Ben Noordhuis)
1408
+
1409
+ * unix, windows: add basic uv_fs_copyfile() (cjihrig)
1410
+
1411
+
1412
+ 2017.07.07, Version 1.13.1 (Stable), 2bb4b68758f07cd8617838e68c44c125bc567ba6
1413
+
1414
+ Changes since version 1.13.0:
1415
+
1416
+ * Now working on version 1.13.1 (cjihrig)
1417
+
1418
+ * build: workaround AppVeyor quirk (Refael Ackermann)
1419
+
1420
+
1421
+ 2017.07.06, Version 1.13.0 (Stable), 8342fcaab815f33b988c1910ea988f28dfe27edb
1422
+
1423
+ Changes since version 1.12.0:
1424
+
1425
+ * Now working on version 1.12.1 (cjihrig)
1426
+
1427
+ * unix: avoid segfault in uv_get_process_title (Michele Caini)
1428
+
1429
+ * build: add a comma to uv.gyp (Gemini Wen)
1430
+
1431
+ * win: restore file pos after positional read/write (Bartosz Sosnowski)
1432
+
1433
+ * unix,stream: return error on closed handle passing (Santiago Gimeno)
1434
+
1435
+ * unix,benchmark: use fd instead of FILE* after fork (jBarz)
1436
+
1437
+ * zos: avoid compiler warnings (jBarz)
1438
+
1439
+ * win,pipe: race condition canceling readfile thread (Jameson Nash)
1440
+
1441
+ * sunos: filter out non-IPv4/IPv6 interfaces (Sebastian Wiedenroth)
1442
+
1443
+ * sunos: fix cmpxchgi and cmpxchgl type error (Sai Ke WANG)
1444
+
1445
+ * unix: reset signal disposition before execve() (Ben Noordhuis)
1446
+
1447
+ * unix: reset signal mask before execve() (Ben Noordhuis)
1448
+
1449
+ * unix: fix POLLIN assertion on server read (jBarz)
1450
+
1451
+ * zos: use stckf builtin for high-res timer (jBarz)
1452
+
1453
+ * win,udp: implements uv_udp_try_send (Barnabas Gema)
1454
+
1455
+ * win,udp: return UV_EINVAL instead of aborting (Romain Caire)
1456
+
1457
+ * freebsd: replace kvm with sysctl (Robert Ayrapetyan)
1458
+
1459
+ * aix: fix un-initialized pointer field in fs handle (Gireesh Punathil)
1460
+
1461
+ * win,build: support building with VS2017 (Refael Ackermann)
1462
+
1463
+ * doc: add instructions for building on Windows (Refael Ackermann)
1464
+
1465
+ * doc: format README (Refael Ackermann)
1466
+
1467
+
1468
+ 2017.05.31, Version 1.12.0 (Stable), d6ac141ac674657049598c36604f26e031fae917
1469
+
1470
+ Changes since version 1.11.0:
1471
+
1472
+ * Now working on version 1.11.1 (cjihrig)
1473
+
1474
+ * test: fix tests on OpenBSD (Santiago Gimeno)
1475
+
1476
+ * test: fix -Wformat warning (Santiago Gimeno)
1477
+
1478
+ * win,fs: avoid double freeing uv_fs_event_t.dirw (Vladimir Matveev)
1479
+
1480
+ * unix: remove unused code in `uv__io_start` (Fedor Indutny)
1481
+
1482
+ * signal: add uv_signal_start_oneshot method (Santiago Gimeno)
1483
+
1484
+ * unix: factor out reusable POSIX hrtime impl (Brad King)
1485
+
1486
+ * unix,win: add uv_os_{get,set,unset}env() (cjihrig)
1487
+
1488
+ * win: add uv__convert_utf8_to_utf16() (cjihrig)
1489
+
1490
+ * docs: improve UV_ENOBUFS scenario documentation (cjihrig)
1491
+
1492
+ * unix: return UV_EINVAL for NULL env name (jBarz)
1493
+
1494
+ * unix: filter getifaddrs results consistently (Brad King)
1495
+
1496
+ * unix: factor out getifaddrs result filter (Brad King)
1497
+
1498
+ * unix: factor out reusable BSD ifaddrs impl (Brad King)
1499
+
1500
+ * unix: use union to follow strict aliasing rules (jBarz)
1501
+
1502
+ * unix: simplify async watcher dispatch logic (Ben Noordhuis)
1503
+
1504
+ * samples: update timer callback prototype (Ben Noordhuis)
1505
+
1506
+ * unix: make loops and watchers usable after fork() (Jason Madden)
1507
+
1508
+ * win: free uv__loops once empty (cjihrig)
1509
+
1510
+ * tools: add make_dist_html.py script (Ben Noordhuis)
1511
+
1512
+ * win,sunos: stop handle on uv_fs_event_start() err (cjihrig)
1513
+
1514
+ * unix,windows: refactor request init logic (Ben Noordhuis)
1515
+
1516
+ * win: fix memory leak inside uv__pipe_getname (A. Hauptmann)
1517
+
1518
+ * fsevent: support for files without short name (Bartosz Sosnowski)
1519
+
1520
+ * doc: fix multiple doc typos (Jamie Davis)
1521
+
1522
+ * test,osx: fix flaky kill test (Santiago Gimeno)
1523
+
1524
+ * unix: inline uv_pipe_bind() err_bind goto target (cjihrig)
1525
+
1526
+ * unix,test: deadstore fixes (Rasmus Christian Pedersen)
1527
+
1528
+ * win: fix memory leak inside uv_fs_access() (A. Hauptmann)
1529
+
1530
+ * doc: fix docs/src/fs.rst build warning (Daniel Bevenius)
1531
+
1532
+ * doc: minor grammar fix in Installation section (Daniel Bevenius)
1533
+
1534
+ * doc: suggestions for design page (Daniel Bevenius)
1535
+
1536
+ * doc: libuv does not touch uv_loop_t.data (Ben Noordhuis)
1537
+
1538
+ * github: add ISSUE_TEMPLATE.md (Ben Noordhuis)
1539
+
1540
+ * doc: add link to libuv/help to README (Ben Noordhuis)
1541
+
1542
+ * udp: fix fast path in uv_udp_send() on unix (Fedor Indutny)
1543
+
1544
+ * test: add test for uv_udp_send() fix (Trevor Norris)
1545
+
1546
+ * doc: fix documentation for uv_handle_t.type (Daniel Kahn Gillmor)
1547
+
1548
+ * zos: use proper prototype for epoll_init() (Ben Noordhuis)
1549
+
1550
+ * doc: rename docs to "libuv documentation" (Saúl Ibarra Corretgé)
1551
+
1552
+ * doc: update copyright years (Saúl Ibarra Corretgé)
1553
+
1554
+ * doc: move TOC to a dedicated document (Saúl Ibarra Corretgé)
1555
+
1556
+ * doc: move documentation section up (Saúl Ibarra Corretgé)
1557
+
1558
+ * doc: move "upgrading" to a standalone document (Saúl Ibarra Corretgé)
1559
+
1560
+ * doc: add initial version of the User Guide (Saúl Ibarra Corretgé)
1561
+
1562
+ * doc: removed unused file (Saúl Ibarra Corretgé)
1563
+
1564
+ * doc: update guide/about and mention new maintainership (Saúl Ibarra Corretgé)
1565
+
1566
+ * doc: remove licensing note from guide/about (Saúl Ibarra Corretgé)
1567
+
1568
+ * doc: add warning note to user guide (Saúl Ibarra Corretgé)
1569
+
1570
+ * doc: change license to CC BY 4.0 (Saúl Ibarra Corretgé)
1571
+
1572
+ * doc: remove ubvook reference from README (Saúl Ibarra Corretgé)
1573
+
1574
+ * doc: add code samples from uvbook (unadapted) (Saúl Ibarra Corretgé)
1575
+
1576
+ * doc: update supported linux/glibc baseline (Ben Noordhuis)
1577
+
1578
+ * win: avoid leaking pipe handles to child processes (Jameson Nash)
1579
+
1580
+ * win,test: support stdout output larger than 1kb (Bartosz Sosnowski)
1581
+
1582
+ * win: remove __declspec(inline) from atomic op (Keane)
1583
+
1584
+ * test: fix VC++ compilation warning (Rasmus Christian Pedersen)
1585
+
1586
+ * build: add -Wstrict-prototypes (Jameson Nash)
1587
+
1588
+ * zos: implement uv__io_fork, skip fs event tests (jBarz)
1589
+
1590
+ * unix: do not close udp sockets on bind error (Marc Schlaich)
1591
+
1592
+ * unix: remove FSEventStreamFlushSync() call (cjihrig)
1593
+
1594
+ * build,openbsd: remove kvm-related code (James McCoy)
1595
+
1596
+ * test: fix flaky tcp-write-queue-order (Santiago Gimeno)
1597
+
1598
+ * unix,win: add uv_os_gethostname() (cjihrig)
1599
+
1600
+ * zos: increase timeout for tcp_writealot (jBarz)
1601
+
1602
+ * zos: do not inline OOB data by default (jBarz)
1603
+
1604
+ * test: fix -Wstrict-prototypes compiler warnings (Ben Noordhuis)
1605
+
1606
+ * unix: factor out reusable no-proctitle impl (Brad King)
1607
+
1608
+ * test: factor out fsevents skip explanation (Brad King)
1609
+
1610
+ * test: skip fork fsevent cases when lacking support (Brad King)
1611
+
1612
+ * unix: factor out reusable no-fsevents impl (Brad King)
1613
+
1614
+ * unix: factor out reusable sysinfo memory lookup (Brad King)
1615
+
1616
+ * unix: factor out reusable sysinfo loadavg impl (Brad King)
1617
+
1618
+ * unix: factor out reusable procfs exepath impl (Brad King)
1619
+
1620
+ * unix: add a uv__io_poll impl using POSIX poll(2) (Brad King)
1621
+
1622
+ * cygwin: implement support for cygwin and msys2 (Brad King)
1623
+
1624
+ * cygwin: recognize EOF on named pipe closure (Brad King)
1625
+
1626
+ * cygwin: fix uv_pipe_connect report of ENOTSOCK (Brad King)
1627
+
1628
+ * cygwin: disable non-functional ipc handle send (Brad King)
1629
+
1630
+ * test: skip self-connecting tests on cygwin (Brad King)
1631
+
1632
+ * doc: mark uv_loop_fork() as experimental (cjihrig)
1633
+
1634
+ * doc: add bzoz to maintainers (Bartosz Sosnowski)
1635
+
1636
+ * doc: fix memory leak in tcp-echo-server example (Bernardo Ramos)
1637
+
1638
+ * win: make uv__get_osfhandle() public (Juan Cruz Viotti)
1639
+
1640
+ * doc: use valid pipe name in pipe-echo-server (Bernardo Ramos)
1641
+
1642
+
1643
+ 2017.02.02, Version 1.11.0 (Stable), 7452ef4e06a4f99ee26b694c65476401534f2725
1644
+
1645
+ Changes since version 1.10.2:
1646
+
1647
+ * Now working on version 1.10.3 (cjihrig)
1648
+
1649
+ * win: added fcntl.h to uv-win.h (Michele Caini)
1650
+
1651
+ * unix: move function call out of assert (jBarz)
1652
+
1653
+ * fs: cleanup uv__fs_scandir (Santiago Gimeno)
1654
+
1655
+ * fs: fix crash in uv_fs_scandir_next (muflub)
1656
+
1657
+ * win,signal: fix potential deadlock (Bartosz Sosnowski)
1658
+
1659
+ * unix: use async-signal safe functions between fork and exec (jBarz)
1660
+
1661
+ * sunos: fix SUNOS_NO_IFADDRS build (Ben Noordhuis)
1662
+
1663
+ * zos: make platform functional (John Barboza)
1664
+
1665
+ * doc: add repitition qualifier to version regexs (Daniel Bevenius)
1666
+
1667
+ * zos: use gyp OS label "os390" on z/OS (John Barboza)
1668
+
1669
+ * aix: enable uv_get/set_process_title (Howard Hellyer)
1670
+
1671
+ * zos: use built-in proctitle implementation (John Barboza)
1672
+
1673
+ * Revert "darwin: use clock_gettime in macOS 10.12" (Chris Araman)
1674
+
1675
+ * win,test: don't write uninitialized buffer to tty (Bert Belder)
1676
+
1677
+ * win: define ERROR_ELEVATION_REQUIRED for MinGW (Richard Lau)
1678
+
1679
+ * aix: re-enable fs watch facility (Gireesh Punathil)
1680
+
1681
+
1682
+ 2017.01.10, Version 1.10.2 (Stable), cb9f579a454b8db592030ffa274ae58df78dbe20
1683
+
1684
+ Changes since version 1.10.1:
1685
+
1686
+ * Now working on version 1.10.2 (cjihrig)
1687
+
1688
+ * darwin: fix fsync and fdatasync (Joran Dirk Greef)
1689
+
1690
+ * Revert "Revert "win,tty: add support for ANSI codes in win10 v1511""
1691
+ (Santiago Gimeno)
1692
+
1693
+ * win,tty: fix MultiByteToWideChar output buffer (Santiago Gimeno)
1694
+
1695
+ * win: remove dead code related to BACKUP_SEMANTICS (Sam Roberts)
1696
+
1697
+ * win: fix comment in quote_cmd_arg (Eric Sciple)
1698
+
1699
+ * darwin: use clock_gettime in macOS 10.12 (Saúl Ibarra Corretgé)
1700
+
1701
+ * win, tty: fix crash on restarting with pending data (Nicholas Vavilov)
1702
+
1703
+ * fs: fix uv__to_stat on BSD platforms (Santiago Gimeno)
1704
+
1705
+ * win: map ERROR_ELEVATION_REQUIRED to UV_EACCES (Richard Lau)
1706
+
1707
+ * win: fix free() on bad input in uv_getaddrinfo() (Ben Noordhuis)
1708
+
1709
+
1710
+ 2016.11.17, Version 1.10.1 (Stable), 2e49e332bdede6db7cf17fa784a902e8386d5d86
1711
+
1712
+ Changes since version 1.10.0:
1713
+
1714
+ * Now working on version 1.10.1 (cjihrig)
1715
+
1716
+ * win: fix anonymous union syntax (Brad King)
1717
+
1718
+ * unix: use uv__is_closing everywhere (Santiago Gimeno)
1719
+
1720
+ * win: add missing break statement (cjihrig)
1721
+
1722
+ * doc: fix wrong man page link for uv_fs_lstat() (Michele Caini)
1723
+
1724
+ * win, tty: handle empty buffer in uv_tty_write_bufs (Hitesh Kanwathirtha)
1725
+
1726
+ * doc: add cjihrig alternative GPG ID (cjihrig)
1727
+
1728
+ * Revert "win,tty: add support for ANSI codes in win10 v1511" (Ben Noordhuis)
1729
+
1730
+
1731
+ 2016.10.25, Version 1.10.0 (Stable), c8a373c729b4c9392e0e14fc53cd6b67b3051ab9
1732
+
1733
+ Changes since version 1.9.1:
1734
+
1735
+ * Now working on version 1.9.2 (Saúl Ibarra Corretgé)
1736
+
1737
+ * doc: add cjihrig GPG ID (cjihrig)
1738
+
1739
+ * win,build: fix compilation on old Windows / MSVC (Saúl Ibarra Corretgé)
1740
+
1741
+ * darwin: fix setting fd to non-blocking in select(() trick (Saúl Ibarra
1742
+ Corretgé)
1743
+
1744
+ * unix: allow nesting of kqueue fds in uv_poll_start (Ben Noordhuis)
1745
+
1746
+ * doc: fix generation the first time livehtml runs (Saúl Ibarra Corretgé)
1747
+
1748
+ * test: fix test_close_accept flakiness on Centos5 (Santiago Gimeno)
1749
+
1750
+ * license: libuv is no longer a Node project (Saúl Ibarra Corretgé)
1751
+
1752
+ * license: add license text we've been using for a while (Saúl Ibarra Corretgé)
1753
+
1754
+ * doc: add licensing information to README (Saúl Ibarra Corretgé)
1755
+
1756
+ * win,pipe: fixed formatting, DWORD is long unsigned (Miodrag Milanovic)
1757
+
1758
+ * win: support sub-second precision in uv_fs_futimes() (Jason Ginchereau)
1759
+
1760
+ * unix: ignore EINPROGRESS in uv__close (Saúl Ibarra Corretgé)
1761
+
1762
+ * doc: add Imran Iqbal (iWuzHere) to maintainers (Imran Iqbal)
1763
+
1764
+ * doc: update docs with AIX related information (Imran Iqbal)
1765
+
1766
+ * test: silence build warnings (Kári Tristan Helgason)
1767
+
1768
+ * doc: add iWuzHere GPG ID (Imran Iqbal)
1769
+
1770
+ * linux-core: fix uv_get_total/free_memory on uclibc (Nicolas Cavallari)
1771
+
1772
+ * build: fix build on DragonFly (Michael Neumann)
1773
+
1774
+ * unix: correctly detect named pipes on DragonFly (Michael Neumann)
1775
+
1776
+ * test: make tap output the default (Ben Noordhuis)
1777
+
1778
+ * test: don't dump output for skipped tests (Ben Noordhuis)
1779
+
1780
+ * test: improve formatting of diagnostic messages (Ben Noordhuis)
1781
+
1782
+ * test: remove unused RETURN_TODO macro (Ben Noordhuis)
1783
+
1784
+ * doc: fix stream typos (Pierre-Marie de Rodat)
1785
+
1786
+ * doc: update coding style link (Imran Iqbal)
1787
+
1788
+ * unix,fs: use uint64_t instead of unsigned long (Imran Iqbal)
1789
+
1790
+ * build: check for warnings for -fvisibility=hidden (Imran Iqbal)
1791
+
1792
+ * unix: remove unneeded TODO note (Saúl Ibarra Corretgé)
1793
+
1794
+ * test: skip tty_pty test if pty is not available (Luca Bruno)
1795
+
1796
+ * sunos: set phys_addr of interface_address using ARP (Brian Maher)
1797
+
1798
+ * doc: clarify callbacks won't be called in error case (Saúl Ibarra Corretgé)
1799
+
1800
+ * unix: don't convert stat buffer when syscall fails (Ben Noordhuis)
1801
+
1802
+ * win: compare entire filename in watch events (cjihrig)
1803
+
1804
+ * doc: add a note on safe reuse of uv_write_t (neevek)
1805
+
1806
+ * linux: fix potential event loop stall (Ben Noordhuis)
1807
+
1808
+ * unix,win: make uv_get_process_title() stricter (cjihrig)
1809
+
1810
+ * test: close server before initiating new connection (John Barboza)
1811
+
1812
+ * test: account for multiple handles in one ipc read (John Barboza)
1813
+
1814
+ * unix: fix errno and retval conflict (liuxiaobo)
1815
+
1816
+ * doc: add missing entry in uv_fs_type enum (Michele Caini)
1817
+
1818
+ * unix: preserve loop->data across loop init/done (Ben Noordhuis)
1819
+
1820
+ * win: return UV_EINVAL on bad uv_tty_mode mode arg (Ben Noordhuis)
1821
+
1822
+ * win: simplify memory copy logic in fs.c (Ben Noordhuis)
1823
+
1824
+ * win: fix compilation on mingw (Bartosz Sosnowski)
1825
+
1826
+ * win: ensure 32-bit printf precision (Matej Knopp)
1827
+
1828
+ * darwin: handle EINTR in /dev/tty workaround (Ben Noordhuis)
1829
+
1830
+ * test: fix OOB buffer access (Saúl Ibarra Corretgé)
1831
+
1832
+ * test: don't close CRT fd handed off to uv_pipe_t (Saúl Ibarra Corretgé)
1833
+
1834
+ * test: fix android build error. (sunjin.lee)
1835
+
1836
+ * win: evaluate timers when system wakes up (Bartosz Sosnowski)
1837
+
1838
+ * doc: add supported platforms description (Saúl Ibarra Corretgé)
1839
+
1840
+ * win: fix lstat reparse point without link data (Jason Ginchereau)
1841
+
1842
+ * unix,win: make on_alloc_cb failures more resilient (Saúl Ibarra Corretgé)
1843
+
1844
+ * zos: add support for new platform (John Barboza)
1845
+
1846
+ * test: make tcp_close_while_connecting more resilient (Saúl Ibarra Corretgé)
1847
+
1848
+ * build: use '${prefix}' for pkg-config 'exec_prefix' (Matt Clarkson)
1849
+
1850
+ * build: GNU/kFreeBSD support (Jeffrey Clark)
1851
+
1852
+ * zos: use PLO instruction for atomic operations (John Barboza)
1853
+
1854
+ * zos: use pthread helper functions (John Barboza)
1855
+
1856
+ * zos: implement uv__fs_futime (John Barboza)
1857
+
1858
+ * unix: expand range of values for usleep (John Barboza)
1859
+
1860
+ * zos: track unbound handles and bind before listen (John Barboza)
1861
+
1862
+ * test: improve tap output on test failures (Santiago Gimeno)
1863
+
1864
+ * test: refactor fs_event_close_in_callback (Julien Gilli)
1865
+
1866
+ * zos: implement uv__io_check_fd (John Barboza)
1867
+
1868
+ * unix: unneccessary use const qualifier in container_of (John Barboza)
1869
+
1870
+ * win,tty: add support for ANSI codes in win10 v1511 (Imran Iqbal)
1871
+
1872
+ * doc: add santigimeno to maintainers (Santiago Gimeno)
1873
+
1874
+ * win: fix typo in type name (Saúl Ibarra Corretgé)
1875
+
1876
+ * unix: always define pthread barrier fallback pad (Saúl Ibarra Corretgé)
1877
+
1878
+ * test: use RETURN_SKIP in spawn_setuid_setgid test (Santiago Gimeno)
1879
+
1880
+ * win: add disk read/write count to uv_getrusage (Imran Iqbal)
1881
+
1882
+ * doc: document uv_fs_realpath caveats (Saúl Ibarra Corretgé)
1883
+
1884
+ * test: improve spawn_setuid_setgid test (Santiago Gimeno)
1885
+
1886
+ * test: fix building pty test on Android (Saúl Ibarra Corretgé)
1887
+
1888
+ * doc: uv_buf_t members are not readonly (Saúl Ibarra Corretgé)
1889
+
1890
+ * doc: improve documentation on uv_alloc_cb (Saúl Ibarra Corretgé)
1891
+
1892
+ * fs: fix uv_fs_fstat on platforms using musl libc (Santiago Gimeno)
1893
+
1894
+ * doc: update supported fields for uv_rusage_t (Imran Iqbal)
1895
+
1896
+ * test: fix test-tcp-writealot flakiness on arm (Santiago Gimeno)
1897
+
1898
+ * test: fix fs_event_watch_dir flakiness on arm (Santiago Gimeno)
1899
+
1900
+ * unix: don't use alphasort in uv_fs_scandir() (Ben Noordhuis)
1901
+
1902
+ * doc: fix confusing doc of uv_tcp_nodelay (Bart Robinson)
1903
+
1904
+ * build,osx: fix warnings on tests compilation with gyp (Santiago Gimeno)
1905
+
1906
+ * doc: add ABI tracker link to README (Saúl Ibarra Corretgé)
1907
+
1908
+ * win,tty: fix uv_tty_set_mode race conditions (Bartosz Sosnowski)
1909
+
1910
+ * test: fix fs_fstat on Android (Vit Gottwald)
1911
+
1912
+ * win, test: fix fs_event_watch_dir_recursive (Bartosz Sosnowski)
1913
+
1914
+ * doc: add description of uv_handle_type (Vit Gottwald)
1915
+
1916
+ * build: use -pthreads for tests with autotools (Julien Gilli)
1917
+
1918
+ * win: fix leaky fs request buffer (Jason Ginchereau)
1919
+
1920
+ * doc: note buffer lifetime requirements in uv_write (Vladimír Čunát)
1921
+
1922
+ * doc: add reference to uv_update_time on uv_timer_start (Alex Hultman)
1923
+
1924
+ * win: fix winapi function pointer typedef syntax (Brad King)
1925
+
1926
+ * test: fix tcp_close_while_connecting CI failures (Ben Noordhuis)
1927
+
1928
+ * test: make threadpool_cancel_single deterministic (Ben Noordhuis)
1929
+
1930
+ * test: make threadpool saturation reliable (Ben Noordhuis)
1931
+
1932
+ * unix: don't malloc in uv_thread_create() (Ben Noordhuis)
1933
+
1934
+ * unix: don't include CoreServices globally on macOS (Brad King)
1935
+
1936
+ * unix,win: add uv_translate_sys_error() public API (Philippe Laferriere)
1937
+
1938
+ * win: remove unused static variables (Ben Noordhuis)
1939
+
1940
+ * win: silence -Wmaybe-uninitialized warning (Ben Noordhuis)
1941
+
1942
+ * signal: replace pthread_once with uv_once (Santiago Gimeno)
1943
+
1944
+ * test: fix sign-compare warning (Will Speak)
1945
+
1946
+ * common: fix unused variable warning (Brad King)
1947
+
1948
+
1949
+ 2016.05.17, Version 1.9.1 (Stable), d989902ac658b4323a4f4020446e6f4dc449e25c
1950
+
1951
+ Changes since version 1.9.0:
1952
+
1953
+ * test: handle root home directories (cjihrig)
1954
+
1955
+ * unix: implement uv__fs_futime for AIX 7.1 (Imran Iqbal)
1956
+
1957
+ * test: skip early bind tests if no IPv6 is supported (Saúl Ibarra Corretgé)
1958
+
1959
+ * win: fix var declaration to be C89 compliant (Michael Fero)
1960
+
1961
+ * unix: use POLL{IN,OUT,etc} constants directly (Ben Noordhuis)
1962
+
1963
+ * doc: add ability to live reload and regenerate HTML (Saúl Ibarra Corretgé)
1964
+
1965
+ * Revert "win,build: remove unused build defines" (cjihrig)
1966
+
1967
+ * linux: fix fd leaks in uv_cpu_info() error paths (Ben Noordhuis)
1968
+
1969
+ * linux: don't abort on malformed /proc/stat (Ben Noordhuis)
1970
+
1971
+ * linux: fix long lines in linux-core.c (Ben Noordhuis)
1972
+
1973
+ * test: fix fs_event_watch_file_current_dir for AIX (Imran Iqbal)
1974
+
1975
+ * unix,fs: code cleanup of uv_fs_event_start for AIX (Imran Iqbal)
1976
+
1977
+ * unix: delay signal handling until after normal i/o (Ben Noordhuis)
1978
+
1979
+ * android: pthread_sigmask() does not set errno (Oguz Bastemur)
1980
+
1981
+ * win: work around sharepoint scandir bug (Ben Noordhuis)
1982
+
1983
+ * unix: guard against clobbering errno in uv__free() (Ben Noordhuis)
1984
+
1985
+ * unix: remove unneeded SAVE_ERRNO wrappers (Ben Noordhuis)
1986
+
1987
+ * test: skip fs_event_close_in_callback on AIX (Imran Iqbal)
1988
+
1989
+ * win: add maxrss, pagefaults to uv_getrusage() (Robert Jefe Lindstaedt)
1990
+
1991
+ * test: set a big send buffer size for tcp_write_queue_order (Andrius Bentkus)
1992
+
1993
+ * unix: error on realpath if PATH_MAX is undefined (Myles Borins)
1994
+
1995
+ * unix: fix bug in barrier fallback implementation (Kári Tristan Helgason)
1996
+
1997
+ * build: bump android ndk version (Kári Tristan Helgason)
1998
+
1999
+ * build: always compile with -fvisibility=hidden (Ben Noordhuis)
2000
+
2001
+ * test: fix -Wformat warnings in platform test (Ben Noordhuis)
2002
+
2003
+ * win: clarify fsevents handling code (Saúl Ibarra Corretgé)
2004
+
2005
+ * test: fix POLLHDRUP related failures for AIX (Imran Iqbal)
2006
+
2007
+ * build, mingw: set LIBS in configure.ac (Tony Theodore)
2008
+
2009
+ * win: improve uv__convert_utf16_to_utf8 (Saúl Ibarra Corretgé)
2010
+
2011
+ * win: simplified UTF16 -> UTF8 conversions (Saúl Ibarra Corretgé)
2012
+
2013
+ * win: remove unneeded condition (Saúl Ibarra Corretgé)
2014
+
2015
+ * darwin: work around condition variable kernel bug (Ben Noordhuis)
2016
+
2017
+ * darwin: make thread stack multiple of page size (Ben Noordhuis)
2018
+
2019
+ * build,win: rename platform to msbuild_platform (João Reis)
2020
+
2021
+ * gitignore: ignore VS temporary database files (João Reis)
2022
+
2023
+ * test: skip emfile on AIX (Imran Iqbal)
2024
+
2025
+ * unix: use system allocator for scandir() (cjihrig)
2026
+
2027
+ * common: release uv_fs_scandir() array (cjihrig)
2028
+
2029
+ * win: call uv__fs_scandir_cleanup() (cjihrig)
2030
+
2031
+ * win,tty: fix read stop in line mode (João Reis)
2032
+
2033
+ * win,tty: don't duplicate handle for line reads (João Reis)
2034
+
2035
+ * win,tty: restore cursor after canceling line read (Alexis Campailla)
2036
+
2037
+
2038
+ 2016.04.08, Version 1.9.0 (Stable), 229b3a4cc150aebd6561e6bd43076eafa7a03756
2039
+
2040
+ Changes since version 1.8.0:
2041
+
2042
+ * win: wait for full timeout duration (João Reis)
2043
+
2044
+ * unix: fix support for uClibc-ng (Martin Bark)
2045
+
2046
+ * doc: indicate where new test files need to be added (Dave)
2047
+
2048
+ * test,unix: fix logic error in test runner (Ben Noordhuis)
2049
+
2050
+ * fs: don't nullify req->bufs on EINTR (Dave)
2051
+
2052
+ * osx: set the default thread stack size to RLIMIT_STACK (Saúl Ibarra Corretgé)
2053
+
2054
+ * build: invoke libtoolize with --copy (Ben Noordhuis)
2055
+
2056
+ * test: fixup eintr_handling (Saúl Ibarra Corretgé)
2057
+
2058
+ * osx: avoid compilation warning with Clang (Saúl Ibarra Corretgé)
2059
+
2060
+ * test,win: fix compilation with shared lib (Alexis Murzeau)
2061
+
2062
+ * test: fix race condition in pipe-close-stdout (Imran Iqbal)
2063
+
2064
+ * unix,win: add uv_os_tmpdir() (cjihrig)
2065
+
2066
+ * ios: fix undefined PTHREAD_STACK_MIN (Didiet)
2067
+
2068
+ * test: fix threadpool_multiple_event_loops for AIX (Imran Iqbal)
2069
+
2070
+ * unix: report errors for unpollable fds (Ben Noordhuis)
2071
+
2072
+ * win: fix watching root files (Nicholas Vavilov)
2073
+
2074
+ * build,win: print the Visual Studio version in use (Saúl Ibarra Corretgé)
2075
+
2076
+ * build,win: remove unneeded condition from GYP file (Saúl Ibarra Corretgé)
2077
+
2078
+ * test,win: fix compilation warning (Saúl Ibarra Corretgé)
2079
+
2080
+ * test: use uv_loop_close and assert its result (Nan Xiang)
2081
+
2082
+ * build: map 'AMD64' host arch to 'x64' (Ben Noordhuis)
2083
+
2084
+ * osx: protected use of potentially undefined macro (Samuel Lorétan)
2085
+
2086
+ * linux: fix compilation with musl (Saúl Ibarra Corretgé)
2087
+
2088
+ * doc: describe how to make release builds on Unix (Saúl Ibarra Corretgé)
2089
+
2090
+ * doc: add missing link in README (Saúl Ibarra Corretgé)
2091
+
2092
+ * build: python 2.x/3.x consistent print usage (Rasmus Christian Pedersen)
2093
+
2094
+ * test: assume no IPv6 if interfaces cannot be listed (Nan Xiang)
2095
+
2096
+ * darwin: replace F_FULLFSYNC with fdatasync syscall (Saúl Ibarra Corretgé)
2097
+
2098
+ * doc: add missing write callback to example (Nándor István Krácser)
2099
+
2100
+ * build: compile with -D_THREAD_SAFE on AIX (Imran Iqbal)
2101
+
2102
+ * test: fix threadpool_multiple_event_loops on PPC (Imran Iqbal)
2103
+
2104
+ * test: reduce timeout in tcp_close_while_connecting (Imran Iqbal)
2105
+
2106
+ * unix, win: consistently null-terminate buffers (Saúl Ibarra Corretgé)
2107
+
2108
+ * unix, win: count null byte on UV_ENOBUFS (Saúl Ibarra Corretgé)
2109
+
2110
+ * test: fix deadlocks in uv_cond_wait (Katsutoshi Horie)
2111
+
2112
+ * linux: fix cpu count (Lukasz Jagiello)
2113
+
2114
+ * unix: fix uv__handle_type for AIX (Imran Iqbal)
2115
+
2116
+ * linux: call fclose(), fix fdopen() memory leak (Ben Noordhuis)
2117
+
2118
+ * win: remove unneeded condition (Saúl Ibarra Corretgé)
2119
+
2120
+ * unix: fix compile error in Android using bionic (Robert Chiras)
2121
+
2122
+ * linux: add braces to multi-statement if (Kári Tristan Helgason)
2123
+
2124
+ * doc: add @cjihrig as a maintainer (Saúl Ibarra Corretgé)
2125
+
2126
+ * unix: add fork-safe open file function (Kári Tristan Helgason)
2127
+
2128
+ * linux: replace calls to fopen with uv__open_file (Kári Tristan Helgason)
2129
+
2130
+ * linux: remove redundant call to rewind() (Krishnaraj Bhat)
2131
+
2132
+ * win: remove duplicated code when processing fsevents (Saúl Ibarra Corretgé)
2133
+
2134
+ * test: fix poll_bad_fdtype for AIX (Imran Iqbal)
2135
+
2136
+ * linux: fix error checking in uv__open_file (Saúl Ibarra Corretgé)
2137
+
2138
+ * poll: add UV_DISCONNECT event (Santiago Gimeno)
2139
+
2140
+ * fs: realpath: fix string size before converting (Yuval Brik)
2141
+
2142
+ * win: use native APIs for UTF conversions (cjihrig)
2143
+
2144
+ * doc: clarify uv_loop_close() (Ben Noordhuis)
2145
+
2146
+ * unix: retry ioctl(TIOCGWINSZ) on EINTR (Ben Noordhuis)
2147
+
2148
+ * win,build: remove unused build defines (Saúl Ibarra Corretgé)
2149
+
2150
+ * win: fix buffer overflow in fs events (Joran Dirk Greef)
2151
+
2152
+ * win: fix uv_relative_path and remove dead branch (Joran Dirk Greef)
2153
+
2154
+ * unix: use open(2) with O_CLOEXEC on OS X (Kári Tristan Helgason)
2155
+
2156
+ * test: add missing copyright header (cjihrig)
2157
+
2158
+ * aix: fix 'POLLRDHUP undeclared' build error (Ben Noordhuis)
2159
+
2160
+ * unix,win: add uv_get_passwd() (cjihrig)
2161
+
2162
+ * process: fix uv_spawn edge-case (Santiago Gimeno)
2163
+
2164
+ * test: use %ld for printing uid/gid (Ben Noordhuis)
2165
+
2166
+ * aix: fix ahafs implementation (Imran Iqbal)
2167
+
2168
+ * aix: do not store absolute path to ahafs (Imran Iqbal)
2169
+
2170
+ * process: close process pipes safely (Santiago Gimeno)
2171
+
2172
+ * unix: open ttyname instead of /dev/tty (Enno Boland)
2173
+
2174
+ * unix: remove outdated comment (Kári Tristan Helgason)
2175
+
2176
+
2177
+ 2015.12.15, Version 1.8.0 (Stable), 5467299450ecf61635657557b6e01aaaf6c3fdf4
2178
+
2179
+ Changes since version 1.7.5:
2180
+
2181
+ * unix: fix memory leak in uv_interface_addresses (Jianghua Yang)
2182
+
2183
+ * unix: make uv_guess_handle work properly for AIX (Gireesh Punathil)
2184
+
2185
+ * fs: undo uv__req_init when uv__malloc failed (Jianghua Yang)
2186
+
2187
+ * build: remove unused 'component' GYP option (Saúl Ibarra Corretgé)
2188
+
2189
+ * include: remove duplicate extern declaration (Jianghua Yang)
2190
+
2191
+ * win: use the MSVC provided snprintf where possible (Jason Williams)
2192
+
2193
+ * win, test: fix compilation warning (Saúl Ibarra Corretgé)
2194
+
2195
+ * win: fix compilation with VS < 2012 (Ryan Johnston)
2196
+
2197
+ * stream: support empty uv_try_write on unix (Fedor Indutny)
2198
+
2199
+ * unix: fix request handle leak in uv__udp_send (Jianghua Yang)
2200
+
2201
+ * src: replace QUEUE_SPLIT with QUEUE_MOVE (Ben Noordhuis)
2202
+
2203
+ * unix: use QUEUE_MOVE when iterating over lists (Ben Noordhuis)
2204
+
2205
+ * unix: squelch harmless valgrind warning (Ben Noordhuis)
2206
+
2207
+ * test: don't abort on setrlimit() failure (Ben Noordhuis)
2208
+
2209
+ * unix: only undo fs req registration in async mode (Ben Noordhuis)
2210
+
2211
+ * unix: fix uv__getiovmax return value (HungMingWu)
2212
+
2213
+ * unix: make work with Solaris Studio. (Adam Stylinski)
2214
+
2215
+ * test: fix fs_event_watch_file_currentdir flakiness (Santiago Gimeno)
2216
+
2217
+ * unix: skip prohibited syscalls on tvOS and watchOS (Nathan Corvino)
2218
+
2219
+ * test: use FQDN in getaddrinfo_fail test (Wink Saville)
2220
+
2221
+ * docs: clarify documentation of uv_tcp_init_ex (Andrius Bentkus)
2222
+
2223
+ * win: fix comment (Miodrag Milanovic)
2224
+
2225
+ * doc: fix typo in README (Angel Leon)
2226
+
2227
+ * darwin: abort() if (un)locking fs mutex fails (Ben Noordhuis)
2228
+
2229
+ * pipe: enable inprocess uv_write2 on Windows (Louis DeJardin)
2230
+
2231
+ * win: properly return UV_EBADF when _close() fails (Nicholas Vavilov)
2232
+
2233
+ * test: skip process_title for AIX (Imran Iqbal)
2234
+
2235
+ * misc: expose handle print APIs (Petka Antonov)
2236
+
2237
+ * include: add stdio.h to uv.h (Saúl Ibarra Corretgé)
2238
+
2239
+ * misc: remove unnecessary null pointer checks (Ian Kronquist)
2240
+
2241
+ * test,freebsd: skip udp_dual_stack if not supported (Santiago Gimeno)
2242
+
2243
+ * linux: don't retry dup2/dup3 on EINTR (Ben Noordhuis)
2244
+
2245
+ * unix: don't retry dup2/dup3 on EINTR (Ben Noordhuis)
2246
+
2247
+ * test: fix -Wtautological-pointer-compare warnings (Saúl Ibarra Corretgé)
2248
+
2249
+ * win: map ERROR_BAD_PATHNAME to UV_ENOENT (Tony Kelman)
2250
+
2251
+ * test: fix test/test-tty.c for AIX (Imran Iqbal)
2252
+
2253
+ * android: support api level less than 21 (kkdaemon)
2254
+
2255
+ * fsevents: fix race on simultaneous init+close (Fedor Indutny)
2256
+
2257
+ * linux,fs: fix p{read,write}v with a 64bit offset (Saúl Ibarra Corretgé)
2258
+
2259
+ * fs: add uv_fs_realpath() (Yuval Brik)
2260
+
2261
+ * win: fix path for removed and renamed fs events (Joran Dirk Greef)
2262
+
2263
+ * win: do not read more from stream than available (Jeremy Whitlock)
2264
+
2265
+ * test: test that uv_close() doesn't corrupt QUEUE (Andrey Mazo)
2266
+
2267
+ * unix: fix uv_fs_event_stop() from fs_event_cb (Andrey Mazo)
2268
+
2269
+ * test: fix self-deadlocks in thread_rwlock_trylock (Ben Noordhuis)
2270
+
2271
+ * src: remove non ascii character (sztomi)
2272
+
2273
+ * test: fix test udp_multicast_join6 for AIX (Imran Iqbal)
2274
+
2275
+
2276
+ 2015.09.23, Version 1.7.5 (Stable), a8c1136de2cabf25b143021488cbaab05834daa8
2277
+
2278
+ Changes since version 1.7.4:
2279
+
2280
+ * unix: Support atomic compare & swap xlC on AIX (nmushell)
2281
+
2282
+ * unix: Fix including uv-aix.h on AIX (nmushell)
2283
+
2284
+ * unix: consolidate rwlock tryrdlock trywrlock errors (Saúl Ibarra Corretgé)
2285
+
2286
+ * unix, win: consolidate mutex trylock errors (Saúl Ibarra Corretgé)
2287
+
2288
+ * darwin: fix memory leak in uv_cpu_info (Jianghua Yang)
2289
+
2290
+ * test: add tests for the uv_rwlock implementation (Bert Belder)
2291
+
2292
+ * win: redo/fix the uv_rwlock APIs (Bert Belder)
2293
+
2294
+ * win: don't fetch function pointers to SRWLock APIs (Bert Belder)
2295
+
2296
+
2297
+ 2015.09.12, Version 1.7.4 (Stable), a7ad4f52189d89cfcba35f78bfc5ff3b1f4105c4
2298
+
2299
+ Changes since version 1.7.3:
2300
+
2301
+ * doc: uv_read_start and uv_read_cb clarifications (Ben Trask)
2302
+
2303
+ * freebsd: obtain true uptime through clock_gettime() (Jianghua Yang)
2304
+
2305
+ * win, tty: do not convert \r to \r\n (Colin Snover)
2306
+
2307
+ * build,gyp: add DragonFly to the list of OSes (Michael Neumann)
2308
+
2309
+ * fs: fix bug in sendfile for DragonFly (Michael Neumann)
2310
+
2311
+ * doc: add uv_dlsym() return type (Brian White)
2312
+
2313
+ * tests: fix fs tests run w/o full getdents support (Jeremy Whitlock)
2314
+
2315
+ * doc: fix typo (Devchandra Meetei Leishangthem)
2316
+
2317
+ * doc: fix uv-unix.h location (Sakthipriyan Vairamani)
2318
+
2319
+ * unix: fix error check when closing process pipe fd (Ben Noordhuis)
2320
+
2321
+ * test,freebsd: fix ipc_listen_xx_write tests (Santiago Gimeno)
2322
+
2323
+ * win: fix unsavory rwlock fallback implementation (Bert Belder)
2324
+
2325
+ * doc: clarify repeat timer behavior (Eli Skeggs)
2326
+
2327
+
2328
+ 2015.08.28, Version 1.7.3 (Stable), 93877b11c8b86e0a6befcda83a54555c1e36e4f0
2329
+
2330
+ Changes since version 1.7.2:
2331
+
2332
+ * threadpool: fix thread starvation bug (Ben Noordhuis)
2333
+
2334
+
2335
+ 2015.08.25, Version 1.7.2 (Stable), 4d13a013fcfa72311f0102751fdc7951873f466c
2336
+
2337
+ Changes since version 1.7.1:
2338
+
2339
+ * unix, win: make uv_loop_init return on error (Willem Thiart)
2340
+
2341
+ * win: reset pipe handle for pipe servers (Saúl Ibarra Corretgé)
2342
+
2343
+ * win: fix replacing pipe handle for pipe servers (Saúl Ibarra Corretgé)
2344
+
2345
+ * win: fix setting pipe pending instances after bind (Saúl Ibarra Corretgé)
2346
+
2347
+
2348
+ 2015.08.20, Version 1.7.1 (Stable), 44f4b6bd82d8ae4583ccc4768a83af778ef69f85
2349
+
2350
+ Changes since version 1.7.0:
2351
+
2352
+ * doc: document the procedure for verifying releases (Saúl Ibarra Corretgé)
2353
+
2354
+ * doc: add note about Windows binaries to the README (Saúl Ibarra Corretgé)
2355
+
2356
+ * doc: use long GPG IDs in MAINTAINERS.md (Saúl Ibarra Corretgé)
2357
+
2358
+ * Revert "stream: squelch ECONNRESET error if already closed" (Saúl Ibarra
2359
+ Corretgé)
2360
+
2361
+ * doc: clarify uv_read_stop() is idempotent (Corbin Simpson)
2362
+
2363
+ * unix: OpenBSD's setsockopt needs an unsigned char for multicast (Zachary
2364
+ Hamm)
2365
+
2366
+ * test: Fix two memory leaks (Karl Skomski)
2367
+
2368
+ * unix,win: return EINVAL on nullptr args in uv_fs_{read,write} (Karl Skomski)
2369
+
2370
+ * win: set accepted TCP sockets as non-inheritable (Saúl Ibarra Corretgé)
2371
+
2372
+ * unix: remove superfluous parentheses in fs macros (Ben Noordhuis)
2373
+
2374
+ * unix: don't copy arguments for sync fs requests (Ben Noordhuis)
2375
+
2376
+ * test: plug small memory leak in unix test runner (Ben Noordhuis)
2377
+
2378
+ * unix,windows: allow NULL loop for sync fs requests (Ben Noordhuis)
2379
+
2380
+ * unix,windows: don't assert on unknown error code (Ben Noordhuis)
2381
+
2382
+ * stream: retry write on EPROTOTYPE on OSX (Brian White)
2383
+
2384
+ * common: fix use of snprintf on Windows (Saúl Ibarra Corretgé)
2385
+
2386
+ * tests: refactored fs watch_dir tests for stability (Jeremy Whitlock)
2387
+
2388
+
2389
+ 2015.08.06, Version 1.7.0 (Stable), 415a865d6365ba58d02b92b89d46ba5d7744ec8b
2390
+
2391
+ Changes since version 1.6.1:
2392
+
2393
+ * win,stream: add slot to remember CRT fd (Bert Belder)
2394
+
2395
+ * win,pipe: properly close when created from CRT fd (Bert Belder)
2396
+
2397
+ * win,pipe: don't close fd 0-2 (Bert Belder)
2398
+
2399
+ * win,tty: convert fd -> handle safely (Bert Belder)
2400
+
2401
+ * win,tty: properly close when created from CRT fd (Bert Belder)
2402
+
2403
+ * win,tty: don't close fd 0-2 (Bert Belder)
2404
+
2405
+ * win,fs: don't close fd 0-2 (Bert Belder)
2406
+
2407
+ * win: include "malloc.h" (Cheng Zhao)
2408
+
2409
+ * windows: MSVC 2015 has C99 inline (Jason Williams)
2410
+
2411
+ * dragonflybsd: fixes for nonblocking and cloexec (Michael Neumann)
2412
+
2413
+ * dragonflybsd: use sendfile(2) for uv_fs_sendfile (Michael Neumann)
2414
+
2415
+ * dragonflybsd: fix uv_exepath (Michael Neumann)
2416
+
2417
+ * win,fs: Fixes align(8) directive on mingw (Stefano Cristiano)
2418
+
2419
+ * unix, win: prevent replacing fd in uv_{udp,tcp,pipe}_t (Saúl Ibarra Corretgé)
2420
+
2421
+ * win: move logic to set socket non-inheritable to uv_tcp_set_socket (Saúl
2422
+ Ibarra Corretgé)
2423
+
2424
+ * unix, win: add ability to create tcp/udp sockets early (Saúl Ibarra Corretgé)
2425
+
2426
+ * test: retry select() on EINTR, honor milliseconds (Ben Noordhuis)
2427
+
2428
+ * unix: consolidate tcp and udp bind error (Saúl Ibarra Corretgé)
2429
+
2430
+ * test: conditionally skip udp_ipv6_multicast_join6 (heshamsafi)
2431
+
2432
+ * core: add UV_VERSION_HEX macro (Saúl Ibarra Corretgé)
2433
+
2434
+ * doc: add section with version-checking macros and functions (Saúl Ibarra
2435
+ Corretgé)
2436
+
2437
+ * tty: cleanup handle if uv_tty_init fails (Saúl Ibarra Corretgé)
2438
+
2439
+ * darwin: save a fd when FSEvents is used (Saúl Ibarra Corretgé)
2440
+
2441
+ * win: fix returning thread id in uv_thread_self (Saúl Ibarra Corretgé)
2442
+
2443
+ * common: use offsetof for QUEUE_DATA (Saúl Ibarra Corretgé)
2444
+
2445
+ * win: remove UV_HANDLE_CONNECTED (A. Hauptmann)
2446
+
2447
+ * docs: add Windows specific note for uv_fs_open (Saúl Ibarra Corretgé)
2448
+
2449
+ * doc: add note about uv_fs_scandir (Saúl Ibarra Corretgé)
2450
+
2451
+ * test,unix: reduce stack size of watchdog threads (Ben Noordhuis)
2452
+
2453
+ * win: add support for recursive file watching (Saúl Ibarra Corretgé)
2454
+
2455
+ * win,tty: support consoles with non-default colors (John McNamee)
2456
+
2457
+ * doc: add missing variable name (Yosuke Furukawa)
2458
+
2459
+ * stream: squelch ECONNRESET error if already closed (Santiago Gimeno)
2460
+
2461
+ * build: remove ancient condition from common.gypi (Saúl Ibarra Corretgé)
2462
+
2463
+ * tests: skip some tests when network is unreachable (Luca Bruno)
2464
+
2465
+ * build: proper support for android cross compilation (guworks)
2466
+
2467
+ * android: add missing include to pthread-fixes.c (RossBencina)
2468
+
2469
+ * test: fix compilation warning (Saúl Ibarra Corretgé)
2470
+
2471
+ * doc: add a note about uv_dirent_t.type (Saúl Ibarra Corretgé)
2472
+
2473
+ * win,test: fix shared library build (Saúl Ibarra Corretgé)
2474
+
2475
+ * test: fix compilation warning (Santiago Gimeno)
2476
+
2477
+ * build: add experimental Windows installer (Roger A. Light)
2478
+
2479
+ * threadpool: send signal only when queue is empty (chenttuuvv)
2480
+
2481
+ * aix: fix uv_exepath with relative paths (Richard Lau)
2482
+
2483
+ * build: fix version syntax in AppVeyor file (Saúl Ibarra Corretgé)
2484
+
2485
+ * unix: allow nbufs > IOV_MAX in uv_fs_{read,write} (ronkorving)
2486
+
2487
+
2488
+ 2015.06.06, Version 1.6.1 (Stable), 30c8be07bb78a66fdee5141626bf53a49a17094a
2489
+
2490
+ Changes since version 1.6.0:
2491
+
2492
+ * unix: handle invalid _SC_GETPW_R_SIZE_MAX values (cjihrig)
2493
+
2494
+
2495
+ 2015.06.04, Version 1.6.0 (Stable), adfccad76456061dfcf79b8df8e7dbfee51791d7
2496
+
2497
+ Changes since version 1.5.0:
2498
+
2499
+ * aix: fix setsockopt for multicast options (Michael)
2500
+
2501
+ * unix: don't block for io if any io handle is primed (Saúl Ibarra Corretgé)
2502
+
2503
+ * windows: MSVC 2015 has snprintf() (Rui Abreu Ferreira)
2504
+
2505
+ * windows: Add VS2015 support to vcbuild.bat (Jason Williams)
2506
+
2507
+ * doc: fix typo in tcp.rst (Igor Soarez)
2508
+
2509
+ * linux: work around epoll bug in kernels < 2.6.37 (Ben Noordhuis)
2510
+
2511
+ * unix,win: add uv_os_homedir() (cjihrig)
2512
+
2513
+ * stream: fix `select()` race condition (Fedor Indutny)
2514
+
2515
+ * unix: prevent infinite loop in uv__run_pending (Saúl Ibarra Corretgé)
2516
+
2517
+ * unix: make sure UDP send callbacks are asynchronous (Saúl Ibarra Corretgé)
2518
+
2519
+ * test: fix `platform_output` netmask printing. (Andrew Paprocki)
2520
+
2521
+ * aix: add ahafs autoconf detection and README notes (Andrew Paprocki)
2522
+
2523
+ * core: add ability to customize memory allocator (Saúl Ibarra Corretgé)
2524
+
2525
+
2526
+ 2015.05.07, Version 1.5.0 (Stable), 4e77f74c7b95b639b3397095db1bc5bcc016c203
2527
+
2528
+ Changes since version 1.4.2:
2529
+
2530
+ * doc: clarify that the thread pool primites are not thread safe (Andrius
2531
+ Bentkus)
2532
+
2533
+ * aix: always deregister closing fds from epoll (Michael)
2534
+
2535
+ * unix: fix glibc-2.20+ macro incompatibility (Massimiliano Torromeo)
2536
+
2537
+ * doc: add Sphinx plugin for generating links to man pages (Saúl Ibarra
2538
+ Corretgé)
2539
+
2540
+ * doc: link system and library calls to man pages (Saúl Ibarra Corretgé)
2541
+
2542
+ * doc: document uv_getnameinfo_t.{host|service} (Saúl Ibarra Corretgé)
2543
+
2544
+ * build: update the location of gyp (Stephen von Takach)
2545
+
2546
+ * win: name all anonymous structs and unions (TomCrypto)
2547
+
2548
+ * linux: work around epoll bug in kernels 3.10-3.19 (Ben Noordhuis)
2549
+
2550
+ * darwin: fix size calculation in select() fallback (Ole André Vadla Ravnås)
2551
+
2552
+ * solaris: fix setsockopt for multicast options (Julien Gilli)
2553
+
2554
+ * test: fix race condition in multithreaded test (Ben Noordhuis)
2555
+
2556
+ * doc: fix long lines in tty.rst (Ben Noordhuis)
2557
+
2558
+ * test: use UV_TTY_MODE_* values in tty test (Ben Noordhuis)
2559
+
2560
+ * unix: don't clobber errno in uv_tty_reset_mode() (Ben Noordhuis)
2561
+
2562
+ * unix: reject non-tty fds in uv_tty_init() (Ben Noordhuis)
2563
+
2564
+ * win: fix pipe blocking writes (Alexis Campailla)
2565
+
2566
+ * build: fix cross-compiling for iOS (Steven Kabbes)
2567
+
2568
+ * win: remove unnecessary malloc.h
2569
+
2570
+ * include: use `extern "c++"` for defining C++ code (Kazuho Oku)
2571
+
2572
+ * unix: reap child on execvp() failure (Ryan Phillips)
2573
+
2574
+ * windows: fix handle leak on EMFILE (Brian Green)
2575
+
2576
+ * test: fix tty_file, close handle if initialized (Saúl Ibarra Corretgé)
2577
+
2578
+ * doc: clarify what uv_*_open accepts (Saúl Ibarra Corretgé)
2579
+
2580
+ * doc: clarify that we don't maintain external doc resources (Saúl Ibarra
2581
+ Corretgé)
2582
+
2583
+ * build: add documentation for ninja support (Devchandra Meetei Leishangthem)
2584
+
2585
+ * doc: document uv_buf_t members (Corey Farrell)
2586
+
2587
+ * linux: fix epoll_pwait() fallback on arm64 (Ben Noordhuis)
2588
+
2589
+ * android: fix compilation warning (Saúl Ibarra Corretgé)
2590
+
2591
+ * unix: don't close the fds we just setup (Sam Roberts)
2592
+
2593
+ * test: spawn child replacing std{out,err} to stderr (Saúl Ibarra Corretgé)
2594
+
2595
+ * unix: fix swapping fds order in uv_spawn (Saúl Ibarra Corretgé)
2596
+
2597
+ * unix: fix potential bug if dup2 fails in uv_spawn (Saúl Ibarra Corretgé)
2598
+
2599
+ * test: remove LOG and LOGF variadic macros (Saúl Ibarra Corretgé)
2600
+
2601
+ * win: fix uv_fs_access on directories (Saúl Ibarra Corretgé)
2602
+
2603
+ * win: fix of double free in uv_uptime (Per Nilsson)
2604
+
2605
+ * unix: open "/dev/null" instead of "/" for emfile_fd (Alan Rogers)
2606
+
2607
+ * docs: add some missing words (Daryl Haresign)
2608
+
2609
+ * unix: clean up uv_fs_open() O_CLOEXEC logic (Ben Noordhuis)
2610
+
2611
+ * build: set SONAME for shared library in uv.gyp (Rui Abreu Ferreira)
2612
+
2613
+ * windows: define snprintf replacement as inline instead of static (Rui Abreu
2614
+ Ferreira)
2615
+
2616
+ * win: fix unlink of readonly files (João Reis)
2617
+
2618
+ * doc: fix uv_run(UV_RUN_DEFAULT) description (Ben Noordhuis)
2619
+
2620
+ * linux: intercept syscall when running under memory sanitizer (Keno Fischer)
2621
+
2622
+ * aix: fix uv_interface_addresses return value (farblue68)
2623
+
2624
+ * windows: defer reporting TCP write failure until next tick (Saúl Ibarra
2625
+ Corretgé)
2626
+
2627
+ * test: add test for deferred TCP write failure (Saúl Ibarra Corretgé)
2628
+
2629
+
2630
+ 2015.02.27, Version 1.4.2 (Stable), 1a7391348a11d5450c0f69c828d5302e2cb842eb
2631
+
2632
+ Changes since version 1.4.1:
2633
+
2634
+ * stream: ignore EINVAL for SO_OOBINLINE on OS X (Fedor Indutny)
2635
+
2636
+
2637
+ 2015.02.25, Version 1.4.1 (Stable), e8e3fc5789cc0f02937879d141cca0411274093c
2638
+
2639
+ Changes since version 1.4.0:
2640
+
2641
+ * win: don't use inline keyword in thread.c (Ben Noordhuis)
2642
+
2643
+ * windows: fix setting dirent types on uv_fs_scandir_next (Saúl Ibarra
2644
+ Corretgé)
2645
+
2646
+ * unix,windows: make uv_thread_create() return errno (Ben Noordhuis)
2647
+
2648
+ * tty: fix build for SmartOS (Julien Gilli)
2649
+
2650
+ * unix: fix for uv_async data race (Michael Penick)
2651
+
2652
+ * unix, windows: map EHOSTDOWN errno (Ben Noordhuis)
2653
+
2654
+ * stream: use SO_OOBINLINE on OS X (Fedor Indutny)
2655
+
2656
+
2657
+ 2015.02.10, Version 1.4.0 (Stable), 19fb8a90648f3763240db004b77ab984264409be
2658
+
2659
+ Changes since version 1.3.0:
2660
+
2661
+ * unix: check Android support for pthread_cond_timedwait_monotonic_np (Leith
2662
+ Bade)
2663
+
2664
+ * test: use modified path in test (cjihrig)
2665
+
2666
+ * unix: implement uv_stream_set_blocking() (Ben Noordhuis)
2667
+
2668
+
2669
+ 2015.01.29, Version 1.3.0 (Stable), 165685b2a9a42cf96501d79cd6d48a18aaa16e3b
2670
+
2671
+ Changes since version 1.2.1:
2672
+
2673
+ * unix, windows: set non-block mode in uv_poll_init (Saúl Ibarra Corretgé)
2674
+
2675
+ * doc: clarify which flags are supported in uv_fs_event_start (Saúl Ibarra
2676
+ Corretgé)
2677
+
2678
+ * win,unix: move loop functions which have identical implementations (Andrius
2679
+ Bentkus)
2680
+
2681
+ * doc: explain how the threadpool is allocated (Alex Mo)
2682
+
2683
+ * doc: clarify uv_default_loop (Saúl Ibarra Corretgé)
2684
+
2685
+ * unix: fix implicit declaration compiler warning (Ben Noordhuis)
2686
+
2687
+ * unix: fix long line introduced in commit 94e628fa (Ben Noordhuis)
2688
+
2689
+ * unix, win: add synchronous uv_get{addr,name}info (Saúl Ibarra Corretgé)
2690
+
2691
+ * linux: fix epoll_pwait() regression with < 2.6.19 (Ben Noordhuis)
2692
+
2693
+ * build: compile -D_GNU_SOURCE on linux (Ben Noordhuis)
2694
+
2695
+ * build: use -fvisibility=hidden in autotools build (Ben Noordhuis)
2696
+
2697
+ * fs, pipe: no trailing terminator in exact sized buffers (Andrius Bentkus)
2698
+
2699
+ * style: rename buf to buffer and len to size for consistency (Andrius Bentkus)
2700
+
2701
+ * test: fix test-spawn on MinGW32 (Luis Martinez de Bartolome)
2702
+
2703
+ * win, pipe: fix assertion when destroying timer (Andrius Bentkus)
2704
+
2705
+ * win, unix: add pipe_peername implementation (Andrius Bentkus)
2706
+
2707
+
2708
+ 2015.01.29, Version 0.10.33 (Stable), 7a2253d33ad8215a26c1b34f1952aee7242dd687
2709
+
2710
+ Changes since version 0.10.32:
2711
+
2712
+ * linux: fix epoll_pwait() regression with < 2.6.19 (Ben Noordhuis)
2713
+
2714
+ * test: back-port uv_loop_configure() test (Ben Noordhuis)
2715
+
2716
+
2717
+ 2015.01.15, Version 1.2.1 (Stable), 4ca78e989062a1099dc4b9ad182a98e8374134b1
2718
+
2719
+ Changes since version 1.2.0:
2720
+
2721
+ * unix: remove unused dtrace file (Saúl Ibarra Corretgé)
2722
+
2723
+ * test: skip TTY select test if /dev/tty can't be opened (Saúl Ibarra Corretgé)
2724
+
2725
+ * doc: clarify the behavior of uv_tty_init (Saúl Ibarra Corretgé)
2726
+
2727
+ * doc: clarify how uv_async_send behaves (Saúl Ibarra Corretgé)
2728
+
2729
+ * build: make dist now generates a full tarball (Johan Bergström)
2730
+
2731
+ * freebsd: make uv_exepath more resilient (Saúl Ibarra Corretgé)
2732
+
2733
+ * unix: make setting the tty mode to the same value a no-op (Saúl Ibarra
2734
+ Corretgé)
2735
+
2736
+ * win,tcp: support uv_try_write (Bert Belder)
2737
+
2738
+ * test: enable test-tcp-try-write on windows (Bert Belder)
2739
+
2740
+ * win,tty: support uv_try_write (Bert Belder)
2741
+
2742
+ * unix: set non-block mode in uv_{pipe,tcp,udp}_open (Ben Noordhuis)
2743
+
2744
+
2745
+ 2015.01.06, Version 1.2.0 (Stable), 09f25b13cd149c7981108fc1a75611daf1277f83
2746
+
2747
+ Changes since version 1.1.0:
2748
+
2749
+ * linux: fix epoll_pwait() sigmask size calculation (Ben Noordhuis)
2750
+
2751
+ * tty: implement binary I/O terminal mode (Yuri D'Elia)
2752
+
2753
+ * test: fix spawn test with autotools build (Ben Noordhuis)
2754
+
2755
+ * test: skip ipv6 tests when ipv6 is not supported (Ben Noordhuis)
2756
+
2757
+ * common: move STATIC_ASSERT to uv-common.h (Alexey Melnichuk)
2758
+
2759
+ * win/thread: store thread handle in a TLS slot (Alexey Melnichuk)
2760
+
2761
+ * unix: fix ttl, multicast ttl and loop options on IPv6 (Saúl Ibarra Corretgé)
2762
+
2763
+ * linux: fix support for preadv/pwritev-less kernels (Ben Noordhuis)
2764
+
2765
+ * unix: make uv_exepath(size=0) return UV_EINVAL (Ben Noordhuis)
2766
+
2767
+ * darwin: fix uv_exepath(smallbuf) UV_EPERM error (Ben Noordhuis)
2768
+
2769
+ * openbsd: fix uv_exepath(smallbuf) UV_EINVAL error (Ben Noordhuis)
2770
+
2771
+ * linux: fix uv_exepath(size=1) UV_EINVAL error (Ben Noordhuis)
2772
+
2773
+ * sunos: preemptively fix uv_exepath(size=1) (Ben Noordhuis)
2774
+
2775
+ * win: fix and clarify comments in winapi.h (Bert Belder)
2776
+
2777
+ * win: make available NtQueryDirectoryFile (Bert Belder)
2778
+
2779
+ * win: add definitions for directory information types (Bert Belder)
2780
+
2781
+ * win: use NtQueryDirectoryFile to implement uv_fs_scandir (Bert Belder)
2782
+
2783
+ * unix: don't unlink unix socket on bind error (Ben Noordhuis)
2784
+
2785
+ * build: fix bad comment in autogen.sh (Ben Noordhuis)
2786
+
2787
+ * build: add AC_PROG_LIBTOOL to configure.ac (Ben Noordhuis)
2788
+
2789
+ * test: skip udp_options6 if there no IPv6 support (Saúl Ibarra Corretgé)
2790
+
2791
+ * win: add definitions for MUI errors mingw lacks (Bert Belder)
2792
+
2793
+ * build: enable warnings in autotools build (Ben Noordhuis)
2794
+
2795
+ * build: remove -Wno-dollar-in-identifier-extension (Ben Noordhuis)
2796
+
2797
+ * build: move flags from Makefile.am to configure.ac (Ben Noordhuis)
2798
+
2799
+
2800
+ 2015.01.06, Version 0.10.32 (Stable), 378de30c59aef5fdb6d130fa5cfcb0a68fce571c
2801
+
2802
+ Changes since version 0.10.31:
2803
+
2804
+ * linux: fix epoll_pwait() sigmask size calculation (Ben Noordhuis)
2805
+
2806
+
2807
+ 2014.12.25, Version 1.1.0 (Stable), 9572f3e74a167f59a8017e57ca3ebe91ffd88e18
2808
+
2809
+ Changes since version 1.0.2:
2810
+
2811
+ * test: test that closing a poll handle doesn't corrupt the stack (Bert Belder)
2812
+
2813
+ * win: fix compilation of tests (Marc Schlaich)
2814
+
2815
+ * Revert "win: keep a reference to AFD_POLL_INFO in cancel poll" (Bert Belder)
2816
+
2817
+ * win: avoid stack corruption when closing a poll handle (Bert Belder)
2818
+
2819
+ * test: fix test-fs-file-loop on Windows (Bert Belder)
2820
+
2821
+ * test: fix test-cwd-and-chdir (Bert Belder)
2822
+
2823
+ * doc: indicate what version uv_loop_configure was added on (Saúl Ibarra
2824
+ Corretgé)
2825
+
2826
+ * doc: fix sphinx warning (Saúl Ibarra Corretgé)
2827
+
2828
+ * test: skip spawn_setuid_setgid if we get EACCES (Saúl Ibarra Corretgé)
2829
+
2830
+ * test: silence some Clang warnings (Saúl Ibarra Corretgé)
2831
+
2832
+ * test: relax osx_select_many_fds (Saúl Ibarra Corretgé)
2833
+
2834
+ * test: fix compilation warnings when building with Clang (Saúl Ibarra
2835
+ Corretgé)
2836
+
2837
+ * win: fix autotools build of tests (Luis Lavena)
2838
+
2839
+ * gitignore: ignore Visual Studio files (Marc Schlaich)
2840
+
2841
+ * win: set fallback message if FormatMessage fails (Marc Schlaich)
2842
+
2843
+ * win: fall back to default language in uv_dlerror (Marc Schlaich)
2844
+
2845
+ * test: improve compatibility for dlerror test (Marc Schlaich)
2846
+
2847
+ * test: check dlerror is "no error" in no error case (Marc Schlaich)
2848
+
2849
+ * unix: change uv_cwd not to return a trailing slash (Saúl Ibarra Corretgé)
2850
+
2851
+ * test: fix cwd_and_chdir test on Unix (Saúl Ibarra Corretgé)
2852
+
2853
+ * test: add uv_cwd output to platform_output test (Saúl Ibarra Corretgé)
2854
+
2855
+ * build: fix dragonflybsd autotools build (John Marino)
2856
+
2857
+ * win: scandir use 'ls' for formatting long strings (Kenneth Perry)
2858
+
2859
+ * build: remove clang and gcc_version gyp defines (Ben Noordhuis)
2860
+
2861
+ * unix, windows: don't treat uv_run_mode as a bitmask (Saúl Ibarra Corretgé)
2862
+
2863
+ * unix, windows: fix UV_RUN_ONCE mode if progress was made (Saúl Ibarra
2864
+ Corretgé)
2865
+
2866
+
2867
+ 2014.12.25, Version 0.10.31 (Stable), 4dbd27e2219069a6daa769fb37f98673b77b4261
2868
+
2869
+ Changes since version 0.10.30:
2870
+
2871
+ * test: test that closing a poll handle doesn't corrupt the stack (Bert Belder)
2872
+
2873
+ * win: fix compilation of tests (Marc Schlaich)
2874
+
2875
+ * Revert "win: keep a reference to AFD_POLL_INFO in cancel poll" (Bert Belder)
2876
+
2877
+ * win: avoid stack corruption when closing a poll handle (Bert Belder)
2878
+
2879
+ * gitignore: ignore Visual Studio files (Marc Schlaich)
2880
+
2881
+ * win: set fallback message if FormatMessage fails (Marc Schlaich)
2882
+
2883
+ * win: fall back to default language in uv_dlerror (Marc Schlaich)
2884
+
2885
+ * test: improve compatibility for dlerror test (Marc Schlaich)
2886
+
2887
+ * test: check dlerror is "no error" in no error case (Marc Schlaich)
2888
+
2889
+ * build: link against -pthread (Logan Rosen)
2890
+
2891
+ * win: scandir use 'ls' for formatting long strings (Kenneth Perry)
2892
+
2893
+
2894
+ 2014.12.10, Version 1.0.2 (Stable), eec671f0059953505f9a3c9aeb7f9f31466dd7cd
2895
+
2896
+ Changes since version 1.0.1:
2897
+
2898
+ * linux: fix sigmask size arg in epoll_pwait() call (Ben Noordhuis)
2899
+
2900
+ * linux: handle O_NONBLOCK != SOCK_NONBLOCK case (Helge Deller)
2901
+
2902
+ * doc: fix spelling (Joey Geralnik)
2903
+
2904
+ * unix, windows: fix typos in comments (Joey Geralnik)
2905
+
2906
+ * test: canonicalize test runner path (Ben Noordhuis)
2907
+
2908
+ * test: fix compilation warnings (Saúl Ibarra Corretgé)
2909
+
2910
+ * test: skip tty test if detected width and height are 0 (Saúl Ibarra Corretgé)
2911
+
2912
+ * doc: update README with IRC channel (Saúl Ibarra Corretgé)
2913
+
2914
+ * Revert "unix: use cfmakeraw() for setting raw TTY mode" (Ben Noordhuis)
2915
+
2916
+ * doc: document how to get result of uv_fs_mkdtemp (Tim Caswell)
2917
+
2918
+ * unix: add flag for blocking SIGPROF during poll (Ben Noordhuis)
2919
+
2920
+ * unix, windows: add uv_loop_configure() function (Ben Noordhuis)
2921
+
2922
+ * win: keep a reference to AFD_POLL_INFO in cancel poll (Marc Schlaich)
2923
+
2924
+ * test: raise fd limit for OSX select test (Saúl Ibarra Corretgé)
2925
+
2926
+ * unix: remove overzealous assert in uv_read_stop (Saúl Ibarra Corretgé)
2927
+
2928
+ * unix: reset the reading flag when a stream gets EOF (Saúl Ibarra Corretgé)
2929
+
2930
+ * unix: stop reading if an error is produced (Saúl Ibarra Corretgé)
2931
+
2932
+ * cleanup: remove all dead assignments (Maciej Małecki)
2933
+
2934
+ * linux: return early if we have no interfaces (Maciej Małecki)
2935
+
2936
+ * cleanup: remove a dead increment (Maciej Małecki)
2937
+
2938
+
2939
+ 2014.12.10, Version 0.10.30 (Stable), 5a63f5e9546dca482eeebc3054139b21f509f21f
2940
+
2941
+ Changes since version 0.10.29:
2942
+
2943
+ * linux: fix sigmask size arg in epoll_pwait() call (Ben Noordhuis)
2944
+
2945
+ * linux: handle O_NONBLOCK != SOCK_NONBLOCK case (Helge Deller)
2946
+
2947
+ * doc: update project links (Ben Noordhuis)
2948
+
2949
+ * windows: fix compilation of tests (Marc Schlaich)
2950
+
2951
+ * unix: add flag for blocking SIGPROF during poll (Ben Noordhuis)
2952
+
2953
+ * unix, windows: add uv_loop_configure() function (Ben Noordhuis)
2954
+
2955
+ * win: keep a reference to AFD_POLL_INFO in cancel poll (Marc Schlaich)
2956
+
2957
+
2958
+ 2014.11.27, Version 1.0.1 (Stable), 0a8e81374e861d425b56c45c8599595d848911d2
2959
+
2960
+ Changes since version 1.0.0:
2961
+
2962
+ * readme: remove Rust from users (Elijah Andrews)
2963
+
2964
+ * doc,build,include: update project links (Ben Noordhuis)
2965
+
2966
+ * doc: fix typo: Strcutures -> Structures (Michael Ira Krufky)
2967
+
2968
+ * unix: fix processing process handles queue (Saúl Ibarra Corretgé)
2969
+
2970
+ * win: replace non-ansi characters in source file (Bert Belder)
2971
+
2972
+
2973
+ 2014.11.21, Version 1.0.0 (Stable), feb2a9e6947d892f449b2770c4090f7d8c88381b
2974
+
2975
+ Changes since version 1.0.0-rc2:
2976
+
2977
+ * doc: fix git/svn url for gyp repo in README (Emmanuel Odeke)
2978
+
2979
+ * windows: fix fs_read with nbufs > 1 and offset (Unknown W. Brackets)
2980
+
2981
+ * win: add missing IP_ADAPTER_UNICAST_ADDRESS_LH definition for MinGW
2982
+ (huxingyi)
2983
+
2984
+ * doc: mention homebrew in README (Mikhail Mukovnikov)
2985
+
2986
+ * doc: add learnuv workshop to README (Thorsten Lorenz)
2987
+
2988
+ * doc: fix parameter name in uv_fs_access (Saúl Ibarra Corretgé)
2989
+
2990
+ * unix: use cfmakeraw() for setting raw TTY mode (Yuri D'Elia)
2991
+
2992
+ * win: fix uv_thread_self() (Alexis Campailla)
2993
+
2994
+ * build: add x32 support to gyp build (Ben Noordhuis)
2995
+
2996
+ * build: remove dtrace probes (Ben Noordhuis)
2997
+
2998
+ * doc: fix link in misc.rst (Manos Nikolaidis)
2999
+
3000
+ * mailmap: remove duplicated entries (Saúl Ibarra Corretgé)
3001
+
3002
+ * gyp: fix comment regarding version info location (Saúl Ibarra Corretgé)
3003
+
3004
+
3005
+ 2014.10.21, Version 1.0.0-rc2 (Pre-release)
3006
+
3007
+ Changes since version 1.0.0-rc1:
3008
+
3009
+ * build: add missing fixtures to distribution tarball (Rob Adams)
3010
+
3011
+ * doc: update references to current stable branch (Zachary Newman)
3012
+
3013
+ * fs: fix readdir on empty directory (Fedor Indutny)
3014
+
3015
+ * fs: rename uv_fs_readdir to uv_fs_scandir (Saúl Ibarra Corretgé)
3016
+
3017
+ * doc: document uv_alloc_cb (Saúl Ibarra Corretgé)
3018
+
3019
+ * doc: add migration guide from version 0.10 (Saúl Ibarra Corretgé)
3020
+
3021
+ * build: add DragonFly BSD support in autotools (Robin Hahling)
3022
+
3023
+ * doc: document missing stream related structures (Saúl Ibarra Corretgé)
3024
+
3025
+ * doc: clarify uv_loop_t.data field lifetime (Saúl Ibarra Corretgé)
3026
+
3027
+ * doc: add documentation for missing functions and structures (Saúl Ibarra
3028
+ Corretgé)
3029
+
3030
+ * doc: fix punctuation and grammar in README (Jeff Widman)
3031
+
3032
+ * windows: return libuv error codes in uv_poll_init() (cjihrig)
3033
+
3034
+ * unix, windows: add uv_fs_access() (cjihrig)
3035
+
3036
+ * windows: fix netmask detection (Alexis Campailla)
3037
+
3038
+ * unix, windows: don't include null byte in uv_cwd size (Saúl Ibarra Corretgé)
3039
+
3040
+ * unix, windows: add uv_thread_equal (Tomasz Kołodziejski)
3041
+
3042
+ * windows: fix fs_write with nbufs > 1 and offset (Unknown W. Brackets)
3043
+
3044
+
3045
+ 2014.10.21, Version 0.10.29 (Stable), 2d728542d3790183417f8f122a110693cd85db14
3046
+
3047
+ Changes since version 0.10.28:
3048
+
3049
+ * darwin: allocate enough space for select() hack (Fedor Indutny)
3050
+
3051
+ * linux: try epoll_pwait if epoll_wait is missing (Michael Hudson-Doyle)
3052
+
3053
+ * windows: map ERROR_INVALID_DRIVE to UV_ENOENT (Saúl Ibarra Corretgé)
3054
+
3055
+
3056
+ 2014.09.18, Version 1.0.0-rc1 (Unstable), 0c28bbf7b42882853d1799ab96ff68b07f7f8d49
3057
+
3058
+ Changes since version 0.11.29:
3059
+
3060
+ * windows: improve timer precision (Alexis Campailla)
3061
+
3062
+ * build, gyp: set xcode flags (Recep ASLANTAS)
3063
+
3064
+ * ignore: include m4 files which are created manually (Recep ASLANTAS)
3065
+
3066
+ * build: add m4 for feature/flag-testing (Recep ASLANTAS)
3067
+
3068
+ * ignore: ignore Xcode project and workspace files (Recep ASLANTAS)
3069
+
3070
+ * unix: fix warnings about dollar symbol usage in identifiers (Recep ASLANTAS)
3071
+
3072
+ * unix: fix warnings when loading functions with dlsym (Recep ASLANTAS)
3073
+
3074
+ * linux: try epoll_pwait if epoll_wait is missing (Michael Hudson-Doyle)
3075
+
3076
+ * test: add test for closing and recreating default loop (Saúl Ibarra Corretgé)
3077
+
3078
+ * windows: properly close the default loop (Saúl Ibarra Corretgé)
3079
+
3080
+ * version: add ability to specify a version suffix (Saúl Ibarra Corretgé)
3081
+
3082
+ * doc: add API documentation (Saúl Ibarra Corretgé)
3083
+
3084
+ * test: don't close connection on write error (Trevor Norris)
3085
+
3086
+ * windows: further simplify the code for timers (Saúl Ibarra Corretgé)
3087
+
3088
+ * gyp: remove UNLIMITED_SELECT from dependent define (Fedor Indutny)
3089
+
3090
+ * darwin: allocate enough space for select() hack (Fedor Indutny)
3091
+
3092
+ * unix, windows: don't allow a NULL callback on timers (Saúl Ibarra Corretgé)
3093
+
3094
+ * windows: simplify code in uv_timer_again (Saúl Ibarra Corretgé)
3095
+
3096
+ * test: use less requests on tcp-write-queue-order (Saúl Ibarra Corretgé)
3097
+
3098
+ * unix: stop child process watcher after last one exits (Saúl Ibarra Corretgé)
3099
+
3100
+ * unix: simplify how process handle queue is managed (Saúl Ibarra Corretgé)
3101
+
3102
+ * windows: remove duplicated field (mattn)
3103
+
3104
+ * core: add a reserved field to uv_handle_t and uv_req_t (Saúl Ibarra Corretgé)
3105
+
3106
+ * windows: fix buffer leak after failed udp send (Bert Belder)
3107
+
3108
+ * windows: make sure sockets and handles are reset on close (Saúl Ibarra Corretgé)
3109
+
3110
+ * unix, windows: add uv_fileno (Saúl Ibarra Corretgé)
3111
+
3112
+ * build: use same CFLAGS in autotools build as in gyp (Saúl Ibarra Corretgé)
3113
+
3114
+ * build: remove unneeded define in uv.gyp (Saúl Ibarra Corretgé)
3115
+
3116
+ * test: fix watcher_cross_stop on Windows (Saúl Ibarra Corretgé)
3117
+
3118
+ * unix, windows: move includes for EAI constants (Saúl Ibarra Corretgé)
3119
+
3120
+ * unix: fix exposing EAI_* glibc-isms (Saúl Ibarra Corretgé)
3121
+
3122
+ * unix: fix tcp write after bad connect freezing (Andrius Bentkus)
3123
+
3124
+
3125
+ 2014.08.20, Version 0.11.29 (Unstable), 35451fed830807095bbae8ef981af004a4b9259e
3126
+
3127
+ Changes since version 0.11.28:
3128
+
3129
+ * windows: make uv_read_stop immediately stop reading (Jameson Nash)
3130
+
3131
+ * windows: fix uv__getaddrinfo_translate_error (Alexis Campailla)
3132
+
3133
+ * netbsd: fix build (Saúl Ibarra Corretgé)
3134
+
3135
+ * unix, windows: add uv_recv_buffer_size and uv_send_buffer_size (Andrius
3136
+ Bentkus)
3137
+
3138
+ * windows: add support for UNC paths on uv_spawn (Paul Goldsmith)
3139
+
3140
+ * windows: replace use of inet_addr with uv_inet_pton (Saúl Ibarra Corretgé)
3141
+
3142
+ * unix: replace some asserts with returning errors (Andrius Bentkus)
3143
+
3144
+ * windows: use OpenBSD implementation for uv_fs_mkdtemp (Pavel Platto)
3145
+
3146
+ * windows: fix GetNameInfoW error handling (Alexis Campailla)
3147
+
3148
+ * fs: introduce uv_readdir_next() and report types (Fedor Indutny)
3149
+
3150
+ * fs: extend reported types in uv_fs_readdir_next (Saúl Ibarra Corretgé)
3151
+
3152
+ * unix: read on stream even when UV__POLLHUP set. (Julien Gilli)
3153
+
3154
+
3155
+ 2014.08.08, Version 0.11.28 (Unstable), fc9e2a0bc487b299c0cd3b2c9a23aeb554b5d8d1
3156
+
3157
+ Changes since version 0.11.27:
3158
+
3159
+ * unix, windows: const-ify handle in uv_udp_getsockname (Rasmus Pedersen)
3160
+
3161
+ * windows: use UV_ECANCELED for aborted TCP writes (Saúl Ibarra Corretgé)
3162
+
3163
+ * windows: add more required environment variables (Jameson Nash)
3164
+
3165
+ * windows: sort environment variables before calling CreateProcess (Jameson
3166
+ Nash)
3167
+
3168
+ * unix, windows: move uv_loop_close out of assert (John Firebaugh)
3169
+
3170
+ * windows: fix buffer overflow on uv__getnameinfo_work() (lilohuang)
3171
+
3172
+ * windows: add uv_backend_timeout (Jameson Nash)
3173
+
3174
+ * test: disable tcp_close_accept on Windows (Saúl Ibarra Corretgé)
3175
+
3176
+ * windows: read the PATH env var of the child (Alex Crichton)
3177
+
3178
+ * include: avoid using C++ 'template' reserved word (Iñaki Baz Castillo)
3179
+
3180
+ * include: fix version number (Saúl Ibarra Corretgé)
3181
+
3182
+
3183
+ 2014.07.32, Version 0.11.27 (Unstable), ffe24f955032d060968ea0289af365006afed55e
3184
+
3185
+ Changes since version 0.11.26:
3186
+
3187
+ * unix, windows: use the same threadpool implementation (Saúl Ibarra Corretgé)
3188
+
3189
+ * unix: use struct sockaddr_storage for target UDP addr (Saúl Ibarra Corretgé)
3190
+
3191
+ * doc: add documentation to uv_udp_start_recv (Andrius Bentkus)
3192
+
3193
+ * common: use common uv__count_bufs code (Andrius Bentkus)
3194
+
3195
+ * unix, win: add send_queue_size and send_queue_count to uv_udp_t (Andrius
3196
+ Bentkus)
3197
+
3198
+ * unix, win: add uv_udp_try_send (Andrius Bentkus)
3199
+
3200
+ * unix: return UV_EAGAIN if uv_try_write cannot write any data (Saúl Ibarra
3201
+ Corretgé)
3202
+
3203
+ * windows: fix compatibility with cygwin pipes (Jameson Nash)
3204
+
3205
+ * windows: count queued bytes even if request completed immediately (Saúl
3206
+ Ibarra Corretgé)
3207
+
3208
+ * windows: disable CRT debug handler on MinGW32 (Saúl Ibarra Corretgé)
3209
+
3210
+ * windows: map ERROR_INVALID_DRIVE to UV_ENOENT (Saúl Ibarra Corretgé)
3211
+
3212
+ * unix: try to write immediately in uv_udp_send (Saúl Ibarra Corretgé)
3213
+
3214
+ * unix: remove incorrect assert (Saúl Ibarra Corretgé)
3215
+
3216
+ * openbsd: avoid requiring privileges for uv_resident_set_memory (Aaron Bieber)
3217
+
3218
+ * unix: guarantee write queue cb execution order in streams (Andrius Bentkus)
3219
+
3220
+ * img: add logo files (Saúl Ibarra Corretgé)
3221
+
3222
+ * aix: improve AIX compatibility (Andrew Low)
3223
+
3224
+ * windows: return bind error immediately when implicitly binding (Saúl Ibarra
3225
+ Corretgé)
3226
+
3227
+ * windows: don't use atexit for cleaning up the threadpool (Saúl Ibarra
3228
+ Corretgé)
3229
+
3230
+ * windows: destroy work queue elements when colsing a loop (Saúl Ibarra
3231
+ Corretgé)
3232
+
3233
+ * unix, windows: add uv_fs_mkdtemp (Pavel Platto)
3234
+
3235
+ * build: handle platforms without multiprocessing.synchronize (Saúl Ibarra
3236
+ Corretgé)
3237
+
3238
+ * windows: change GENERIC_ALL to GENERIC_WRITE in fs__create_junction (Tony
3239
+ Kelman)
3240
+
3241
+ * windows: relay TCP bind errors via ipc (Alexis Campailla)
3242
+
3243
+
3244
+ 2014.07.32, Version 0.10.28 (Stable), 9c14b616f5fb84bfd7d45707bab4bbb85894443e
3245
+
3246
+ Changes since version 0.10.27:
3247
+
3248
+ * windows: fix handling closed socket while poll handle is closing (Saúl Ibarra
3249
+ Corretgé)
3250
+
3251
+ * unix: return system error on EAI_SYSTEM (Saúl Ibarra Corretgé)
3252
+
3253
+ * unix: fix bogus structure field name (Saúl Ibarra Corretgé)
3254
+
3255
+ * darwin: invoke `mach_timebase_info` only once (Fedor Indutny)
3256
+
3257
+
3258
+ 2014.06.28, Version 0.11.26 (Unstable), 115281a1058c4034d5c5ccedacb667fe3f6327ea
3259
+
3260
+ Changes since version 0.11.25:
3261
+
3262
+ * windows: add VT100 codes ?25l and ?25h (JD Ballard)
3263
+
3264
+ * windows: add invert ANSI (7 / 27) emulation (JD Ballard)
3265
+
3266
+ * unix: fix handling error on UDP socket creation (Saúl Ibarra Corretgé)
3267
+
3268
+ * unix, windows: getnameinfo implementation (Rasmus Pedersen)
3269
+
3270
+ * heap: fix `heap_remove()` (Fedor Indutny)
3271
+
3272
+ * unix, windows: fix parsing scoped IPv6 addresses (Saúl Ibarra Corretgé)
3273
+
3274
+ * windows: fix handling closed socket while poll handle is closing (Saúl Ibarra
3275
+ Corretgé)
3276
+
3277
+ * thread: barrier functions (Ben Noordhuis)
3278
+
3279
+ * windows: fix PYTHON environment variable usage (Jay Satiro)
3280
+
3281
+ * unix, windows: return system error on EAI_SYSTEM (Saúl Ibarra Corretgé)
3282
+
3283
+ * windows: fix handling closed socket while poll handle is closing (Saúl Ibarra
3284
+ Corretgé)
3285
+
3286
+ * unix: don't run i/o callbacks after prepare callbacks (Saúl Ibarra Corretgé)
3287
+
3288
+ * windows: add tty unicode support for input (Peter Atashian)
3289
+
3290
+ * header: introduce `uv_loop_size()` (Andrius Bentkus)
3291
+
3292
+ * darwin: invoke `mach_timebase_info` only once (Fedor Indutny)
3293
+
3294
+
3295
+ 2014.05.02, Version 0.11.25 (Unstable), 2acd544cff7142e06aa3b09ec64b4a33dd9ab996
3296
+
3297
+ Changes since version 0.11.24:
3298
+
3299
+ * osx: pass const handle pointer to uv___stream_fd (Chernyshev Viacheslav)
3300
+
3301
+ * unix, windows: pass const handle ptr to uv_tcp_get*name (Chernyshev
3302
+ Viacheslav)
3303
+
3304
+ * common: pass const sockaddr ptr to uv_ip*_name (Chernyshev Viacheslav)
3305
+
3306
+ * unix, windows: validate flags on uv_udp|tcp_bind (Saúl Ibarra Corretgé)
3307
+
3308
+ * unix: handle case when addr is not initialized after recvmsg (Saúl Ibarra
3309
+ Corretgé)
3310
+
3311
+ * unix, windows: uv_now constness (Rasmus Pedersen)
3312
+
3313
+
3314
+ 2014.04.15, Version 0.11.24 (Unstable), ed948c29f6e8c290f79325a6f0bc9ef35bcde644
3315
+
3316
+ Changes since version 0.11.23:
3317
+
3318
+ * linux: reduce file descriptor count of async pipe (Ben Noordhuis)
3319
+
3320
+ * sunos: support IPv6 qualified link-local addresses (Saúl Ibarra Corretgé)
3321
+
3322
+ * windows: fix opening of read-only stdin pipes (Alexis Campailla)
3323
+
3324
+ * windows: Fix an infinite loop in uv_spawn (Alex Crichton)
3325
+
3326
+ * windows: fix console signal handler refcount (李港平)
3327
+
3328
+ * inet: allow scopeid in uv_inet_pton (Fedor Indutny)
3329
+
3330
+
3331
+ 2014.04.07, Version 0.11.23 (Unstable), e54de537efcacd593f36fcaaf8b4cb9e64313275
3332
+
3333
+ Changes since version 0.11.22:
3334
+
3335
+ * fs: avoid using readv/writev where possible (Fedor Indutny)
3336
+
3337
+ * mingw: fix build with autotools (Saúl Ibarra Corretgé)
3338
+
3339
+ * bsd: support IPv6 qualified link-local addresses (Saúl Ibarra Corretgé)
3340
+
3341
+ * unix: add UV_HANDLE_IPV6 flag to tcp and udp handles (Saúl Ibarra Corretgé)
3342
+
3343
+ * unix, windows: do not set SO_REUSEADDR by default on udp (Saúl Ibarra
3344
+ Corretgé)
3345
+
3346
+ * windows: fix check in uv_tty_endgame() (Maks Naumov)
3347
+
3348
+ * unix, windows: add IPv6 support for uv_udp_multicast_interface (Saúl Ibarra
3349
+ Corretgé)
3350
+
3351
+ * unix: fallback to blocking writes if reopening a tty fails (Saúl Ibarra
3352
+ Corretgé)
3353
+
3354
+ * unix: fix handling uv__open_cloexec failure (Saúl Ibarra Corretgé)
3355
+
3356
+ * unix, windows: add IPv6 support to uv_udp_set_membership (Saúl Ibarra
3357
+ Corretgé)
3358
+
3359
+ * unix, windows: removed unused status parameter (Saúl Ibarra Corretgé)
3360
+
3361
+ * android: add support of ifaddrs in android (Javier Hernández)
3362
+
3363
+ * build: fix SunOS and AIX build with autotools (Saúl Ibarra Corretgé)
3364
+
3365
+ * build: freebsd link with libelf if dtrace enabled (Saúl Ibarra Corretgé)
3366
+
3367
+ * stream: do not leak `alloc_cb` buffers on error (Fedor Indutny)
3368
+
3369
+ * unix: fix setting written size on uv_wd (Saúl Ibarra Corretgé)
3370
+
3371
+
3372
+ 2014.03.11, Version 0.11.22 (Unstable), cd0c19b1d3c56acf0ade7687006e12e75fbda36d
3373
+
3374
+ Changes since version 0.11.21:
3375
+
3376
+ * unix, windows: map ERANGE errno (Saúl Ibarra Corretgé)
3377
+
3378
+ * unix, windows: make uv_cwd be consistent with uv_exepath (Saúl Ibarra
3379
+ Corretgé)
3380
+
3381
+ * process: remove debug perror() prints (Fedor Indutny)
3382
+
3383
+ * windows: fall back for volume info query (Isaiah Norton)
3384
+
3385
+ * pipe: allow queueing pending handles (Fedor Indutny)
3386
+
3387
+ * windows: fix winsock status codes for address errors (Raul Martins)
3388
+
3389
+ * windows: Remove unused variable from uv__pipe_insert_pending_socket (David
3390
+ Capello)
3391
+
3392
+ * unix: workaround broken pthread_sigmask on Android (Paul Tan)
3393
+
3394
+ * error: add ENXIO for O_NONBLOCK FIFO open() (Fedor Indutny)
3395
+
3396
+ * freebsd: use accept4, introduced in version 10 (Saúl Ibarra Corretgé)
3397
+
3398
+ * windows: fix warnings of MinGW -Wall -O3 (StarWing)
3399
+
3400
+ * openbsd, osx: fix compilation warning on scandir (Saúl Ibarra Corretgé)
3401
+
3402
+ * linux: always deregister closing fds from epoll (Geoffry Song)
3403
+
3404
+ * unix: reopen tty as /dev/tty (Saúl Ibarra Corretgé)
3405
+
3406
+ * kqueue: invalidate fd in uv_fs_event_t (Fedor Indutny)
3407
+
3408
+
3409
+ 2014.02.28, Version 0.11.21 (Unstable), 3ef958158ae1019e027ebaa93114160099db5206
3410
+
3411
+ Changes since version 0.11.20:
3412
+
3413
+ * unix: fix uv_fs_write when using an empty buffer (Saúl Ibarra Corretgé)
3414
+
3415
+ * unix, windows: add assertion in uv_loop_delete (Saúl Ibarra Corretgé)
3416
+
3417
+
3418
+ 2014.02.27, Version 0.11.20 (Unstable), 88355e081b51c69ee1e2b6b0015a4e3d38bd0579
3419
+
3420
+ Changes since version 0.11.19:
3421
+
3422
+ * stream: start thread after assignments (Oguz Bastemur)
3423
+
3424
+ * fs: `uv__cloexec()` opened fd (Fedor Indutny)
3425
+
3426
+ * gyp: qualify `library` variable (Fedor Indutny)
3427
+
3428
+ * unix, win: add uv_udp_set_multicast_interface() (Austin Foxley)
3429
+
3430
+ * unix: fix uv_tcp_nodelay return value in case of error (Saúl Ibarra Corretgé)
3431
+
3432
+ * unix: call setgoups before calling setuid/setgid (Saúl Ibarra Corretgé)
3433
+
3434
+ * include: mark close_cb field as private (Saúl Ibarra Corretgé)
3435
+
3436
+ * unix, windows: map EFBIG errno (Saúl Ibarra Corretgé)
3437
+
3438
+ * unix: correct error when calling uv_shutdown twice (Keno Fischer)
3439
+
3440
+ * windows: fix building on MinGW (Alex Crichton)
3441
+
3442
+ * windows: always initialize uv_process_t (Alex Crichton)
3443
+
3444
+ * include: expose libuv version in header files (Saúl Ibarra Corretgé)
3445
+
3446
+ * fs: vectored IO API for filesystem read/write (Benjamin Saunders)
3447
+
3448
+ * windows: freeze in uv_tcp_endgame (Alexis Campailla)
3449
+
3450
+ * sunos: handle rearm errors (Fedor Indutny)
3451
+
3452
+ * unix: use a heap for timers (Ben Noordhuis)
3453
+
3454
+ * linux: always deregister closing fds from epoll (Geoffry Song)
3455
+
3456
+ * linux: include grp.h for setgroups() (William Light)
3457
+
3458
+ * unix, windows: add uv_loop_init and uv_loop_close (Saúl Ibarra Corretgé)
3459
+
3460
+ * unix, windows: add uv_getrusage() function (Oleg Efimov)
3461
+
3462
+ * win: minor error handle fix to uv_pipe_write_impl (Rasmus Pedersen)
3463
+
3464
+ * heap: fix node removal (Keno Fischer)
3465
+
3466
+ * win: fix C99/C++ comment (Rasmus Pedersen)
3467
+
3468
+ * fs: vectored IO API for filesystem read/write (Benjamin Saunders)
3469
+
3470
+ * unix, windows: add uv_pipe_getsockname (Saúl Ibarra Corretgé)
3471
+
3472
+ * unix, windows: map ENOPROTOOPT errno (Saúl Ibarra Corretgé)
3473
+
3474
+ * errno: add ETXTBSY (Fedor Indutny)
3475
+
3476
+ * fsevent: rename filename field to path (Saúl Ibarra Corretgé)
3477
+
3478
+ * unix, windows: add uv_fs_event_getpath (Saúl Ibarra Corretgé)
3479
+
3480
+ * unix, windows: add uv_fs_poll_getpath (Saúl Ibarra Corretgé)
3481
+
3482
+ * unix, windows: map ERANGE errno (Saúl Ibarra Corretgé)
3483
+
3484
+ * unix, windows: set required size on UV_ENOBUFS (Saúl Ibarra Corretgé)
3485
+
3486
+ * unix, windows: clarify what uv_stream_set_blocking does (Saúl Ibarra
3487
+ Corretgé)
3488
+
3489
+ * fs: use preadv on Linux if available (Brian White)
3490
+
3491
+
3492
+ 2014.01.30, Version 0.11.19 (Unstable), 336a1825309744f920230ec3e427e78571772347
3493
+
3494
+ Changes since version 0.11.18:
3495
+
3496
+ * linux: move sscanf() out of the assert() (Trevor Norris)
3497
+
3498
+ * linux: fix C99/C++ comment (Fedor Indutny)
3499
+
3500
+
3501
+ 2014.05.02, Version 0.10.27 (Stable), 6e24ce23b1e7576059f85a608eca13b766458a01
3502
+
3503
+ Changes since version 0.10.26:
3504
+
3505
+ * windows: fix console signal handler refcount (Saúl Ibarra Corretgé)
3506
+
3507
+ * win: always leave crit section in get_proc_title (Fedor Indutny)
3508
+
3509
+
3510
+ 2014.04.07, Version 0.10.26 (Stable), d864907611c25ec986c5e77d4d6d6dee88f26926
3511
+
3512
+ Changes since version 0.10.25:
3513
+
3514
+ * process: don't close stdio fds during spawn (Tonis Tiigi)
3515
+
3516
+ * build, windows: do not fail on Windows SDK Prompt (Marc Schlaich)
3517
+
3518
+ * build, windows: fix x64 configuration issue (Marc Schlaich)
3519
+
3520
+ * win: fix buffer leak on error in pipe.c (Fedor Indutny)
3521
+
3522
+ * kqueue: invalidate fd in uv_fs_event_t (Fedor Indutny)
3523
+
3524
+ * linux: always deregister closing fds from epoll (Geoffry Song)
3525
+
3526
+ * error: add ENXIO for O_NONBLOCK FIFO open() (Fedor Indutny)
3527
+
3528
+
3529
+ 2014.02.19, Version 0.10.25 (Stable), d778dc588507588b12b9f9d2905078db542ed751
3530
+
3531
+ Changes since version 0.10.24:
3532
+
3533
+ * stream: start thread after assignments (Oguz Bastemur)
3534
+
3535
+ * unix: correct error when calling uv_shutdown twice (Saúl Ibarra Corretgé)
3536
+
3537
+ 2014.01.30, Version 0.10.24 (Stable), aecd296b6bce9b40f06a61c5c94e43d45ac7308a
3538
+
3539
+ Changes since version 0.10.23:
3540
+
3541
+ * linux: move sscanf() out of the assert() (Trevor Norris)
3542
+
3543
+ * linux: fix C99/C++ comment (Fedor Indutny)
3544
+
3545
+
3546
+ 2014.01.23, Version 0.11.18 (Unstable), d47962e9d93d4a55a9984623feaf546406c9cdbb
3547
+
3548
+ Changes since version 0.11.17:
3549
+
3550
+ * osx: Fix a possible segfault in uv__io_poll (Alex Crichton)
3551
+
3552
+ * windows: improved handling of invalid FDs (Alexis Campailla)
3553
+
3554
+ * doc: adding ARCHS flag to OS X build command (Nathan Sweet)
3555
+
3556
+ * tcp: reveal bind-time errors before listen (Alexis Campailla)
3557
+
3558
+ * tcp: uv_tcp_dualstack() (Fedor Indutny)
3559
+
3560
+ * linux: relax assumption on /proc/stat parsing (Luca Bruno)
3561
+
3562
+ * openbsd: fix obvious bug in uv_cpu_info (Fedor Indutny)
3563
+
3564
+ * process: close stdio after dup2'ing it (Fedor Indutny)
3565
+
3566
+ * linux: move sscanf() out of the assert() (Trevor Norris)
3567
+
3568
+
3569
+ 2014.01.23, Version 0.10.23 (Stable), dbd218e699fec8be311d85e4788be9e28ae884f8
3570
+
3571
+ Changes since version 0.10.22:
3572
+
3573
+ * linux: relax assumption on /proc/stat parsing (Luca Bruno)
3574
+
3575
+ * openbsd: fix obvious bug in uv_cpu_info (Fedor Indutny)
3576
+
3577
+ * process: close stdio after dup2'ing it (Fedor Indutny)
3578
+
3579
+
3580
+ 2014.01.08, Version 0.10.22 (Stable), f526c90eeff271d9323a9107b9a64a4671fd3103
3581
+
3582
+ Changes since version 0.10.21:
3583
+
3584
+ * windows: avoid assertion failure when pipe server is closed (Bert Belder)
3585
+
3586
+
3587
+ 2013.12.32, Version 0.11.17 (Unstable), 589c224d4c2e79fec65db01d361948f1e4976858
3588
+
3589
+ Changes since version 0.11.16:
3590
+
3591
+ * stream: allow multiple buffers for uv_try_write (Fedor Indutny)
3592
+
3593
+ * unix: fix a possible memory leak in uv_fs_readdir (Alex Crichton)
3594
+
3595
+ * unix, windows: add uv_loop_alive() function (Sam Roberts)
3596
+
3597
+ * windows: avoid assertion failure when pipe server is closed (Bert Belder)
3598
+
3599
+ * osx: Fix a possible segfault in uv__io_poll (Alex Crichton)
3600
+
3601
+ * stream: fix uv__stream_osx_select (Fedor Indutny)
3602
+
3603
+
3604
+ 2013.12.14, Version 0.11.16 (Unstable), ae0ed8c49d0d313c935c22077511148b6e8408a4
3605
+
3606
+ Changes since version 0.11.15:
3607
+
3608
+ * fsevents: remove kFSEventStreamCreateFlagNoDefer polyfill (ci-innoq)
3609
+
3610
+ * libuv: add more getaddrinfo errors (Steven Kabbes)
3611
+
3612
+ * unix: fix accept() EMFILE error handling (Ben Noordhuis)
3613
+
3614
+ * linux: fix up SO_REUSEPORT back-port (Ben Noordhuis)
3615
+
3616
+ * fsevents: fix subfolder check (Fedor Indutny)
3617
+
3618
+ * fsevents: fix invalid memory access (huxingyi)
3619
+
3620
+ * windows/timer: fix uv_hrtime discontinuity (Bert Belder)
3621
+
3622
+ * unix: fix various memory leaks and undef behavior (Fedor Indutny)
3623
+
3624
+ * unix, windows: always update loop time (Saúl Ibarra Corretgé)
3625
+
3626
+ * windows: translate system errors in uv_spawn (Alexis Campailla)
3627
+
3628
+ * windows: uv_spawn code refactor (Alexis Campailla)
3629
+
3630
+ * unix, windows: detect errors in uv_ip4/6_addr (Yorkie)
3631
+
3632
+ * stream: introduce uv_try_write(...) (Fedor Indutny)
3633
+
3634
+
3635
+ 2013.12.13, Version 0.10.20 (Stable), 04141464dd0fba90ace9aa6f7003ce139b888a40
3636
+
3637
+ Changes since version 0.10.19:
3638
+
3639
+ * linux: fix up SO_REUSEPORT back-port (Ben Noordhuis)
3640
+
3641
+ * fs-event: fix invalid memory access (huxingyi)
3642
+
3643
+
3644
+ 2013.11.21, Version 0.11.15 (Unstable), bfe645ed7e99ca5670d9279ad472b604c129d2e5
3645
+
3646
+ Changes since version 0.11.14:
3647
+
3648
+ * fsevents: report errors to user (Fedor Indutny)
3649
+
3650
+ * include: UV_FS_EVENT_RECURSIVE is a flag (Fedor Indutny)
3651
+
3652
+ * linux: use CLOCK_MONOTONIC_COARSE if available (Ben Noordhuis)
3653
+
3654
+ * build: make systemtap probes work with gyp build (Ben Noordhuis)
3655
+
3656
+ * unix: update events from pevents between polls (Fedor Indutny)
3657
+
3658
+ * fsevents: support japaneese characters in path (Chris Bank)
3659
+
3660
+ * linux: don't turn on SO_REUSEPORT socket option (Ben Noordhuis)
3661
+
3662
+ * queue: strengthen type checks (Ben Noordhuis)
3663
+
3664
+ * include: remove uv_strlcat() and uv_strlcpy() (Ben Noordhuis)
3665
+
3666
+ * build: fix windows smp build with gyp (Geert Jansen)
3667
+
3668
+ * unix: return exec errors from uv_spawn, not async (Alex Crichton)
3669
+
3670
+ * fsevents: use native character encoding file paths (Ben Noordhuis)
3671
+
3672
+ * linux: handle EPOLLHUP without EPOLLIN/EPOLLOUT (Ben Noordhuis)
3673
+
3674
+ * windows: use _snwprintf(), not swprintf() (Ben Noordhuis)
3675
+
3676
+ * fsevents: use FlagNoDefer for FSEventStreamCreate (Fedor Indutny)
3677
+
3678
+ * unix: fix reopened fd bug (Fedor Indutny)
3679
+
3680
+ * core: fix fake watcher list and count preservation (Fedor Indutny)
3681
+
3682
+ * unix: set close-on-exec flag on received fds (Ben Noordhuis)
3683
+
3684
+ * netbsd, openbsd: enable futimes() wrapper (Ben Noordhuis)
3685
+
3686
+ * unix: nicer error message when kqueue() fails (Ben Noordhuis)
3687
+
3688
+ * samples: add socks5 proxy sample application (Ben Noordhuis)
3689
+
3690
+
3691
+ 2013.11.13, Version 0.10.19 (Stable), 33959f7524090b8d2c6c41e2400ca77e31755059
3692
+
3693
+ Changes since version 0.10.18:
3694
+
3695
+ * darwin: avoid calling GetCurrentProcess (Fedor Indutny)
3696
+
3697
+ * unix: update events from pevents between polls (Fedor Indutny)
3698
+
3699
+ * fsevents: support japaneese characters in path (Chris Bank)
3700
+
3701
+ * linux: don't turn on SO_REUSEPORT socket option (Ben Noordhuis)
3702
+
3703
+ * build: fix windows smp build with gyp (Geert Jansen)
3704
+
3705
+ * linux: handle EPOLLHUP without EPOLLIN/EPOLLOUT (Ben Noordhuis)
3706
+
3707
+ * unix: fix reopened fd bug (Fedor Indutny)
3708
+
3709
+ * core: fix fake watcher list and count preservation (Fedor Indutny)
3710
+
3711
+
3712
+ 2013.10.30, Version 0.11.14 (Unstable), d7a6482f45c1b4eb4a853dbe1a9ce8090a35633a
3713
+
3714
+ Changes since version 0.11.13:
3715
+
3716
+ * darwin: create fsevents thread on demand (Ben Noordhuis)
3717
+
3718
+ * fsevents: FSEvents is most likely not thread-safe (Fedor Indutny)
3719
+
3720
+ * fsevents: use shared FSEventStream (Fedor Indutny)
3721
+
3722
+ * windows: make uv_fs_chmod() report errors correctly (Bert Belder)
3723
+
3724
+ * windows: make uv_shutdown() for write-only pipes work (Bert Belder)
3725
+
3726
+ * windows/fs: wrap multi-statement macros in do..while block (Bert Belder)
3727
+
3728
+ * windows/fs: make uv_fs_open() report EINVAL correctly (Bert Belder)
3729
+
3730
+ * windows/fs: handle _open_osfhandle() failure correctly (Bert Belder)
3731
+
3732
+ * windows/fs: wrap multi-statement macros in do..while block (Bert Belder)
3733
+
3734
+ * windows/fs: make uv_fs_open() report EINVAL correctly (Bert Belder)
3735
+
3736
+ * windows/fs: handle _open_osfhandle() failure correctly (Bert Belder)
3737
+
3738
+ * build: clarify instructions for Windows (Brian Kaisner)
3739
+
3740
+ * build: remove GCC_WARN_ABOUT_MISSING_NEWLINE (Ben Noordhuis)
3741
+
3742
+ * darwin: fix 10.6 build error in fsevents.c (Ben Noordhuis)
3743
+
3744
+ * windows: run close callbacks after polling for i/o (Saúl Ibarra Corretgé)
3745
+
3746
+ * include: clarify uv_tcp_bind() behavior (Ben Noordhuis)
3747
+
3748
+ * include: clean up includes in uv.h (Ben Noordhuis)
3749
+
3750
+ * include: remove UV_IO_PRIVATE_FIELDS macro (Ben Noordhuis)
3751
+
3752
+ * include: fix typo in comment in uv.h (Ben Noordhuis)
3753
+
3754
+ * include: update uv_is_active() documentation (Ben Noordhuis)
3755
+
3756
+ * include: make uv_process_options_t.cwd const (Ben Noordhuis)
3757
+
3758
+ * unix: wrap long lines at 80 columns (Ben Noordhuis)
3759
+
3760
+ * unix, windows: make uv_is_*() always return 0 or 1 (Ben Noordhuis)
3761
+
3762
+ * bench: measure total/init/dispatch/cleanup times (Ben Noordhuis)
3763
+
3764
+ * build: use -pthread on sunos (Timothy J. Fontaine)
3765
+
3766
+ * windows: remove duplicate check in stream.c (Ben Noordhuis)
3767
+
3768
+ * unix: sanity-check fds before closing (Ben Noordhuis)
3769
+
3770
+ * unix: remove uv__pipe_accept() (Ben Noordhuis)
3771
+
3772
+ * unix: fix uv_spawn() NULL pointer deref on ENOMEM (Ben Noordhuis)
3773
+
3774
+ * unix: don't close inherited fds on uv_spawn() fail (Ben Noordhuis)
3775
+
3776
+ * unix: revert recent FSEvent changes (Ben Noordhuis)
3777
+
3778
+ * fsevents: fix clever rescheduling (Fedor Indutny)
3779
+
3780
+ * linux: ignore fractional time in uv_uptime() (Ben Noordhuis)
3781
+
3782
+ * unix: fix SIGCHLD waitpid() race in process.c (Ben Noordhuis)
3783
+
3784
+ * unix, windows: add uv_fs_event_start/stop functions (Saúl Ibarra Corretgé)
3785
+
3786
+ * unix: fix non-synchronized access in signal.c (Ben Noordhuis)
3787
+
3788
+ * unix: add atomic-ops.h (Ben Noordhuis)
3789
+
3790
+ * unix: add spinlock.h (Ben Noordhuis)
3791
+
3792
+ * unix: clean up uv_tty_set_mode() a little (Ben Noordhuis)
3793
+
3794
+ * unix: make uv_tty_reset_mode() async signal-safe (Ben Noordhuis)
3795
+
3796
+ * include: add E2BIG status code mapping (Ben Noordhuis)
3797
+
3798
+ * windows: fix duplicate case build error (Ben Noordhuis)
3799
+
3800
+ * windows: remove unneeded check (Saúl Ibarra Corretgé)
3801
+
3802
+ * include: document pipe path truncation behavior (Ben Noordhuis)
3803
+
3804
+ * fsevents: increase stack size for OSX 10.9 (Fedor Indutny)
3805
+
3806
+ * windows: _snprintf expected wrong parameter type in string (Maks Naumov)
3807
+
3808
+ * windows: "else" keyword is missing (Maks Naumov)
3809
+
3810
+ * windows: incorrect check for SOCKET_ERROR (Maks Naumov)
3811
+
3812
+ * windows: add stdlib.h to satisfy reference to abort (Sean Farrell)
3813
+
3814
+ * build: fix check target for mingw (Sean Farrell)
3815
+
3816
+ * unix: move uv_shutdown() assertion (Keno Fischer)
3817
+
3818
+ * darwin: avoid calling GetCurrentProcess (Fedor Indutny)
3819
+
3820
+
3821
+ 2013.10.19, Version 0.10.18 (Stable), 9ec52963b585e822e87bdc5de28d6143aff0d2e5
3822
+
3823
+ Changes since version 0.10.17:
3824
+
3825
+ * unix: fix uv_spawn() NULL pointer deref on ENOMEM (Ben Noordhuis)
3826
+
3827
+ * unix: don't close inherited fds on uv_spawn() fail (Ben Noordhuis)
3828
+
3829
+ * unix: revert recent FSEvent changes (Ben Noordhuis)
3830
+
3831
+ * unix: fix non-synchronized access in signal.c (Ben Noordhuis)
3832
+
3833
+
3834
+ 2013.09.25, Version 0.10.17 (Stable), 9670e0a93540c2f0d86c84a375f2303383c11e7e
3835
+
3836
+ Changes since version 0.10.16:
3837
+
3838
+ * build: remove GCC_WARN_ABOUT_MISSING_NEWLINE (Ben Noordhuis)
3839
+
3840
+ * darwin: fix 10.6 build error in fsevents.c (Ben Noordhuis)
3841
+
3842
+
3843
+ 2013.09.06, Version 0.10.16 (Stable), 2bce230d81f4853a23662cbeb26fe98010b1084b
3844
+
3845
+ Changes since version 0.10.15:
3846
+
3847
+ * windows: make uv_shutdown() for write-only pipes work (Bert Belder)
3848
+
3849
+ * windows: make uv_fs_open() report EINVAL when invalid arguments are passed
3850
+ (Bert Belder)
3851
+
3852
+ * windows: make uv_fs_open() report _open_osfhandle() failure correctly (Bert
3853
+ Belder)
3854
+
3855
+ * windows: make uv_fs_chmod() report errors correctly (Bert Belder)
3856
+
3857
+ * windows: wrap multi-statement macros in do..while block (Bert Belder)
3858
+
3859
+
3860
+ 2013.09.05, Version 0.11.13 (Unstable), f5b6db6c1d7f93d28281207fd47c3841c9a9792e
3861
+
3862
+ Changes since version 0.11.12:
3863
+
3864
+ * unix: define _GNU_SOURCE, exposes glibc-isms (Ben Noordhuis)
3865
+
3866
+ * windows: check for nonconforming swprintf arguments (Brent Cook)
3867
+
3868
+ * build: include internal headers in source list (Brent Cook)
3869
+
3870
+ * include: merge uv_tcp_bind and uv_tcp_bind6 (Ben Noordhuis)
3871
+
3872
+ * include: merge uv_tcp_connect and uv_tcp_connect6 (Ben Noordhuis)
3873
+
3874
+ * include: merge uv_udp_bind and uv_udp_bind6 (Ben Noordhuis)
3875
+
3876
+ * include: merge uv_udp_send and uv_udp_send6 (Ben Noordhuis)
3877
+
3878
+
3879
+ 2013.09.03, Version 0.11.12 (Unstable), 82d01d5f6780d178f5176a01425ec297583c0811
3880
+
3881
+ Changes since version 0.11.11:
3882
+
3883
+ * test: fix epoll_wait() usage in test-embed.c (Ben Noordhuis)
3884
+
3885
+ * include: uv_alloc_cb now takes uv_buf_t* (Ben Noordhuis)
3886
+
3887
+ * include: uv_read{2}_cb now takes const uv_buf_t* (Ben Noordhuis)
3888
+
3889
+ * include: uv_ip[46]_addr now takes sockaddr_in* (Ben Noordhuis)
3890
+
3891
+ * include: uv_tcp_bind{6} now takes sockaddr_in* (Ben Noordhuis)
3892
+
3893
+ * include: uv_tcp_connect{6} now takes sockaddr_in* (Ben Noordhuis)
3894
+
3895
+ * include: uv_udp_recv_cb now takes const uv_buf_t* (Ben Noordhuis)
3896
+
3897
+ * include: uv_udp_bind{6} now takes sockaddr_in* (Ben Noordhuis)
3898
+
3899
+ * include: uv_udp_send{6} now takes sockaddr_in* (Ben Noordhuis)
3900
+
3901
+ * include: uv_spawn takes const uv_process_options_t* (Ben Noordhuis)
3902
+
3903
+ * include: make uv_write{2} const correct (Ben Noordhuis)
3904
+
3905
+ * windows: fix flags assignment in uv_fs_readdir() (Ben Noordhuis)
3906
+
3907
+ * windows: fix stray comments (Ben Noordhuis)
3908
+
3909
+ * windows: remove unused is_path_dir() function (Ben Noordhuis)
3910
+
3911
+
3912
+ 2013.08.30, Version 0.11.11 (Unstable), ba876d53539ed0427c52039012419cd9374c6f0d
3913
+
3914
+ Changes since version 0.11.10:
3915
+
3916
+ * unix, windows: add thread-local storage API (Ben Noordhuis)
3917
+
3918
+ * linux: don't turn on SO_REUSEPORT socket option (Ben Noordhuis)
3919
+
3920
+ * darwin: fix 10.6 build error in fsevents.c (Ben Noordhuis)
3921
+
3922
+ * windows: make uv_shutdown() for write-only pipes work (Bert Belder)
3923
+
3924
+ * include: update uv_udp_open() / uv_udp_bind() docs (Ben Noordhuis)
3925
+
3926
+ * unix: req queue must be empty when destroying loop (Ben Noordhuis)
3927
+
3928
+ * unix: move loop functions from core.c to loop.c (Ben Noordhuis)
3929
+
3930
+ * darwin: remove CoreFoundation dependency (Ben Noordhuis)
3931
+
3932
+ * windows: make autotools build system work with mingw (Keno Fischer)
3933
+
3934
+ * windows: fix mingw build (Alex Crichton)
3935
+
3936
+ * windows: tweak Makefile.mingw for easier usage (Alex Crichton)
3937
+
3938
+ * build: remove _GNU_SOURCE macro definition (Ben Noordhuis)
3939
+
3940
+
3941
+ 2013.08.25, Version 0.11.10 (Unstable), 742dadcb7154cc7bb89c0c228a223b767a36cf0d
3942
+
3943
+ * windows: Re-implement uv_fs_stat. The st_ctime field now contains the change
3944
+ time, not the creation time, like on unix systems. st_dev, st_ino, st_blocks
3945
+ and st_blksize are now also filled out. (Bert Belder)
3946
+
3947
+ * linux: fix setsockopt(SO_REUSEPORT) error handling (Ben Noordhuis)
3948
+
3949
+ * windows: report uv_process_t exit code correctly (Bert Belder)
3950
+
3951
+ * windows: make uv_fs_chmod() report errors correctly (Bert Belder)
3952
+
3953
+ * windows: make some more NT apis available for libuv's internal use (Bert
3954
+ Belder)
3955
+
3956
+ * windows: squelch some compiler warnings (Bert Belder)
3957
+
3958
+
3959
+ 2013.08.24, Version 0.11.9 (Unstable), a2d29b5b068cbac93dc16138fb30a74e2669daad
3960
+
3961
+ Changes since version 0.11.8:
3962
+
3963
+ * fsevents: share FSEventStream between multiple FS watchers, which removes a
3964
+ limit on the maximum number of file watchers that can be created on OS X.
3965
+ (Fedor Indutny)
3966
+
3967
+ * process: the `exit_status` parameter for a uv_process_t's exit callback now
3968
+ is an int64_t, and no longer an int. (Bert Belder)
3969
+
3970
+ * process: make uv_spawn() return some types of errors immediately on windows,
3971
+ instead of passing the error code the the exit callback. This brings it on
3972
+ par with libuv's behavior on unix. (Bert Belder)
3973
+
3974
+
3975
+ 2013.08.24, Version 0.10.15 (Stable), 221078a8fdd9b853c6b557b3d9a5dd744b4fdd6b
3976
+
3977
+ Changes since version 0.10.14:
3978
+
3979
+ * fsevents: create FSEvents thread on demand (Ben Noordhuis)
3980
+
3981
+ * fsevents: use a single thread for interacting with FSEvents, because it's not
3982
+ thread-safe. (Fedor Indutny)
3983
+
3984
+ * fsevents: share FSEventStream between multiple FS watchers, which removes a
3985
+ limit on the maximum number of file watchers that can be created on OS X.
3986
+ (Fedor Indutny)
3987
+
3988
+
3989
+ 2013.08.22, Version 0.11.8 (Unstable), a5260462db80ab0deab6b9e6a8991dd8f5a9a2f8
3990
+
3991
+ Changes since version 0.11.7:
3992
+
3993
+ * unix: fix missing return value warning in stream.c (Ben Noordhuis)
3994
+
3995
+ * build: serial-tests was added in automake v1.12 (Ben Noordhuis)
3996
+
3997
+ * windows: fix uninitialized local variable warning (Ben Noordhuis)
3998
+
3999
+ * windows: fix missing return value warning (Ben Noordhuis)
4000
+
4001
+ * build: fix string comparisons in autogen.sh (Ben Noordhuis)
4002
+
4003
+ * windows: move INLINE macro, remove UNUSED (Ben Noordhuis)
4004
+
4005
+ * unix: clean up __attribute__((quux)) usage (Ben Noordhuis)
4006
+
4007
+ * sunos: remove futimes() macro (Ben Noordhuis)
4008
+
4009
+ * unix: fix uv__signal_unlock() prototype (Ben Noordhuis)
4010
+
4011
+ * unix, windows: allow NULL async callback (Ben Noordhuis)
4012
+
4013
+ * build: apply dtrace -G to all object files (Timothy J. Fontaine)
4014
+
4015
+ * darwin: fix indentation in uv__hrtime() (Ben Noordhuis)
4016
+
4017
+ * darwin: create fsevents thread on demand (Ben Noordhuis)
4018
+
4019
+ * darwin: reduce fsevents thread stack size (Ben Noordhuis)
4020
+
4021
+ * darwin: call pthread_setname_np() if available (Ben Noordhuis)
4022
+
4023
+ * build: fix automake serial-tests check again (Ben Noordhuis)
4024
+
4025
+ * unix: retry waitpid() on EINTR (Ben Noordhuis)
4026
+
4027
+ * darwin: fix ios build error (Ben Noordhuis)
4028
+
4029
+ * darwin: fix ios compiler warning (Ben Noordhuis)
4030
+
4031
+ * test: simplify test-ip6-addr.c (Ben Noordhuis)
4032
+
4033
+ * unix, windows: fix ipv6 link-local address parsing (Ben Noordhuis)
4034
+
4035
+ * fsevents: FSEvents is most likely not thread-safe (Fedor Indutny)
4036
+
4037
+ * windows: omit stdint.h, fix msvc 2008 build error (Ben Noordhuis)
4038
+
4039
+
4040
+ 2013.08.22, Version 0.10.14 (Stable), 15d64132151c18b26346afa892444b95e2addad0
4041
+
4042
+ Changes since version 0.10.13:
4043
+
4044
+ * unix: retry waitpid() on EINTR (Ben Noordhuis)
4045
+
4046
+
4047
+ 2013.08.07, Version 0.11.7 (Unstable), 3cad361f8776f70941b39d65bd9426bcb1aa817b
4048
+
4049
+ Changes since version 0.11.6:
4050
+
4051
+ * unix, windows: fix uv_fs_chown() function prototype (Ben Noordhuis)
4052
+
4053
+ * unix, windows: remove unused variables (Brian White)
4054
+
4055
+ * test: fix signed/unsigned comparison warnings (Ben Noordhuis)
4056
+
4057
+ * build: dtrace shouldn't break out of tree builds (Timothy J. Fontaine)
4058
+
4059
+ * unix, windows: don't read/recv if buf.len==0 (Ben Noordhuis)
4060
+
4061
+ * build: add mingw makefile (Ben Noordhuis)
4062
+
4063
+ * unix, windows: add MAC to uv_interface_addresses() (Brian White)
4064
+
4065
+ * build: enable AM_INIT_AUTOMAKE([subdir-objects]) (Ben Noordhuis)
4066
+
4067
+ * unix, windows: make buf arg to uv_fs_write const (Ben Noordhuis)
4068
+
4069
+ * sunos: fix build breakage introduced in e3a657c (Ben Noordhuis)
4070
+
4071
+ * aix: fix build breakage introduced in 3ee4d3f (Ben Noordhuis)
4072
+
4073
+ * windows: fix mingw32 build, define JOB_OBJECT_XXX (Yasuhiro Matsumoto)
4074
+
4075
+ * windows: fix mingw32 build, include limits.h (Yasuhiro Matsumoto)
4076
+
4077
+ * test: replace sprintf() with snprintf() (Ben Noordhuis)
4078
+
4079
+ * test: replace strcpy() with strncpy() (Ben Noordhuis)
4080
+
4081
+ * openbsd: fix uv_ip6_addr() unused variable warnings (Ben Noordhuis)
4082
+
4083
+ * openbsd: fix dlerror() const correctness warning (Ben Noordhuis)
4084
+
4085
+ * openbsd: fix uv_fs_sendfile() unused variable warnings (Ben Noordhuis)
4086
+
4087
+ * build: disable parallel automake tests (Ben Noordhuis)
4088
+
4089
+ * test: add windows-only snprintf() function (Ben Noordhuis)
4090
+
4091
+ * build: add automake serial-tests version check (Ben Noordhuis)
4092
+
4093
+
4094
+ 2013.07.26, Version 0.10.13 (Stable), 381312e1fe6fecbabc943ccd56f0e7d114b3d064
4095
+
4096
+ Changes since version 0.10.12:
4097
+
4098
+ * unix, windows: fix uv_fs_chown() function prototype (Ben Noordhuis)
4099
+
4100
+
4101
+ 2013.07.21, Version 0.11.6 (Unstable), 6645b93273e0553d23823c576573b82b129bf28c
4102
+
4103
+ Changes since version 0.11.5:
4104
+
4105
+ * test: open stdout fd in write-only mode (Ben Noordhuis)
4106
+
4107
+ * windows: uv_spawn shouldn't reject reparse points (Bert Belder)
4108
+
4109
+ * windows: use WSAGetLastError(), not errno (Ben Noordhuis)
4110
+
4111
+ * build: darwin: disable -fstrict-aliasing warnings (Ben Noordhuis)
4112
+
4113
+ * test: fix signed/unsigned compiler warning (Ben Noordhuis)
4114
+
4115
+ * test: add 'start timer from check handle' test (Ben Noordhuis)
4116
+
4117
+ * build: `all` now builds static and dynamic lib (Ben Noordhuis)
4118
+
4119
+ * unix, windows: add extra fields to uv_stat_t (Saúl Ibarra Corretgé)
4120
+
4121
+ * build: add install target to the makefile (Navaneeth Kedaram Nambiathan)
4122
+
4123
+ * build: switch to autotools (Ben Noordhuis)
4124
+
4125
+ * build: use AM_PROG_AR conditionally (Ben Noordhuis)
4126
+
4127
+ * test: fix fs_fstat test on sunos (Ben Noordhuis)
4128
+
4129
+ * test: fix fs_chown when running as root (Ben Noordhuis)
4130
+
4131
+ * test: fix spawn_setgid_fails and spawn_setuid_fails (Ben Noordhuis)
4132
+
4133
+ * build: use AM_SILENT_RULES conditionally (Ben Noordhuis)
4134
+
4135
+ * build: add DTrace detection for autotools (Timothy J. Fontaine)
4136
+
4137
+ * linux,darwin,win: link-local IPv6 addresses (Miroslav Bajtoš)
4138
+
4139
+ * unix: fix build when !defined(PTHREAD_MUTEX_ERRORCHECK) (Ben Noordhuis)
4140
+
4141
+ * unix, windows: return error codes directly (Ben Noordhuis)
4142
+
4143
+
4144
+ 2013.07.10, Version 0.10.12 (Stable), 58a46221bba726746887a661a9f36fe9ff204209
4145
+
4146
+ Changes since version 0.10.11:
4147
+
4148
+ * linux: add support for MIPS (Andrei Sedoi)
4149
+
4150
+ * windows: uv_spawn shouldn't reject reparse points (Bert Belder)
4151
+
4152
+ * windows: use WSAGetLastError(), not errno (Ben Noordhuis)
4153
+
4154
+ * build: darwin: disable -fstrict-aliasing warnings (Ben Noordhuis)
4155
+
4156
+ * build: `all` now builds static and dynamic lib (Ben Noordhuis)
4157
+
4158
+ * unix: fix build when !defined(PTHREAD_MUTEX_ERRORCHECK) (Ben Noordhuis)
4159
+
4160
+
4161
+ 2013.06.27, Version 0.11.5 (Unstable), e3c63ff1627a14e96f54c1c62b0d68b446d8425b
4162
+
4163
+ Changes since version 0.11.4:
4164
+
4165
+ * build: remove CSTDFLAG, use only CFLAGS (Ben Noordhuis)
4166
+
4167
+ * unix: support for android builds (Linus Mårtensson)
4168
+
4169
+ * unix: avoid extra read, short-circuit on POLLHUP (Ben Noordhuis)
4170
+
4171
+ * uv: support android libuv standalone build (Linus Mårtensson)
4172
+
4173
+ * src: make queue.h c++ compatible (Ben Noordhuis)
4174
+
4175
+ * unix: s/ngx-queue.h/queue.h/ in checksparse.sh (Ben Noordhuis)
4176
+
4177
+ * unix: unconditionally stop handle on close (Ben Noordhuis)
4178
+
4179
+ * freebsd: don't enable dtrace if it's not available (Brian White)
4180
+
4181
+ * build: make HAVE_DTRACE=0 should disable dtrace (Timothy J. Fontaine)
4182
+
4183
+ * unix: remove overzealous assert (Ben Noordhuis)
4184
+
4185
+ * unix: remove unused function uv_fatal_error() (Ben Noordhuis)
4186
+
4187
+ * unix, windows: clean up uv_thread_create() (Ben Noordhuis)
4188
+
4189
+ * queue: fix pointer truncation on LLP64 platforms (Bert Belder)
4190
+
4191
+ * build: set OS=="android" for android builds (Linus Mårtensson)
4192
+
4193
+ * windows: don't use uppercase in include filename (Ben Noordhuis)
4194
+
4195
+ * stream: add an API to make streams do blocking writes (Henry Rawas)
4196
+
4197
+ * windows: use WSAGetLastError(), not errno (Ben Noordhuis)
4198
+
4199
+
4200
+ 2013.06.13, Version 0.10.11 (Stable), c3b75406a66a10222a589cb173e8f469e9665c7e
4201
+
4202
+ Changes since version 0.10.10:
4203
+
4204
+ * unix: unconditionally stop handle on close (Ben Noordhuis)
4205
+
4206
+ * freebsd: don't enable dtrace if it's not available (Brian White)
4207
+
4208
+ * build: make HAVE_DTRACE=0 should disable dtrace (Timothy J. Fontaine)
4209
+
4210
+ * unix: remove overzealous assert (Ben Noordhuis)
4211
+
4212
+ * unix: clear UV_STREAM_SHUTTING after shutdown() (Ben Noordhuis)
4213
+
4214
+ * unix: fix busy loop, write if POLLERR or POLLHUP (Ben Noordhuis)
4215
+
4216
+
4217
+ 2013.06.05, Version 0.10.10 (Stable), 0d95a88bd35fce93863c57a460be613aea34d2c5
4218
+
4219
+ Changes since version 0.10.9:
4220
+
4221
+ * include: document uv_update_time() and uv_now() (Ben Noordhuis)
4222
+
4223
+ * linux: fix cpu model parsing on newer arm kernels (Ben Noordhuis)
4224
+
4225
+ * linux: fix a memory leak in uv_cpu_info() error path (Ben Noordhuis)
4226
+
4227
+ * linux: don't ignore out-of-memory errors in uv_cpu_info() (Ben Noordhuis)
4228
+
4229
+ * unix, windows: move uv_now() to uv-common.c (Ben Noordhuis)
4230
+
4231
+ * test: fix a compilation problem in test-osx-select.c that was caused by the
4232
+ use of c-style comments (Bert Belder)
4233
+
4234
+ * darwin: use uv_fs_sendfile() use the sendfile api correctly (Wynn Wilkes)
4235
+
4236
+
4237
+ 2013.05.30, Version 0.11.4 (Unstable), e43e5b3d954a0989db5588aa110e1fe4fe6e0219
4238
+
4239
+ Changes since version 0.11.3:
4240
+
4241
+ * windows: make uv_spawn not fail when the libuv embedding application is run
4242
+ under external job control (Bert Belder)
4243
+
4244
+ * darwin: assume CFRunLoopStop() isn't thread-safe, fixing a race condition
4245
+ when stopping the 'stdin select hack' thread (Fedor Indutny)
4246
+
4247
+ * win: fix UV_EALREADY not being reported correctly to the libuv user in some
4248
+ cases (Bert Belder)
4249
+
4250
+ * darwin: make the uv__cf_loop_runner and uv__cf_loop_cb functions static (Ben
4251
+ Noordhuis)
4252
+
4253
+ * darwin: task_info() cannot fail (Ben Noordhuis)
4254
+
4255
+ * unix: add error mapping for ENETDOWN (Ben Noordhuis)
4256
+
4257
+ * unix: implicitly signal write errors to the libuv user (Ben Noordhuis)
4258
+
4259
+ * unix: fix assertion error on signal pipe overflow (Bert Belder)
4260
+
4261
+ * unix: turn off POLLOUT after stream connect (Ben Noordhuis)
4262
+
4263
+ * unix: fix stream refcounting buglet (Ben Noordhuis)
4264
+
4265
+ * unix: remove assert statements that are no longer correct (Ben Noordhuis)
4266
+
4267
+ * unix: appease warning about non-standard `inline` (Sean Silva)
4268
+
4269
+ * unix: add uv__is_closing() macro (Ben Noordhuis)
4270
+
4271
+ * unix: stop stream POLLOUT watcher on write error (Ben Noordhuis)
4272
+
4273
+ * include: document uv_update_time() and uv_now() (Ben Noordhuis)
4274
+
4275
+ * linux: fix cpu model parsing on newer arm kernels (Ben Noordhuis)
4276
+
4277
+ * linux: fix a memory leak in uv_cpu_info() error path (Ben Noordhuis)
4278
+
4279
+ * linux: don't ignore out-of-memory errors in uv_cpu_info() (Ben Noordhuis)
4280
+
4281
+ * unix, windows: move uv_now() to uv-common.c (Ben Noordhuis)
4282
+
4283
+ * test: fix a compilation problem in test-osx-select.c that was caused by the
4284
+ use of c-style comments (Bert Belder)
4285
+
4286
+ * darwin: use uv_fs_sendfile() use the sendfile api correctly (Wynn Wilkes)
4287
+
4288
+ * windows: call idle handles on every loop iteration, something the unix
4289
+ implementation already did (Bert Belder)
4290
+
4291
+ * test: update the idle-starvation test to verify that idle handles are called
4292
+ in every loop iteration (Bert Belder)
4293
+
4294
+ * unix, windows: ensure that uv_run() in RUN_ONCE mode calls timers that expire
4295
+ after blocking (Ben Noordhuis)
4296
+
4297
+
4298
+ 2013.05.29, Version 0.10.9 (Stable), a195f9ace23d92345baf57582678bfc3017e6632
4299
+
4300
+ Changes since version 0.10.8:
4301
+
4302
+ * unix: fix stream refcounting buglet (Ben Noordhuis)
4303
+
4304
+ * unix: remove erroneous asserts (Ben Noordhuis)
4305
+
4306
+ * unix: add uv__is_closing() macro (Ben Noordhuis)
4307
+
4308
+ * unix: stop stream POLLOUT watcher on write error (Ben Noordhuis)
4309
+
4310
+
4311
+ 2013.05.25, Version 0.10.8 (Stable), 0f39be12926fe2d8766a9f025797a473003e6504
4312
+
4313
+ Changes since version 0.10.7:
4314
+
4315
+ * windows: make uv_spawn not fail under job control (Bert Belder)
4316
+
4317
+ * darwin: assume CFRunLoopStop() isn't thread-safe (Fedor Indutny)
4318
+
4319
+ * win: fix UV_EALREADY incorrectly set (Bert Belder)
4320
+
4321
+ * darwin: make two uv__cf_*() functions static (Ben Noordhuis)
4322
+
4323
+ * darwin: task_info() cannot fail (Ben Noordhuis)
4324
+
4325
+ * unix: add mapping for ENETDOWN (Ben Noordhuis)
4326
+
4327
+ * unix: implicitly signal write errors to libuv user (Ben Noordhuis)
4328
+
4329
+ * unix: fix assert on signal pipe overflow (Bert Belder)
4330
+
4331
+ * unix: turn off POLLOUT after stream connect (Ben Noordhuis)
4332
+
4333
+
4334
+ 2013.05.16, Version 0.11.3 (Unstable), 0a48c05b5988aea84c605751900926fa25443b34
4335
+
4336
+ Changes since version 0.11.2:
4337
+
4338
+ * unix: clean up uv_accept() (Ben Noordhuis)
4339
+
4340
+ * unix: remove errno preserving code (Ben Noordhuis)
4341
+
4342
+ * darwin: fix ios build, don't require ApplicationServices (Ben Noordhuis)
4343
+
4344
+ * windows: kill child processes when the parent dies (Bert Belder)
4345
+
4346
+ * build: set soname in shared library (Ben Noordhuis)
4347
+
4348
+ * build: make `make test` link against .a again (Ben Noordhuis)
4349
+
4350
+ * build: only set soname on shared object builds (Timothy J. Fontaine)
4351
+
4352
+ * build: convert predefined $PLATFORM to lower case (Elliot Saba)
4353
+
4354
+ * test: fix process_title failing on linux (Miroslav Bajtoš)
4355
+
4356
+ * test, sunos: disable process_title test (Miroslav Bajtoš)
4357
+
4358
+ * test: add error logging to tty unit test (Miroslav Bajtoš)
4359
+
4360
+
4361
+ 2013.05.15, Version 0.10.7 (Stable), 028baaf0846b686a81e992cb2f2f5a9b8e841fcf
4362
+
4363
+ Changes since version 0.10.6:
4364
+
4365
+ * windows: kill child processes when the parent dies (Bert Belder)
4366
+
4367
+
4368
+ 2013.05.15, Version 0.10.6 (Stable), 11e6613e6260d95c8cf11bf89a2759c24649319a
4369
+
4370
+ Changes since version 0.10.5:
4371
+
4372
+ * stream: fix osx select hack (Fedor Indutny)
4373
+
4374
+ * stream: fix small nit in select hack, add test (Fedor Indutny)
4375
+
4376
+ * build: link with libkvm on openbsd (Ben Noordhuis)
4377
+
4378
+ * stream: use harder sync restrictions for osx-hack (Fedor Indutny)
4379
+
4380
+ * unix: fix EMFILE error handling (Ben Noordhuis)
4381
+
4382
+ * darwin: fix unnecessary include headers (Daisuke Murase)
4383
+
4384
+ * darwin: rename darwin-getproctitle.m (Ben Noordhuis)
4385
+
4386
+ * build: convert predefined $PLATFORM to lower case (Elliot Saba)
4387
+
4388
+ * build: set soname in shared library (Ben Noordhuis)
4389
+
4390
+ * build: make `make test` link against .a again (Ben Noordhuis)
4391
+
4392
+ * darwin: fix ios build, don't require ApplicationServices (Ben Noordhuis)
4393
+
4394
+ * build: only set soname on shared object builds (Timothy J. Fontaine)
4395
+
4396
+
4397
+ 2013.05.11, Version 0.11.2 (Unstable), 3fba0bf65f091b91a9760530c05c6339c658d88b
4398
+
4399
+ Changes since version 0.11.1:
4400
+
4401
+ * darwin: look up file path with F_GETPATH (Ben Noordhuis)
4402
+
4403
+ * unix, windows: add uv_has_ref() function (Saúl Ibarra Corretgé)
4404
+
4405
+ * build: avoid double / in paths for dtrace (Timothy J. Fontaine)
4406
+
4407
+ * unix: remove src/unix/cygwin.c (Ben Noordhuis)
4408
+
4409
+ * windows: deal with the fact that GetTickCount might lag (Bert Belder)
4410
+
4411
+ * unix: silence STATIC_ASSERT compiler warnings (Ben Noordhuis)
4412
+
4413
+ * linux: don't use fopen() in uv_resident_set_memory() (Ben Noordhuis)
4414
+
4415
+
4416
+ 2013.04.24, Version 0.10.5 (Stable), 6595a7732c52eb4f8e57c88655f72997a8567a67
4417
+
4418
+ Changes since version 0.10.4:
4419
+
4420
+ * unix: silence STATIC_ASSERT compiler warnings (Ben Noordhuis)
4421
+
4422
+ * windows: make timers handle large timeouts (Miroslav Bajtoš)
4423
+
4424
+ * windows: remove superfluous assert statement (Bert Belder)
4425
+
4426
+ * unix: silence STATIC_ASSERT compiler warnings (Ben Noordhuis)
4427
+
4428
+ * linux: don't use fopen() in uv_resident_set_memory() (Ben Noordhuis)
4429
+
4430
+
4431
+ 2013.04.12, Version 0.10.4 (Stable), 85827e26403ac6dfa331af8ec9916ea7e27bd833
4432
+
4433
+ Changes since version 0.10.3:
4434
+
4435
+ * include: update uv_backend_fd() documentation (Ben Noordhuis)
4436
+
4437
+ * unix: include uv.h in src/version.c (Ben Noordhuis)
4438
+
4439
+ * unix: don't write more than IOV_MAX iovecs (Fedor Indutny)
4440
+
4441
+ * mingw-w64: don't call _set_invalid_parameter_handler (Nils Maier)
4442
+
4443
+ * build: gyp disable thin archives (Timothy J. Fontaine)
4444
+
4445
+ * sunos: re-export entire library when static (Timothy J. Fontaine)
4446
+
4447
+ * unix: dtrace probes for tick-start and tick-stop (Timothy J. Fontaine)
4448
+
4449
+ * windows: fix memory leak in fs__sendfile (Shannen Saez)
4450
+
4451
+ * windows: remove double initialization in uv_tty_init (Shannen Saez)
4452
+
4453
+ * build: fix dtrace-enabled out of tree build (Ben Noordhuis)
4454
+
4455
+ * build: squelch -Wdollar-in-identifier-extension warnings (Ben Noordhuis)
4456
+
4457
+ * inet: snprintf returns int, not size_t (Brian White)
4458
+
4459
+ * win: refactor uv_cpu_info (Bert Belder)
4460
+
4461
+ * build: add support for Visual Studio 2012 (Nicholas Vavilov)
4462
+
4463
+ * build: -Wno-dollar-in-identifier-extension is clang only (Ben Noordhuis)
4464
+
4465
+
4466
+ 2013.04.11, Version 0.11.1 (Unstable), 5c10e82ae0bc99eff86d4b9baff1f1aa0bf84c0a
4467
+
4468
+ This is the first versioned release from the current unstable libuv branch.
4469
+
4470
+ Changes since Node.js v0.11.0:
4471
+
4472
+ * all platforms: nanosecond resolution support for uv_fs_[fl]stat (Timothy J.
4473
+ Fontaine)
4474
+
4475
+ * all platforms: add netmask to uv_interface_address (Ben Kelly)
4476
+
4477
+ * unix: make sure the `status` parameter passed to the `uv_getaddrinfo` is 0 or
4478
+ -1 (Ben Noordhuis)
4479
+
4480
+ * unix: limit the number of iovecs written in a single `writev` syscall to
4481
+ IOV_MAX (Fedor Indutny)
4482
+
4483
+ * unix: add dtrace probes for tick-start and tick-stop (Timothy J. Fontaine)
4484
+
4485
+ * mingw-w64: don't call _set_invalid_parameter_handler (Nils Maier)
4486
+
4487
+ * windows: fix memory leak in fs__sendfile (Shannen Saez)
4488
+
4489
+ * windows: fix edge case bugs in uv_cpu_info (Bert Belder)
4490
+
4491
+ * include: no longer ship with / include ngx-queue.h (Ben Noordhuis)
4492
+
4493
+ * include: remove UV_VERSION_* macros from uv.h (Ben Noordhuis)
4494
+
4495
+ * documentation updates (Kristian Evensen, Ben Kelly, Ben Noordhuis)
4496
+
4497
+ * build: fix dtrace-enabled builds (Ben Noordhuis, Timothy J. Fontaine)
4498
+
4499
+ * build: gyp disable thin archives (Timothy J. Fontaine)
4500
+
4501
+ * build: add support for Visual Studio 2012 (Nicholas Vavilov)
4502
+
4503
+
4504
+ 2013.03.28, Version 0.10.3 (Stable), 31ebe23973dd98fd8a24c042b606f37a794e99d0
4505
+
4506
+ Changes since version 0.10.2:
4507
+
4508
+ * include: remove extraneous const from uv_version() (Ben Noordhuis)
4509
+
4510
+ * doc: update README, replace `OS` by `PLATFORM` (Ben Noordhuis)
4511
+
4512
+ * build: simplify .buildstamp rule (Ben Noordhuis)
4513
+
4514
+ * build: disable -Wstrict-aliasing on darwin (Ben Noordhuis)
4515
+
4516
+ * darwin: don't select(&exceptfds) in fallback path (Ben Noordhuis)
4517
+
4518
+ * unix: don't clear flags after closing UDP handle (Saúl Ibarra Corretgé)
4519
+
4520
+
4521
+ 2013.03.25, Version 0.10.2 (Stable), 0f36a00568f3e7608f97f6c6cdb081f4800a50c9
4522
+
4523
+ This is the first officially versioned release of libuv. Starting now
4524
+ libuv will make releases independently of Node.js.
4525
+
4526
+ Changes since Node.js v0.10.0:
4527
+
4528
+ * test: add tap output for windows (Timothy J. Fontaine)
4529
+
4530
+ * unix: fix uv_tcp_simultaneous_accepts() logic (Ben Noordhuis)
4531
+
4532
+ * include: bump UV_VERSION_MINOR (Ben Noordhuis)
4533
+
4534
+ * unix: improve uv_guess_handle() implementation (Ben Noordhuis)
4535
+
4536
+ * stream: run try_select only for pipes and ttys (Fedor Indutny)
4537
+
4538
+ Changes since Node.js v0.10.1:
4539
+
4540
+ * build: rename OS to PLATFORM (Ben Noordhuis)
4541
+
4542
+ * unix: make uv_timer_init() initialize repeat (Brian Mazza)
4543
+
4544
+ * unix: make timers handle large timeouts (Ben Noordhuis)
4545
+
4546
+ * build: add OBJC makefile var (Ben Noordhuis)
4547
+
4548
+ * Add `uv_version()` and `uv_version_string()` APIs (Bert Belder)