summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Transition root fiber into state FIBER_TERMINATED.Samuel Williams2019-06-202-2/+14
| | | | | | | During fork, it's possible that threads with root fibers are terminated, but fiber state is not updated. `fiber_verify` will subsequently fail. We forcefully enter the FIBER_TERMINATED state when terminating the root fiber.
* Restore $VERBOSENobuyoshi Nakada2019-06-201-0/+7
|
* Suppress warningsNobuyoshi Nakada2019-06-201-1/+1
|
* Fix a typo [ci skip]Kazuhiro NISHIYAMA2019-06-201-1/+1
|
* Added and update the racc entries on doc/*.Hiroshi SHIBATA2019-06-202-1/+4
|
* Added racc entry to NEWS.Hiroshi SHIBATA2019-06-201-0/+4
|
* Removed needless file with the upstream repository.Hiroshi SHIBATA2019-06-201-640/+0
|
* Update sync task for the directory structure of cparse and ignore JRuby files.Hiroshi SHIBATA2019-06-201-1/+3
|
* Added gemspec of racc generated from upstream for the default gems.Hiroshi SHIBATA2019-06-202-1/+46
| | | | 1.4.16.pre.1 is the teemporary version. It may be changed 1.5.0 or others.
* Disable auto indent when move cursor up or downaycabta2019-06-201-18/+23
| | | | | | | | | | | | | | This commit suppresses a strange behavior below: if true 1[cursor] end and press down key if true 1 end
* Ensure that vm_stack is cleared in `thread_cleanup_func_before_exec`.Samuel Williams2019-06-204-22/+43
| | | | | | | | If `vm_stack` is left dangling in a forked process, the gc attempts to scan it, but it is invalid and will cause a segfault. Therefore, we clear it before forking. In order to simplify this, `rb_ec_clear_vm_stack` was introduced.
* Revert failed attempt at fixing invalid usage of vm_stack.Samuel Williams2019-06-204-44/+22
|
* Don't clear cfp, it causes problems.Samuel Williams2019-06-202-6/+3
|
* Skip `rb_ec_clear_vm_stack` for now.Samuel Williams2019-06-201-2/+5
|
* * remove trailing spaces.git2019-06-201-1/+1
|
* Ensure `vm_stack` is cleared after fork.Samuel Williams2019-06-204-20/+36
|
* Fix typo in VM_ASSERT.Samuel Williams2019-06-201-2/+2
|
* Set `cfp` to null (along with vm_stack) in `rb_fiber_close`.Samuel Williams2019-06-201-0/+1
|
* Extra assertions around thread.Samuel Williams2019-06-201-4/+9
|
* Don't try to dereference NULL cfp.Samuel Williams2019-06-201-1/+1
|
* Remove spec testing undefined behaviorJeremy Evans2019-06-191-5/+0
| | | | Fixes [Bug #15432]
* * 2019-06-20git2019-06-201-1/+1
|
* * expand tabs.git2019-06-201-1/+1
|
* Implement Complex#<=>Jeremy Evans2019-06-195-13/+90
| | | | | | | | | | | Implement Complex#<=> so that it is usable as an argument when calling <=> on objects of other classes (since #coerce will coerce such numbers to Complex). If the complex number has a zero imaginary part, and the other argument is a real number (or complex number with zero imaginary part), return -1, 0, or 1. Otherwise, return nil, indicating the objects are not comparable. Fixes [Bug #15857]
* test/racc/test_racc_command.rb: Extend the timeoutYusuke Endoh2019-06-192-9/+9
| | | | | | test_opal, test_ruby18, and test_ruby22 are slow tests. https://rubyci.org/logs/rubyci.s3.amazonaws.com/scw-ad7f67/ruby-master/log/20190619T105405Z.fail.html.gz
* Don't change vm_stack/cfp without acquiring gvl first.Samuel Williams2019-06-201-1/+4
|
* Adjust indentNobuyoshi Nakada2019-06-193-10/+13
|
* * expand tabs.git2019-06-191-2/+2
|
* Remove IA64 support.Samuel Williams2019-06-1920-332/+24
|
* Partly revert directory structure for cparse.Hiroshi SHIBATA2019-06-193-0/+0
| | | | It break the some build environment.
* * remove trailing spaces, append newline at EOF.git2019-06-1934-2528/+2528
|
* Added binstub for racc executables.Hiroshi SHIBATA2019-06-193-0/+81
|
* Temporary disabled to invoke assert_output_unchanged.Hiroshi SHIBATA2019-06-191-20/+20
| | | | Because some environment created the different results from test fixtures.
* Restore ruby/ruby change for extconf.rb.Hiroshi SHIBATA2019-06-191-1/+2
|
* Workaround for the external file for racc testHiroshi SHIBATA2019-06-191-0/+2
|
* use TEMP_DIR.Hiroshi SHIBATA2019-06-191-3/+3
|
* Use Test::Unit instead of Minitest and fixed test error with ruby repo.Hiroshi SHIBATA2019-06-193-18/+10
| | | | Co-authored-by: Nobuyoshi Nakada <nobu@ruby-lang.org>
* Restore test_dir and update prefix for Dir.mktmpdir.Hiroshi SHIBATA2019-06-191-7/+8
|
* Try to use Dir.mktmpdir.Hiroshi SHIBATA2019-06-191-3/+3
|
* Added sync task for raccHiroshi SHIBATA2019-06-191-1/+8
|
* Fixed path for ruby core repository.Hiroshi SHIBATA2019-06-191-3/+6
|
* Backport racc-1.4.15 from upstream.Hiroshi SHIBATA2019-06-19111-43/+75498
|
* * remove trailing spaces, expand tabs.git2019-06-194-14/+14
|
* Rework debug conditional.Samuel Williams2019-06-191-3/+5
|
* Use shared implementation of `rb_ec_initialize_vm_stack`.Samuel Williams2019-06-194-34/+26
|
* Update `stack_start` and `stack_maxsize` according to stack direction.Samuel Williams2019-06-191-2/+3
|
* Specify that size is non-committed memory.Samuel Williams2019-06-191-1/+1
|
* Make sure `alloca` fast path is used (inline assembler).Samuel Williams2019-06-191-2/+6
|
* Use default stack size for worker thread (no th pointer available).Samuel Williams2019-06-191-1/+1
|
* Handle (empty) backtrace when thread is not born yet.Samuel Williams2019-06-191-0/+6
|