Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2000-09-03Importing Egor's testsuite.Christopher Faylor
2000-09-03Importing Egor's testsuite.Christopher Faylor
2000-09-03Remove everythingChristopher Faylor
2000-09-03Remove READMEChristopher Faylor
2000-09-03remove everything and move it up a level.Christopher Faylor
2000-09-02* configure.in (FLAGS_FOR_TARGET): Use -nostdinc even for CanadianAlexandre Oliva
crosses, but add gcc/include to the header search path for them.
2000-09-02* sh.h (R_SH_GOT32, R_SH_PLT32, R_SH_COPY, R_SH_GLOB_DAT,Alexandre Oliva
R_SH_JMP_SLOT, R_SH_RELATIVE, R_SH_GOTOFF, R_SH_GOTPC): New relocs. (R_SH_FIRST_INVALID_RELOC): Adjust.
2000-09-02* sigproc.cc (mychild): New function.Christopher Faylor
(proc_subproc): Use mychild() to determine if a specific pid is valid for wait()ing.
2000-09-02* sigproc.cc (sigproc_init): Create wait_sig_inited without auto-reset to avoidChristopher Faylor
potential races. (init_child_info): Avoid unneeded test.
2000-09-02* sigproc.cc (proc_info): Rename proc_exists which takes a pid to "pid_exists".Christopher Faylor
* shared.h: Split out "child_info" stuff into a new header file and use where necessary. Declare pid_exists. * child_info.h: New file.
2000-09-01* Makefile.in: More normalization.Christopher Faylor
2000-09-01* Makefile.in: Normalize 'pwd' based on location of winsup.Christopher Faylor
2000-09-01* errno.cc (set_errno_from_win_error): Actually use arguments to strace_printf.Christopher Faylor
2000-08-31* ltconfig, ltmain.sh: Updated from libtool multi-language branch.Alexandre Oliva
* libtool.m4, ltcf-c.sh: Copied from libtool multi-language branch. * gettext.m4: New file, extracted from aclocal.m4.
2000-08-31* times.cc (gettimeofday): use GetSystemTimeAsFileTime to avoid aDJ Delorie
conversion (FACTOR): correct value (genf): set milliseconds to zero, DOW to 4.
2000-08-312000-08-30 Kazu Hirata <kazu@hxi.com>Jeff Johnston
* libc/sys/h8300hms/crt0.S: Optimize for both speed and code size.
2000-08-302000-08-30 Werner Almesberger <Werner.Almesberger@epfl.ch>Jeff Johnston
* libc/posix/execve.c: included unistd.h for "_execve" prototype. * libc/misc/unctrl.c libc/sys/sysvi386/crt0.c (sccsid): changed "#ifndef lint" to "#if defined(LIBC_SCCS) && !defined(lint)" like everywhere else.
2000-08-30Correct for missing patchGeoffrey Keating
2000-08-30 * libc/string/swab.c: Specify that it's defined in <unistd.h>.Geoffrey Keating
* libc/include/string.h: Don't include <sys/types.h>, as it causes really bad namespace pollution. Don't declare swab(), it is properly declared in unistd.h.
2000-08-29* grp.cc (getgroups): fail with EINVAL if array is not largeDJ Delorie
enough to hold all supplementary group IDs.
2000-08-292000-08-29 Werner Almesberger <Werner.Almesberger@epfl.ch>Jeff Johnston
* libc/unix/getpwent.c (getpwnam, getpwuid, getpwent): removed (broken) support for non-existent /etc/passwd field "comment".
2000-08-29* signal.cc (_raise): New function.Christopher Faylor
* exceptions.cc (unused_sig_wrapper): Remove _raise. * sigproc.h (class sigframe): Default frames to skip to zero or suffer from exuberant optimization. * fhandler_tty.cc (fhandler_tty::write): Set appropriate errno when WriteFile to pipe fails.
2000-08-29* kill.c (main): Avoid skipping next argument when a signal number isChristopher Faylor
specified. * Makefile.in: Always clean dumper.exe.
2000-08-292000-08-27 Werner Almesberger <Werner.Almesberger@epfl.ch>Jeff Johnston
* libc/posix/scandir.c (DIRSIZ, scandir): use struct dirent.d_namlen only if _DIRENT_HAVE_D_NAMLEN is defined. (alphasort): aligned prototype with libc/sys/cygwin/sys/dirent.h and simplified function body. * libc/posix/telldir.c (telldir): changed "telldir" prototype to long telldir (DIR *) as mentioned in annex B of POSIX.1
2000-08-282000-08-27 Werner Almesberger <Werner.Almesberger@epfl.ch>Jeff Johnston
* libc/machine/i386/i386mach.h: added SOTYPE_FUNCTION to set type of global entry points if _I386MACH_NEED_SOTYPE_FUNCTION is defined; Added __CLI and __STI macros (controlled via _I386MACH_ALLOW_HW_INTERRUPTS macro). * libc/machine/i386/f_atan2.S libc/machine/i386/f_atan2f.S libc/machine/i386/f_frexp.S libc/machine/i386/f_frexpf.S libc/machine/i386/f_ldexp.S libc/machine/i386/f_ldexpf.S libc/machine/i386/f_log.S libc/machine/i386/f_log10.S libc/machine/i386/f_log10f.S libc/machine/i386/f_logf.S libc/machine/i386/f_tan.S libc/machine/i386/f_tanf.S libc/machine/i386/memchr.S libc/machine/i386/memcmp.S libc/machine/i386/memcpy.S libc/machine/i386/memmove.S libc/machine/i386/memset.S libc/machine/i386/setjmp.S libc/machine/i386/strchr.S libc/machine/i386/strlen.S: (that's libc/machine/i386/*.S) added SOTYPE_FUNCTION(symbol) for all global entry points. * libc/machine/i386/setjmp.S: removed code replicated in libc/machine/i386/i386mach.h and included i386mach.h instead; Use __CLI and __STI instead of cli and sti.
2000-08-282000-08-23 Werner Almesberger <Werner.Almesberger@epfl.ch>Jeff Johnston
* libc/stdlib/mprec.c (ulp, b2d, d2b): changed a few expressions like x << y-z to the equivalent x << (y-z). (d2b): changed if statements with assignment to perform the assignment prior to the if check. * libc/reent/reent.c: included stdlib.h for "_free_r" prototype. * libc/unix/getpass.c (getpass): moved "echo" assignment out of if. * libc/unix/ttyname.c: included string.h for "strcpy" prototype. * libc/unix/getcwd.c (ISDOT): added parentheses to clarify && and || precedence. * libc/include/sys/unistd.h: added "vfork" prototype (for popen.c). Added "_execve" prototype (for execl.c, execle.c, execv.c, and execve.c). * libc/posix/popen.c (popen): added parentheses to clarify && and || precedence. * libm/math/e_cosh.c (__ieee754_cosh): changed parentheses to clarify && and || precendence (and to remove pascalism). * libm/math/e_sinh.c (__ieee754_sinh): Ditto. * libm/math/s_infconst.c: added another pair of braces to all initializers for __infinity (need three: for __infinity[1] array, for union __dmath, and for i[2]).
2000-08-26* pinfo.h (pinfo): Un-inline release.Christopher Faylor
* pinfo.cc (pinfo::release): Move here from pinfo.h. * sigproc.cc (proc_terminate): Remove bogus 'pinfo child' which caused strange destruction of random regions of memory when destructor was invoked.
2000-08-26* dcrt0.cc (dll_crt0_1): Move set_os_type.Christopher Faylor
(_dll_crt0): To here. (cygwin_dll_init): And here. * external.cc (fillout_pinfo): Use more foolproof method for scanning for pids. * pinfo.cc (set_myself): Eliminate myself_identity.init. * sigproc.cc (wait_sig): Do it here instead to reduce the amount of time where there could potentially be two processes with the same pid. * spawn.cc (spawn_guts): Eliminate duplicate initialization. * include/sys/cygwin.h: Mark unused PID_* elements.
2000-08-26* libc/include/sys/unistd.h (environ): this one isn't from theDJ Delorie
DLL, no __IMPORT
2000-08-25 * exec.cc (_execve): Change definition according to declaration inCorinna Vinschen
newlib/libc/include/sys/unistd.h.
2000-08-25* libc/stdlib/system.c (do_system): Eliminate explicit declaration of environChristopher Faylor
when compiling under cygwin since it is already declared in unistd.h.
2000-08-25* Makefile.in: Only build dumper.exe when all of its library and includeChristopher Faylor
dependencies are available.
2000-08-25Add entry "How do I uninstall Cygwin?"David Starks-Browning
2000-08-25* Makefile.in: Make failure to build dumper.exe a non-error.Christopher Faylor
2000-08-25minor formatting fixesDavid Starks-Browning
2000-08-25Major re-write of "Installation using the setup.exe program".David Starks-Browning
2000-08-25Minor changes.David Starks-Browning
2000-08-25* external.cc (cygwin_internal): Add CW_INIT_EXCEPTIONS to allow cygwinChristopher Faylor
exception handling on threads not created by cygwin. * sigproc.cc (proc_terminate): Don't release pinfo structs since we are exiting. * include/sys/cygwin.h: Add CW_INIT_EXCEPTIONS.
2000-08-25* ps.cc (main): Always print a cygwin process using cygwin paths.Christopher Faylor
2000-08-252000-08-23 Werner Almesberger <Werner.Almesberger@epfl.ch>Jeff Johnston
* libc/stdlib/mprec.c (ulp, b2d, d2b): changed a few expressions like x << y-z to the equivalent x << (y-z). (d2b): changed if statements with assignment to perform the assignment prior to the if check. * libc/reent/reent.c: included stdlib.h for "_free_r" prototype. * libc/unix/getpass.c (getpass): moved "echo" assignment out of if. * libc/unix/ttyname.c: included string.h for "strcpy" prototype. * libc/unix/getcwd.c (ISDOT): added parentheses to clarify && and || precedence. * libc/include/sys/unistd.h: added "vfork" prototype (for popen.c). Added "_execve" prototype (for execl.c, execle.c, execv.c, and execve.c). * libc/posix/popen.c (popen): added parentheses to clarify && and || precedence. * libm/math/e_cosh.c (__ieee754_cosh): changed parentheses to clarify && and || precendence (and to remove pascalism). * libm/math/e_sinh.c (__ieee754_sinh): Ditto. * libm/math/s_infconst.c: added another pair of braces to all initializers for __infinity (need three: for __infinity[1] array, for union __dmath, and for i[2]).
2000-08-25* ps.cc (main): Always print a cygwin process using cygwin paths.Christopher Faylor
2000-08-25* select.cc (cygwin_select): Correct logic for "always_ready" fds or when thereChristopher Faylor
is no wait specified. * syslog.cc (pass_handler::set_message): Zero the buffer prior to setting it.
2000-08-24Change attribution.Christopher Faylor
2000-08-24* Makefile.common: Add bupdir2 to reference above the i686-pc-cygwin directory.Christopher Faylor
2000-08-24* Makefile.in: Add dumper.exe target and associated mechanisms for building it.Christopher Faylor
* dumper.cc: New file. * dumper.h: New file. * module_info.cc: New file. * parse_pe.cc: New file.
2000-08-242000-08-23 Werner Almesberger <Werner.Almesberger@epfl.ch>Jeff Johnston
* libc/stdlib/abort.c: changed description: uses "raise" instead of "getpid" and "kill"; added: uses "write" and "_exit". Also included unistd.h for "_exit" prototype. * libc/stdlib/system.c: included unistd.h for "execve" prototype, reent.h for "_fork_r" and "_wait_r" prototypes. (do_system): changed extern char *environ[] to POSIX-friendly extern char **environ. * libc/stdlib/wctomb_r.c: included string.h for "strlen" and "strcmp" prototypes. * libc/stdlib/remove.c: included reent.h for "_unlink_r" prototype. * libc/reent/execr.c: included sys/wait.h for "wait" prototype. * libc/reent/fstatr.c: included sys/stat.h for "fstat" prototype. * libc/reent/openr.c: included fcntl.h for "open" prototype. * libc/reent/signalr.c: included signal.h for "kill" prototype, unistd.h for "getpid" prototype. * libc/reent/statr.c: included sys/stat.h for "stat" prototype. * libc/reent/timer.c: included sys/time.h for "gettimeofday" prototype. * libc/unix/getut.c (utmpname): removed local, incorrect "strdup" prototype. Also included stdlib.h for "abort", string.h for "strdup" and "strncmp" prototypes. * libc/unix/getlogin.c: included string.h for "strncmp", "memset", and "strncpy", unistd.h for "read" and "close" prototypes. * libc/posix/execvp.c: included string.h for "strchr", "strlen", and "strcat" prototypes.
2000-08-24* include/cygwin/core_dump.h: New file, contains structures used in cygwin coreChristopher Faylor
core files. * include/sys/procfs.h: New file, needed to autoconfigure cygwin core dumps support in bfd.
2000-08-24* environ.cc (parse_thing): nobinmode should force O_TEXT.Christopher Faylor
(regopt): Use correct path to find LOCAL_MACHINE registry options. * fhandler.cc (fhandler_base::open): Set binary mode only when binmode == O_BINARY. * pipe.cc (pipe): Pipe handling should rely on binmode not _fmode now that the two are different.
2000-08-24* include/sys/cygwin.h (strace_printf_wrap): Force printing whenChristopher Faylor
_STRACE_SYSTEM. (strace_printf_wrap1): Ditto.
2000-08-24* debug.h: Allow some debug defines for use in header files.Christopher Faylor