
sizes of pathnames produced by expansion of tilde (home-directory) prefixes by replacing S_pathname, S_pathname_impl, and S_homedir with S_malloc_pathname, which always mallocs space for the result. one thread-safety issue involved the use of static strings for expanded pathnames and affected various file-system operations. the other affected the file open routines and involved use of the incoming pathname while deactivated. the incoming pathname is sometimes if not always a pointer into a Scheme bytevector, which can be overwritten if a collection occurs while the thread is deactivated. the size limitation corresponded to the use of the static strings, which were limited to PATH_MAX bytes. (PATH_MAX typically isn't actually the maximum path length in contemporary operating systems.) eliminated similar issues for wide pathnames under Windows by adding S_malloc_wide_pathname. consumers of the old routines have been modified to use the new routines and to free the result strings. the various file operations now consistently treat a pathname with an unresolvable home directory as a pathname that happens to start with a tilde. eliminated unused foreign-symbol binding of "(cs)pathname" to S_pathname. io.c, externs.h, new_io.c, prim5.c, scheme.c, prim.c - various places where a call to close or gzclose was retried when the close operation was interrupted no longer do so, since this can cause problems when another thread has reallocated the same file descriptor. new_io.c - now using vcvarsall type x86_amd64 rather than amd64 when the former appears to supported and the latter does not, as is the case with VS Express 2015. c/Mf-a6nt, c/Mf-ta6nt - commented out one of the thread mats that consistently causes indefinite delays under Windows and OpenBSD due to starvation. thread.ms - increased wait time for a couple of subprocess responses 6.ms - added call to collector to close files opened during iconv mats specifically for when mats are run under Windows with no iconv dll. io.ms original commit: ad44924307c576eb2fc92e7958afe8b615a7f48b
52 lines
1.6 KiB
Plaintext
52 lines
1.6 KiB
Plaintext
# Mf-a6nt
|
|
# Copyright 1984-2016 Cisco Systems, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
m = a6nt
|
|
Cpu = X86_64
|
|
|
|
clib=
|
|
o = obj
|
|
mdobj=windows.$o
|
|
mdsrc=windows.c Makefile.$m cs.ico scheme.rc make.bat
|
|
mdclean=vs.bat make.bat scheme.res ../bin/$m/*.exp mtscheme.exe* mdscheme.exe*
|
|
|
|
include Mf-base
|
|
|
|
${Scheme}: make.bat
|
|
./make.bat
|
|
cp ../bin/$m/scheme.exe ../bin/$m/petite.exe
|
|
|
|
vs.bat:
|
|
echo '@echo off' > $@
|
|
echo 'if "%VS140COMNTOOLS%" neq "" goto :VS' >> $@
|
|
echo 'echo Visual Studio 2015 must be installed.' >> $@
|
|
echo 'exit 1' >> $@
|
|
echo ':VS' >> $@
|
|
echo 'set INCLUDE=' >> $@
|
|
echo 'set LIB=' >> $@
|
|
echo 'set LIBPATH=' >> $@
|
|
echo 'set MACHINETYPE=amd64' >> $@
|
|
echo 'if exist "%VS140COMNTOOLS%..\..\VC\bin\x86_amd64\vcvarsx86_amd64.bat" set MACHINETYPE=x86_amd64' >> $@
|
|
echo 'if exist "%VS140COMNTOOLS%..\..\VC\bin\vcvars64.bat" set MACHINETYPE=amd64' >> $@
|
|
echo 'call "%VS140COMNTOOLS%..\..\VC\vcvarsall.bat" %MACHINETYPE%' >> $@
|
|
echo '%*' >> $@
|
|
chmod +x $@
|
|
|
|
make.bat: vs.bat
|
|
echo '@echo off' > $@
|
|
echo 'set MAKEFLAGS=' >> $@
|
|
echo 'call vs.bat nmake /f Makefile.$m /nologo %*' >> $@
|
|
chmod +x $@
|