comparison src/lread.c @ 5814:a216b3c2b09e

Add TLS support. See xemacs-patches message with ID <CAHCOHQk6FNm2xf=XiGEpPq43+7WOzNZ=SuD9V79o3wb9WVCTrQ@mail.gmail.com>.
author Jerry James <james@xemacs.org>
date Tue, 07 Oct 2014 21:16:10 -0600
parents 427a72c6ee17
children 750fab17b299
comparison
equal deleted inserted replaced
5813:36dddf9d90d1 5814:a216b3c2b09e
712 Lisp_Object lispstream = Qnil; 712 Lisp_Object lispstream = Qnil;
713 const int block_size = 8192; 713 const int block_size = 8192;
714 struct gcpro ngcpro1; 714 struct gcpro ngcpro1;
715 715
716 NGCPRO1 (lispstream); 716 NGCPRO1 (lispstream);
717 lispstream = make_filedesc_input_stream (fd, 0, -1, LSTR_CLOSING); 717 lispstream = make_filedesc_input_stream (fd, 0, -1, LSTR_CLOSING, NULL);
718 /* 64K is used for normal files; 8K should be OK here because Lisp 718 /* 64K is used for normal files; 8K should be OK here because Lisp
719 files aren't really all that big. */ 719 files aren't really all that big. */
720 Lstream_set_buffering (XLSTREAM (lispstream), LSTREAM_BLOCKN_BUFFERED, 720 Lstream_set_buffering (XLSTREAM (lispstream), LSTREAM_BLOCKN_BUFFERED,
721 block_size); 721 block_size);
722 lispstream = make_coding_input_stream 722 lispstream = make_coding_input_stream