* environ.cc (parse_thing): Make binmode a DWORD.
* hinfo.cc (hinfo::init_std_file_from_handle): Use 'binmode' to determine default open mode. * winsup.h: Declare binmode.
This commit is contained in:
parent
9eef1530d5
commit
53211514a0
|
@ -1,3 +1,10 @@
|
||||||
|
Sat Jul 29 11:59:29 2000 Christopher Faylor <cgf@cygnus.com>
|
||||||
|
|
||||||
|
* environ.cc (parse_thing): Make binmode a DWORD.
|
||||||
|
* hinfo.cc (hinfo::init_std_file_from_handle): Use 'binmode' to
|
||||||
|
determine default open mode.
|
||||||
|
* winsup.h: Declare binmode.
|
||||||
|
|
||||||
Thu Jul 27 22:54:28 2000 Jason Tishler <jt@dothill.com>
|
Thu Jul 27 22:54:28 2000 Jason Tishler <jt@dothill.com>
|
||||||
|
|
||||||
* dcrt0.cc (dummy_autoload): Add load statement for RegDeleteValueA.
|
* dcrt0.cc (dummy_autoload): Add load statement for RegDeleteValueA.
|
||||||
|
|
|
@ -151,7 +151,7 @@ void
|
||||||
hinfo::init_std_file_from_handle (int fd, HANDLE handle,
|
hinfo::init_std_file_from_handle (int fd, HANDLE handle,
|
||||||
DWORD myaccess, const char *name)
|
DWORD myaccess, const char *name)
|
||||||
{
|
{
|
||||||
int bin = __fmode;
|
int bin = binmode ? O_BINARY : 0;
|
||||||
/* Check to see if we're being redirected - if not then
|
/* Check to see if we're being redirected - if not then
|
||||||
we open then as consoles */
|
we open then as consoles */
|
||||||
if (fd == 0 || fd == 1 || fd == 2)
|
if (fd == 0 || fd == 1 || fd == 2)
|
||||||
|
|
|
@ -18,8 +18,6 @@ extern BOOL allow_glob;
|
||||||
extern BOOL allow_ntea;
|
extern BOOL allow_ntea;
|
||||||
extern BOOL strip_title_path;
|
extern BOOL strip_title_path;
|
||||||
extern DWORD chunksize;
|
extern DWORD chunksize;
|
||||||
extern BOOL binmode;
|
|
||||||
BOOL threadsafe;
|
|
||||||
BOOL reset_com = TRUE;
|
BOOL reset_com = TRUE;
|
||||||
static BOOL envcache = TRUE;
|
static BOOL envcache = TRUE;
|
||||||
|
|
||||||
|
@ -369,7 +367,7 @@ struct parse_thing
|
||||||
} values[2];
|
} values[2];
|
||||||
} known[] =
|
} known[] =
|
||||||
{
|
{
|
||||||
{"binmode", {&binmode}, justset, NULL, {{FALSE}, {TRUE}}},
|
{"binmode", {x: &binmode}, justset, NULL, {{0}, {O_BINARY}}},
|
||||||
{"envcache", {&envcache}, justset, NULL, {{TRUE}, {FALSE}}},
|
{"envcache", {&envcache}, justset, NULL, {{TRUE}, {FALSE}}},
|
||||||
{"error_start", {func: &error_start_init}, isfunc, NULL, {{0}, {0}}},
|
{"error_start", {func: &error_start_init}, isfunc, NULL, {{0}, {0}}},
|
||||||
{"export", {&export_settings}, justset, NULL, {{FALSE}, {TRUE}}},
|
{"export", {&export_settings}, justset, NULL, {{FALSE}, {TRUE}}},
|
||||||
|
@ -381,7 +379,6 @@ struct parse_thing
|
||||||
{"strip_title", {&strip_title_path}, justset, NULL, {{FALSE}, {TRUE}}},
|
{"strip_title", {&strip_title_path}, justset, NULL, {{FALSE}, {TRUE}}},
|
||||||
{"title", {&display_title}, justset, NULL, {{FALSE}, {TRUE}}},
|
{"title", {&display_title}, justset, NULL, {{FALSE}, {TRUE}}},
|
||||||
{"tty", {NULL}, set_process_state, NULL, {{0}, {PID_USETTY}}},
|
{"tty", {NULL}, set_process_state, NULL, {{0}, {PID_USETTY}}},
|
||||||
{"threadsafe", {&threadsafe}, justset, NULL, {{TRUE}, {FALSE}}},
|
|
||||||
{NULL, {0}, justset, 0, {{0}, {0}}}
|
{NULL, {0}, justset, 0, {{0}, {0}}}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -435,6 +435,7 @@ int _raise (int sig);
|
||||||
int getdtablesize ();
|
int getdtablesize ();
|
||||||
void setdtablesize (int);
|
void setdtablesize (int);
|
||||||
|
|
||||||
|
extern DWORD binmode;
|
||||||
extern char _data_start__, _data_end__, _bss_start__, _bss_end__;
|
extern char _data_start__, _data_end__, _bss_start__, _bss_end__;
|
||||||
extern void (*__CTOR_LIST__) (void);
|
extern void (*__CTOR_LIST__) (void);
|
||||||
extern void (*__DTOR_LIST__) (void);
|
extern void (*__DTOR_LIST__) (void);
|
||||||
|
|
Loading…
Reference in New Issue