mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
ext/zlib/zlib.c (struct gzfile): pack (288 => 272 bytes) on 64-bit
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47619 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
0744ae5748
commit
338cea741d
2 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Thu Sep 18 06:41:18 2014 Eric Wong <e@80x24.org>
|
||||||
|
|
||||||
|
* ext/zlib/zlib.c (struct gzfile): pack (288 => 272 bytes) on 64-bit
|
||||||
|
|
||||||
Thu Sep 18 05:44:05 2014 Eric Wong <e@80x24.org>
|
Thu Sep 18 05:44:05 2014 Eric Wong <e@80x24.org>
|
||||||
|
|
||||||
* ext/socket/init.c (rsock_connect): refactor for blocking
|
* ext/socket/init.c (rsock_connect): refactor for blocking
|
||||||
|
|
|
@ -2197,18 +2197,18 @@ struct gzfile {
|
||||||
struct zstream z;
|
struct zstream z;
|
||||||
VALUE io;
|
VALUE io;
|
||||||
int level;
|
int level;
|
||||||
time_t mtime; /* for header */
|
|
||||||
int os_code; /* for header */
|
int os_code; /* for header */
|
||||||
|
time_t mtime; /* for header */
|
||||||
VALUE orig_name; /* for header; must be a String */
|
VALUE orig_name; /* for header; must be a String */
|
||||||
VALUE comment; /* for header; must be a String */
|
VALUE comment; /* for header; must be a String */
|
||||||
unsigned long crc;
|
unsigned long crc;
|
||||||
|
int ecflags;
|
||||||
int lineno;
|
int lineno;
|
||||||
long ungetc;
|
long ungetc;
|
||||||
void (*end)(struct gzfile *);
|
void (*end)(struct gzfile *);
|
||||||
rb_encoding *enc;
|
rb_encoding *enc;
|
||||||
rb_encoding *enc2;
|
rb_encoding *enc2;
|
||||||
rb_econv_t *ec;
|
rb_econv_t *ec;
|
||||||
int ecflags;
|
|
||||||
VALUE ecopts;
|
VALUE ecopts;
|
||||||
char *cbuf;
|
char *cbuf;
|
||||||
VALUE path;
|
VALUE path;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue