1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

ext/thread: remove

* ext/thread: removed dummy extension library.  thread_sync.c
  provides "thread.rb" already.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54827 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2016-04-30 02:56:17 +00:00
parent 13d62659ce
commit 23603c27ee
6 changed files with 11 additions and 13 deletions

View file

@ -1,3 +1,8 @@
Sat Apr 30 11:56:15 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ext/thread: removed dummy extension library. thread_sync.c
provides "thread.rb" already.
Sat Apr 30 11:53:48 2016 Tanaka Akira <akr@fsij.org>
* numeric.c (int_or): {Fixnum,Bignum}#| is unified into

6
NEWS
View file

@ -94,6 +94,12 @@ with all sufficient information, see the ChangeLog file or Redmine
* DateTime#to_time now preserves timezone. [Bug #12189]
* thread
* the extension library is removed. Till 2.0 it was a pure ruby script
"thread.rb", which has precedence over "thread.so", and has been provided
in $LOADED_FEATURES since 2.1.
=== C API updates
* ruby_show_version() will no longer exits the process, if

View file

@ -248,8 +248,6 @@ Zachary Scott (zzak)
_unmaintained_
[ext/syslog]
Akinori MUSHA (knu)
[ext/thread]
_unmaintained_
[ext/tk]
Hidetoshi NAGAI (nagai)
[ext/win32]

View file

@ -40,7 +40,6 @@
#stringio
#strscan
#syslog
#thread
#tk
#tk/tkutil
#win32

View file

@ -1,4 +0,0 @@
# frozen_string_literal: false
require 'mkmf'
create_makefile('thread')

View file

@ -1,6 +0,0 @@
#include <ruby.h>
void
Init_thread(void)
{
}