* Makefile.in: Use default rules when compiling cygrun.o.

* dcrt0.cc (host_dependent_constants::init): Limit non-NT platforms to 32K
chunks when copying regions during a fork.
* path.cc (symlink_check_one): Add temporary debugging output.  Simplify
PATH_EXEC test.
* syscalls.cc (stat_suffixes): Null terminate this list.
This commit is contained in:
Christopher Faylor
2000-03-28 21:49:16 +00:00
parent 1b3755ec07
commit d29b6111a5
5 changed files with 26 additions and 12 deletions

View File

@@ -151,6 +151,7 @@ host_dependent_constants NO_COPY host_dependent;
void
host_dependent_constants::init ()
{
extern DWORD chunksize;
/* fhandler_disk_file::lock needs a platform specific upper word
value for locking entire files.
@@ -169,6 +170,7 @@ host_dependent_constants::init ()
case win32s:
win32_upper = 0x00000000;
shared = FILE_SHARE_READ | FILE_SHARE_WRITE;
chunksize = 32 * 1024 * 1024;
break;
default: