| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-06-22 | Merge pull request #4059 from take-cheeze/parallel_tests | Yukihiro "Matz" Matsumoto | |
| Run tests parallelly for each target. | |||
| 2018-06-22 | Merge pull request #4058 from take-cheeze/exp_sleep | Yukihiro "Matz" Matsumoto | |
| Increase sleep duration exponentially instead of `Thread.pass`. | |||
| 2018-06-22 | Run tests parallelly for each target. | take-cheeze | |
| 2018-06-22 | Increase sleep duration exponentially instead of `Thread.pass`. | take-cheeze | |
| 2018-06-22 | Merge pull request #4053 from take-cheeze/use_transfer | Yukihiro "Matz" Matsumoto | |
| Use Fiber#transfer instead in minirake. | |||
| 2018-06-22 | Merge pull request #4057 from take-cheeze/use_thread_pass | Yukihiro "Matz" Matsumoto | |
| Use `Thread.pass` instead of sleeping. | |||
| 2018-06-22 | Use `Thread.pass` instead of sleeping. | take-cheeze | |
| 2018-06-22 | Merge branch 'master' into use_transfer | Yukihiro "Matz" Matsumoto | |
| 2018-06-22 | Merge pull request #4056 from take-cheeze/fix_rake_jobs | Yukihiro "Matz" Matsumoto | |
| Fix job waiter of minirake. | |||
| 2018-06-22 | Merge pull request #4054 from take-cheeze/show_rake_bt | Yukihiro "Matz" Matsumoto | |
| Show minirake backtrace in verbose mode. | |||
| 2018-06-21 | Fix job waiter. | take-cheeze | |
| 2018-06-21 | Support verbose mode in bintest. | take-cheeze | |
| 2018-06-21 | Show minirake backtrace in verbose mode. | take-cheeze | |
| 2018-06-21 | Use Fiber#transfer instead in minirake. | take-cheeze | |
| 2018-06-20 | Merge pull request #4052 from take-cheeze/fix_mtime_test | Yukihiro "Matz" Matsumoto | |
| Use temporary file name for `File#mtime` test to avoid conflicts. | |||
| 2018-06-20 | Merge pull request #4051 from take-cheeze/para_rake | Yukihiro "Matz" Matsumoto | |
| Make minirake parallel. | |||
| 2018-06-20 | Set jobs to 4 since it have 2 CPUs. | take-cheeze | |
| 2018-06-20 | Use temporary name for `File#mtime` test to avoid conflicts. | take-cheeze | |
| 2018-06-20 | disable sudo. | take-cheeze | |
| 2018-06-20 | Make minirake parallel. | take-cheeze | |
| 2018-06-20 | Merge pull request #4050 from take-cheeze/fix_build_script | Yukihiro "Matz" Matsumoto | |
| Fix build scripts. | |||
| 2018-06-20 | Merge pull request #4049 from take-cheeze/fix_mirb_leak | Yukihiro "Matz" Matsumoto | |
| Fix memory leaks in mirb. | |||
| 2018-06-20 | Make codacy happy. | take-cheeze | |
| 2018-06-20 | Fix dependencies. | take-cheeze | |
| 2018-06-20 | Comment out unused variable. | take-cheeze | |
| 2018-06-20 | Fix forgotten argument passing. | take-cheeze | |
| 2018-06-20 | Fix dependencies. | take-cheeze | |
| 2018-06-20 | Add forgotten `mkdir_p`s. | take-cheeze | |
| 2018-06-20 | Fix memory leaks in mirb. | take-cheeze | |
| 2018-06-20 | Add test_dependency from mruby-io to mruby-time. | Yukihiro "Matz" Matsumoto | |
| 2018-06-20 | Turn off `enable_debug` flag in `build_config.rb` by default. | Yukihiro "Matz" Matsumoto | |
| This will improve the default performance of mruby; fix #4045 | |||
| 2018-06-20 | Merge pull request #4048 from kou/export-mrb-utf8-locale | Yukihiro "Matz" Matsumoto | |
| Export mrb_utf8_from_locale() and mrb_locale_from_utf8() | |||
| 2018-06-20 | Export mrb_utf8_from_locale() and mrb_locale_from_utf8() | Kouhei Sutou | |
| 2018-06-19 | Merge pull request #4047 from kou/stop-to-use-freed-value | Yukihiro "Matz" Matsumoto | |
| Stop to use freed value | |||
| 2018-06-19 | Merge pull request #4046 from kou/fix-wrong-free-function | Yukihiro "Matz" Matsumoto | |
| Fix wrong free function | |||
| 2018-06-19 | Stop to use freed value | Kouhei Sutou | |
| 2018-06-19 | Fix wrong free function | Kouhei Sutou | |
| mrb_locale_free() should be used for the return value of mrb_locale_from_utf8(). | |||
| 2018-06-15 | Fixed wrong usages of `mrb_raisef()`; ref #4043 | Yukihiro "Matz" Matsumoto | |
| `mrb_raisef()` only takes `%S` specifier. If you don't have extra arguments, use `mrb_raise()`. | |||
| 2018-06-14 | Resolve sign comparison warning; ref #4044 | Yukihiro "Matz" Matsumoto | |
| 2018-06-14 | Merge pull request #4044 from iij/fixes-from-iij-socket | Tomoyuki Sahara | |
| incorporate fixes from iij/socket | |||
| 2018-06-14 | sa_family_t is not defined on windows. | Tomoyuki Sahara | |
| 2018-06-14 | set sockaddr_un.sun_len on the systems that have sockaddr.sa_len. | Tomoyuki Sahara | |
| If your system has sa_len but is not BSD-derived, define HAVE_SA_LEN=1 on mrbgem.rake or build_config.rb. | |||
| 2018-06-14 | struct sockaddr_un can be truncated. | Tomoyuki Sahara | |
| When we have "struct sockaddr_un *s_un", we could not assume *s_un points to a memory region which size is at least sizeof(*s_un). Even worse, it may be shorter than sizeof(struct sockaddr) on some systems. | |||
| 2018-06-14 | struct sockaddr_un can be shorter than struct sockaddr. | Tomoyuki Sahara | |
| ref: https://github.com/iij/mruby-socket/issues/45 | |||
| 2018-06-14 | Restore GC arena after raised exceptions; ref #4042 | Yukihiro "Matz" Matsumoto | |
| 2018-06-14 | Need to add a write barrier for ranges; fix #4042 | Yukihiro "Matz" Matsumoto | |
| Ranges are almost immutable but `initialize` and `initialize_copy` modify the receiver so that we need to add a write barrier. | |||
| 2018-06-14 | Check for switching to uninitialized fiber; fix #4041 | Yukihiro "Matz" Matsumoto | |
| The problem was caused by `Fiber.current.resume'. | |||
| 2018-06-14 | Merge pull request #4043 from take-cheeze/fix_test_dep | Yukihiro "Matz" Matsumoto | |
| Fix unnecessary rebuild of tests. | |||
| 2018-06-13 | Fix unnecessary rebuild of tests. | take-cheeze | |
| 2018-06-11 | Revert "No longer need to insert write barriers for fibers." | Yukihiro "Matz" Matsumoto | |
| This reverts commit c6736357a72049a0eb2a31ccabcc3cd2baba7c9e. The assumption was wrong and caused the issue; fix #4020 | |||
