~ubuntu-branches/ubuntu/raring/ruby1.9.1/raring

« back to all changes in this revision

Viewing changes to ext/objspace/objspace.c

  • Committer: Bazaar Package Importer
  • Author(s): Daigo Moriwaki
  • Date: 2011-02-27 16:28:32 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20110227162832-7h4x31lnm3nx4i03
Tags: 1.9.2.180-1
* New upstream release.
  - (CVE-2011-1004; Closes: #615519)
  - No longer found in 1.9.2 (Closes: #509500)                                               
* debian/rules: correctly skip making rdoc for DEB_BUILD_OPTIONS="nordoc".
* debian/control: Build-Depends libncursesw5-dev as well. (Closes: #578169)

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
  objspace.c - ObjectSpace extender for MRI.
4
4
 
5
 
  $Author: nobu $
 
5
  $Author: yugui $
6
6
  created at: Wed Jun 17 07:39:17 2009
7
7
 
8
8
  NOTE: This extension library is not expected to exist except C Ruby.
141
141
        }
142
142
        break;
143
143
 
 
144
      case T_ZOMBIE:
 
145
        break;
 
146
 
144
147
      default:
145
148
        rb_bug("objspace/memsize_of(): unknown data type 0x%x(%p)",
146
149
               BUILTIN_TYPE(obj), (void*)obj);