* cygheap.cc (_cfree): Add regparm attribute.

(_crealloc): Ditto.
* dcrt0.cc (dll_crt0_1): Default to always checking for executable for now.
* dtable.cc (dtable::not_open): Move method.
* dtable.h (dtable): Here.
* exceptions.cc (ctrl_c_handler): Don't expect process group leader to handle a
signal if it doesn't exist.
* fhandler.h (fhandler_base): Make openflags protected.
* localtime.c (tzsetwall): Check for __CYGWIN__ as well as __WIN32__.
* path.cc (path_conv::check): Add some comments.  Change strcat to assignment.
* lib/_cygwin_S_IEXEC.cc (_cygwin_bob__): Eliminate.
* fhandler_tty.cc (fhandler_console::dup): Set controlling terminal if
necessary.
* fhandler_tty.cc (fhandler_tty_slave::dup): Ditto.
This commit is contained in:
Christopher Faylor
2001-05-08 15:16:49 +00:00
parent 791cada5a2
commit 792011508a
12 changed files with 71 additions and 30 deletions

View File

@@ -109,7 +109,7 @@ extern "C"
/* impure_ptr */ &reent_data,
};
bool ignore_case_with_glob = FALSE;
int __declspec (dllexport) _check_for_executable = FALSE;
int __declspec (dllexport) _check_for_executable = TRUE;
#ifdef DEBUGGING
int pinger = 0;
#endif
@@ -753,9 +753,6 @@ dll_crt0_1 ()
longjmp (fork_info->jmp, fork_info->cygpid);
}
if (!CYGWIN_VERSION_CHECK_FOR_S_IEXEC)
_check_for_executable = TRUE;
#ifdef DEBUGGING
{
extern void fork_init ();