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
2005-05-10 * path.cc (path_conv::check): Set correct file attributes for socketCorinna Vinschen
files.
2005-05-10 * mingwex/math/nexttoward.c: New file.Danny Smith
* mingwex/math/nexttowardf.c: New file. * mingwex/math/nextafterl.c: Add nexttowardl aliaa. * mingwex/Makefile.in (MATH_DISTFILES): Add nexttoward.c, mexttowardf.c, (MATH_OBJS): Add nexttoward.o, mexttowardf.o, * include/math.h (nexttoward, nextowardf, nexttowardl): Add prototypes.
2005-05-09 * mingwex/math/nextafterf.c (nextafterf): CorrectDanny Smith
handling of -0.0. * mingwex/math/nextafterl.c: New file. * mingwex/Makefile.in (MATH_DISTFILES): Add nextafterl.c. (MATH_OBJS): Add nextafterl.o. * include/math.h (nextafterl): Uncomment prototype.
2005-05-09gas/Jan Beulich
2005-05-09 Jan Beulich <jbeulich@novell.com> * config/tc-i386.c (parse_insn): Disallow use of prefix separator and comma in Intel mode. include/opcode/ 2005-05-09 Jan Beulich <jbeulich@novell.com> * i386.h (i386_optab): Add ht and hnt.
2005-05-092005-05-09 Pierre Humblet <pierre.humblet@ieee.org>Pierre Humblet
* fhandler.h (class fhandler_netdrive): New class. * fhandler_netdrive.cc (fhandler_netdrive::fhandler_netdrive): New constructor. (fhandler_netdrive::exists): New method. (fhandler_netdrive::fstat): Ditto. (fhandler_netdrive::readdir): Ditto. (fhandler_netdrive::open): Ditto. * dtable.cc (build_fh_pc): Handle case FH_NETDRIVE. * path.cc (isvirtual_dev): Add FH_NETDRIVE. (mount_info::conv_to_win32_path): Detect netdrive device and bypass mount search for network paths.
2005-05-09* cygcheck.cc (nuke): New function.Christopher Faylor
(load_cygwin): New function. (main): Use load_cygwin to load argv/envp from cygwin environment, if appropriate.
2005-05-09* strace.cc (attach_process): Don't call load_cygwin(). Assume that it'sChristopher Faylor
already happened. (dotoggle): Ditto. (main): Set argv from cygwin environment, if it exists.
2005-05-09* dcrt0.cc (get_cygwin_startup_info): New function pulled from dll_crt0_0.Christopher Faylor
(dll_crt0_0): Use get_cygwin_startup_info to retrieve cygwin-specific startup pointer. * external.cc (cygwin_internal): Implement CW_ARGV and CW_ENVP. * include/sys/cygwin.h: Implement CW_ARGV and CW_ENVP.
2005-05-08* how-programming.texinfo: Replace MAKE_MODE entry with FAQ about execvp ↵Joshua Daniel Franklin
errors and cygexec.
2005-05-08 * mingwex/math/erfl.c: New file.Danny Smith
* mingwex/Makefile.i (MATH_DISTFILES): Add erfl.c. (MATH_OBJS): Add erfl.o. * include/math.h (erfl, erfcl): Uncomment prototypes.
2005-05-08* path.cc (normalize_posix_path): Don't treat '//' specially since newerChristopher Faylor
versions of bash now get this right.
2005-05-08* devices.cc: Regenerate with correct name for dev_netdrive_storage.Christopher Faylor
2005-05-07move commentChristopher Faylor
2005-05-07fix breakpoint exampleChristopher Faylor
2005-05-06* Makefile.in (DLL_O_FILES): Add fhandler_netdrive.o.Christopher Faylor
* fhandler_netdrive.cc: Placeholder file for future development. * devices.h (FH_NETDRIVE): Define new virtual device type. (netdrive_dev): Define. * devices.in (dev_netdrive_storage): Define. * devices.cc: Regenerate.
2005-05-062005-05-05 Tobias Anderberg <tobias.anderberg@axis.com>Jeff Johnston
* arm/syscalls.c (get_errno): Fix output register constraint.
2005-05-062005-05-05 J"orn Rennecke <joern.rennecke@st.com>Jeff Johnston
* rs6000/sim-getrusage.S: New file, broken out of: (simulator.S). * rs6000/Makefile.in (SIM_OBJS): Add sim-getrusage.o. (sim-getrusage.o): New rule.
2005-05-05 * configure.in: Always pass --target to target configures asMike Stump
otherwise rebuilds that do --recheck will fail. * confiugure: Rebuilt.
2005-05-042005-05-04 Paolo Bonzini <bonzini@gnu.org>Paolo Bonzini
* Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Rename from STAGE_HOST_EXPORTS. (configure, all): Add bootstrap support. (Host modules, target modules): Pass post-stage1 flags and exports. (Top-level bootstrap): Remove bootstrap rules, expanded elsewhere. * Makefile.in: Regenerate.
2005-05-04 * cygerrno.h (__set_errno): Remove useless parentheses.Corinna Vinschen
2005-05-04 * cygerrno.h (__set_errno): Define as inline function here.Corinna Vinschen
(set_errno): Always define as call to __set_errno. * debug.cc (__set_errno): Move to cygerrno.h.
2005-05-04 * include/wchar.h (WCHAR_MAX): Define as 0xffff, so preprocessorDanny Smith
#if (WCHAR_MAX <= WCHAR_MIN) is false. * include/stdint.h (WCHAR_MAX): Likwise. (WINT_MAX): Likewise.
2005-05-04* shared.cc (user_shared_initialize): Rework locking so that nothing is checkedChristopher Faylor
until cb is non-zero.
2005-05-04* shared.cc (user_shared_initialize): Rework locking so that nothing is checkedChristopher Faylor
until cb is non-zero.
2005-05-03 * fhandler_disk_file.cc (fhandler_disk_file::fchmod): Don't treatCorinna Vinschen
inability to open file as failure if only SetFileAttributes is going to be called. Only call set_file_attribute if really necessary.
2005-05-03 * fhandler_socket.cc (get_inet_addr): Add missing __seterrno call.Corinna Vinschen
2005-05-03 * mingwex/math/signbit.c (__signbit): Make return valueDanny Smith
consistent with GCC's __builtin_signbit. * mingwex/math/signbitf.c (__signbitf): Likewise. * mingwex/math/signbitf.c (__signbitl): Likewise. * include/math.h (__signbit, __signbitf, __signbitl): Likewise for inlines.
2005-05-02 * include/_mingw.h (__MINGW_ATTRIB_NONNULL): Don't define asDanny Smith
variadic macro. * mingwex/mbrtowc.c (__mbrtowc_cp): Use __MINGW_ATTRIB_NONNULL. Remove unused MBTOWC_FLAGS define.
2005-05-02white space and minor comment cleanup.Christopher Faylor
2005-05-02* fhandler_tty.cc (fhandler_tty_slave::read): Actually read input when vmin ==Christopher Faylor
vtime == 0.
2005-05-01* mount.cc (usage): Clarify action of -m option.Christopher Faylor
2005-04-30* environ.cc (spenv::force_into_environment): Rename from add_always.Christopher Faylor
(spenv::add_if_exists): Rename from force. (build_env): Accommodate name changes. Make sure that stuff that is always supposed to be in the environment is actually added to the environment. * shared.cc (open_shared): Restore VirtualFree eliminated by 2005-04-28 change.
2005-04-30* errno.cc (errmap): Sort table.Christopher Faylor
2005-04-30* errno.cc (errmap): Map ERROR_NETNAME_DELETED to ENOSHARE.Christopher Faylor
2005-04-29* path.cc (getmntent): Add previously-omitted 'noexec' and 'managed'flags toDave Korn
mnt_opts string if present in mount flags.
2005-04-292005-04-29 Paolo Bonzini <bonzini@gnu.org>Paolo Bonzini
Sync from gcc: 2005-04-22 Bernd Schmidt <bernd.schmidt@analog.com> * config.sub: Update from master copy. 2005-04-19 Hans-Peter Nilsson <hp@axis.com> * configure.in <crisv32-*-*, cris-*-*>: New local variable libgcj_ex_libffi. Have specific match for *-*-linux*. Separate matches for "*-*-aout" and "*-*-elf". Don't disable libffi for "*-*-elf" and "*-*-linux*". * configure: Regenerate. config: 2005-04-29 Paolo Bonzini <bonzini@gnu.org> * acx.m4 (ACX_PROG_GNAT): Remove stray break.
2005-04-29* shared_info.h (cygwin_shared_address): Bump to a higher value to avoidChristopher Faylor
collision with large data areas. * fhandler_console.cc (fhandler_console::get_tty_stuff): Accommodate changes to open_shared arguments. * fhandler_tape.cc (mtinfo_init): Ditto. * pinfo.cc (pinfo::init): Use open_shared rather than win32 mmap calls. * shared.cc (user_shared_initialize): Ditto. (memory_init): Ditto. (open_shared): Change to allow use a smore general mmap handler. * shared_info.h (shared_locations): Add SH_JUSTCREATE, SH_JUSTOPEN. (open_shared): Change declaration to match new usage. * autoload.cc (LoadDLLfuncEx2): Define in terms of LoadDLLfuncEx3. (LoadDLLfuncEx3): New macro.
2005-04-282005-04-28 Shaun Jackman <sjackman@gmail.com>Jeff Johnston
* libgloss/syscalls.c (get_errno): Add an output register constraint.
2005-04-282005-04-28 Jeff Johnston <jjohnstn@redhat.com>Jeff Johnston
* libc/stdio/vfscanf.c (__svfscanf_r): Fix code thinko when checking for multiple flags.
2005-04-28(check in files that should have been checked in previously)Christopher Faylor
* fhandler.cc (fhandler_base::open_9x): Remove (broken) check for O_CREAT|O_EXCL. * syscalls.cc (open): Do O_CREAT|O_EXCL check here first.
2005-04-28* fhandler.cc (fhandler_base::open_9x): Remove (broken) check forChristopher Faylor
O_CREAT|O_EXCL. * syscalls.cc (open): Do O_CREAT|O_EXCL check here first.
2005-04-27* environ.cc (build_env): Ensure that win32 array is properly filled in when aChristopher Faylor
missing value has to be generated.
2005-04-26* include/cygwin/version.h: Bump DLL minor number to 17.Christopher Faylor
2005-04-26 * include/wininet.h (FtpGetFileSize): Add prototype.Danny Smith
(FtpCommand[AW]): Correct prototypes. Reported by <siger at users dot sf dot net>
2005-04-26merge from gccDJ Delorie
2005-04-25* mount.cc (mount_commands): Display "-X" option when appropriate.Christopher Faylor
2005-04-25 * include/vfw.h (capCreateCaptureWindow[AW]): Add prototypes.Danny Smith
(capGetDriverDescription[AW]): Likewise. ChangeLog: Typo fixes.
2005-04-25* how-to-debug-cygwin.txt: Fix typo.Joshua Daniel Franklin
2005-04-24 * mingwex/mbrtowc.c: New file.Danny Smith
* mingwex/wcrtomb.c: New file. * mingwex/btowc.c: New file. * mingwex/wctob.c: New file. * mingwex/mb_wc_common.h: New file. * mingwex/Makefile.in (DISTFILES): Add new files. (Q8_OBJS): Add new objects. * include/wchar.h: Adjust comment about mbrtowc() and related funcions. Add __restrict__ to pointer params in prototypes. (wmemset. wmemchr, wmemcpy, wmemmove, wcstoll, wcstoull): Remove arg names from protototypes.
2005-04-242005-04-23 Wu Yongwei <adah@sh163.net>Danny Smith
mingwex/dirent.c: Formatting changes. mingwex/dirent.c (_topendir): Make the end-of-path slash check MBCS-safe.