io.c (struct copy_stream_struct): packing

Reduce the struct to 80 bytes (from 88) on amd64 to reduce
stack use.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66049 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
normal 2018-11-27 22:20:45 +00:00
Родитель 7c4a422d83
Коммит a607c866dc
1 изменённых файлов: 3 добавлений и 3 удалений

6
io.c
Просмотреть файл

@ -10697,11 +10697,11 @@ struct copy_stream_struct {
int src_fd;
int dst_fd;
int close_src;
int close_dst;
unsigned close_src : 1;
unsigned close_dst : 1;
int error_no;
off_t total;
const char *syserr;
int error_no;
const char *notimp;
VALUE th;
};