summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* * dir.cc (writable_directory): handle root directoriesDJ Delorie2000-05-232-0/+8
|
* * uname.cc (uname): Use a "s" to denote a snapshot to avoid confusion with theChristopher Faylor2000-05-232-1/+6
| | | | number "5".
* * path.cc (mount_info::conv_to_posix_path): Avoid putting a trailing slash on aChristopher Faylor2000-05-234-27/+48
| | | | | | | | | | | | | directory name when the ms-dos path spec is a root directory of a device. * registry.cc (reg_key::build_reg): Set 'key_is_invalid' flag rather than using an INVALID_HANDLE_KEY. (reg_key::get_int): Test for key validity before performing registry operations. (reg_key::set_int): Ditto. (reg_key::get_string): Ditto. (reg_key::set_string): Ditto. (reg_key::kill): Ditto. (reg_key::~reg_key): Ditto.
* * mkvers.sh: Use snapshot date as build date since it is more interesting.Christopher Faylor2000-05-233-6/+23
| | | | | * uname.cc (uname): Detect if this is a snapshot build and add an "S" to the version number. Report the snapshot date as the release date.
* * ia64.h (R_IA64_PCREL60B, R_IA64_PCREL21BI): New.Richard Henderson2000-05-232-1/+11
| | | | (R_IA64_PCREL22, R_IA64_PCREL64I): New.
* Allow d suffix on iretAlan Modra2000-05-232-2/+7
|
* * environ.cc (regopt): Scan HKLM if HKCU scan fails.Christopher Faylor2000-05-222-0/+10
|
* * dir.cc (rmdir): Care for misleading error messagesCorinna Vinschen2000-05-223-8/+26
| | | | | | | when trying to remove a directory on a samba share. Eliminate superfluous else branch. * syscalls.cc (_rename): Additional check for ERROR_FILE_EXISTS if MoveFile fails.
* * dcrt0.cc (dll_crt0_1): Move uinfo_init call to before sigproc_init to avoid aChristopher Faylor2000-05-223-16/+18
| | | | | | | race. (noload): Add an extra argument for debugging. * uinfo.cc (uinfo_init): Eliminate test for multiple calls. (getlogin): Assume that uinfo_init has already been called.
* 20000-05-21 H.J. Lu (hjl@gnu.org)H.J. Lu2000-05-213-27/+14
| | | | | | | | | | | * configure: Revert changes made on May 18 and May 19. * Makefile.in (CC_FOR_TARGET): Make sure as/ld in the gcc directory are used if they exist. Make sure $(build_tooldir)/include is searched for header files, $(build_tooldir)/lib/ for library files. (GCC_FOR_TARGET): Likewise. (CXX_FOR_TARGET): Likewise.
* * exceptions.cc (interruptible): Add an argument to control whether functionChristopher Faylor2000-05-202-37/+67
| | | | | | just checks for validity. Flag module handle == 0 as noninterrupible. (call_handler): Always acquire and release ebp lock. Loop for only a fixed amount of time attempting to grab mutos and find an interruptible PC.
* * regtool.cc (find_key): Add parameter `access'.Corinna Vinschen2000-05-192-9/+18
| | | | | | | | Call `RegOpenKeyEx' with that desired access. (cmd_add, cmd_remove, cmd_set, cmd_unset): Call `find_key' with KEY_ALL_ACCESS access. (cmd_list, cmd_check, cmd_get): Call `find_key' with KEY_READ access.
* 20000-05-19 H.J. Lu (hjl@gnu.org)H.J. Lu2000-05-192-2/+20
| | | | | * configure: Provide --disable-target-dir-sanity-checking to disable the gcc directory checking for cross compiling.
* * syscalls.cc (setmode): change mode of any matching FILE* also.DJ Delorie2000-05-192-0/+26
|
* * cygpath.cc: add --windir/--sysdir optionsDJ Delorie2000-05-193-2/+27
| | | | * utils.sgml: and document them
* * Makefile.in: Remove external.h dependency.Christopher Faylor2000-05-184-6/+15
| | | | | * dcrt0.cc (sigthread::init): Move here from sigproc.h. * sigproc.h (sigthread): Move init to dcrt0.cc.
* * libc/stdio/fgets.c (fgets): perform CRLF conversions if __SCLEDJ Delorie2000-05-182-0/+23
|
* * Makefile.in: Eliminate WINSUP_DEPS.Christopher Faylor2000-05-188-135/+14
| | | | | | | | | * cygpath.cc: Reorganize includes to accomodate sys/cygwin.h changes. * mkgroup.c: Ditto. * mkpasswd.c: Ditto. * mount.cc: Ditto. Eliminate use of cygwin source specific includes. * ps.cc: Ditto. * cygwin.cc: Eliminate obsolete file.
* * MAINTAINERS: Add Corinna to general list.Christopher Faylor2000-05-182-9/+16
|
* Eliminate.Christopher Faylor2000-05-181-50/+0
|
* * select.cc (thread_pipe): Add paranoid check to ensure thread termination.Christopher Faylor2000-05-186-26/+88
| | | | | | | | | * external.cc: Eliminate obsolete include. * getopt.c (getopt_long): Fix compiler warning. * shared.h: Moved PID_ definitions to include/sys/cygwin so that they can be used by external programs. * include/sys/cygwin.h: Move external definitions here. Include sys/resource.h to avoid having to do this everywhere.
* 20000-05-18 H.J. Lu (hjl@gnu.org)H.J. Lu2000-05-182-0/+16
| | | | | * configure: Ask to create the gcc directory for cross compiling if necessary.
* * configure.in (hppa*64*-*-*): Do build ld for this configuration.Jeff Law2000-05-182-1/+6
|
* * configure.in: Special case powerpc*-*-aix* target_makefile_frag.David Edelsohn2000-05-182-0/+7
|
* * include/winnt.h: Add some missing TAPE_DRIVE_* defines.Corinna Vinschen2000-05-182-0/+7
|
* * sigproc.h (sigframe): Don't set frame info unless tid matches this thread id.Christopher Faylor2000-05-182-1/+6
|
* * dcrt0.cc (dll_crt0_1): Initialize mainthread stuff here before anything needsChristopher Faylor2000-05-185-6/+22
| | | | | | | | it. * sigproc.cc (sigproc_init): Move mainthread initialization out of here. * sigproc.h (sigthread): Add init() method. (sigframe): Don't try to initialize muto. * sync.cc: Undef WaitForSingleObject to avoid recursion.
* Typo. bfd@sourceware -> binutils@sourceware.Andrew Cagney2000-05-181-1/+1
|
* Apply patch from Richard Gorton <gorton@scrugs.lkg.dec.com> to implementNick Clifton2000-05-172-3/+9
| | | | --emit-relocs switch to the linker to preserve relocs in an output executable
* * Makefile.in (configure-target-libiberty): Depend onAlexandre Oliva2000-05-172-1/+6
| | | | configure-target-newlib.
* * testsuite/winsup.api/crlf.c: NewDJ Delorie2000-05-175-0/+1289
| | | | * testsuite/winsup.api/iospeed.c: New
* * path.cc (mount_info::cygdrive_posix_path): Don't add trailing slash ifChristopher Faylor2000-05-1715-69/+182
| | | | | | | | | | | | | | | | | | | | | | | | | referring to something like c:\. * dcrt0.cc (dll_crt0_1): Move uinfo initialization prior to sig_send initialization to give signal thread a chance to finish. * debug.cc (WFSO): Move to sigproc.cc (WFMO): Ditto. * exceptions.cc (interruptible): Allocate slightly more space for directory just for paranoia's sake. (call_handler): Eliminate nonmain argument. Determine if main thread has set a frame pointer and use it if so. (sig_handle): Eliminate nonmain argument. * net.cc: Record frame information in appropriate routines throughout. * select.cc (select): Ditto. * sigproc.cc: Use sigthread structure to record mainthread id throughout. (sig_send): Record frame information for signal handler. (wait_sig): Reflect argument change in sig_handle. (WFSO): Move here and record frame information for signal handler. (WFMO): Ditto. * sigproc.h: Implement new "sigthread" class. Implement "sigframe" class for manipulating signal frame info. * thread.cc (__pthread_kill): Use standard _kill() function rather than calling sig_send directly. * winsup.h: Eliminate ebp element from signal_dispatch class.
* Fix fild.Alan Modra2000-05-172-3/+7
|
* * fhandler_tape.cc (fhandler_dev_tape::ioctl): CheckCorinna Vinschen2000-05-162-1/+12
| | | | for filemark feature on MTWEOF operation.
* * cgen/opcodes fixFrank Ch. Eigler2000-05-162-4/+27
| | | | | | | | | | | | | | | | | | | * approved by nickc [opcodes/ChangeLog] 2000-05-16 Frank Ch. Eigler <fche@redhat.com> * fr30-desc.h: Partially regenerated to account for changed CGEN_MAX_* -> CGEN_ACTUAL_MAX_* macros. * m32r-desc.h: Ditto. [include/opcode/ChangeLog] 2000-05-16 Frank Ch. Eigler <fche@redhat.com> * cgen.h (CGEN_MAX_SYNTAX_BYTES): Increase to 32. Check that it exceeds CGEN_ACTUAL_MAX_SYNTAX_BYTES, if set. (CGEN_MAX_IFMT_OPERANDS): Increase to 16. Check that it exceeds CGEN_ACTUAL_MAX_IFMT_OPERANDS, if set.
* * include/cygwin/in.h (AF_INET6): Use correct in6_addr struct.Christopher Faylor2000-05-162-1/+5
|
* manually updated some sites (txt version badly formatted, dont know why)David Starks-Browning2000-05-161-10/+17
|
* update README to latest net release, if only in nameDavid Starks-Browning2000-05-161-1/+7
|
* fix dependencies for readme.txtDavid Starks-Browning2000-05-161-1/+1
|
* remove doc/readme exclusion for starksb@ebi.ac.ukDavid Starks-Browning2000-05-161-1/+1
|
* Skip CVS directories when creating tar ball.Andrew Cagney2000-05-162-2/+10
|
* Add code to tweek djunpack as part of release process.Andrew Cagney2000-05-162-1/+30
|
* Mon May 15 18:54:00 2000 Jeff Johnston <jjohnstn@cygnus.com>Jeff Johnston2000-05-152-2/+7
| | | | | * libc/include/ctype.h: Changed tolower and toupper macros to use __extension__ to prevent pedantic warnings.
* Mon May 15 14:26:00 2000 Joel Sherrill <joel@oarcorp.com>Ranjith Kumaran2000-05-152-0/+32
| | | | | * libc/sys/rtems/sys/time.h: Add macros for manipulating timeval structures.
* * include/cygwin/version.h: Bump DLL minor version number to 2.Christopher Faylor2000-05-152-5/+5
|
* * shared.h: Bump PROC_MAGIC.Christopher Faylor2000-05-153-2/+9
| | | | * include/cygwin/version.h: Bump API minor to accomodate two recent exports.
* 2000-05-13 Mumit Khan <khan@xraylith.wisc.edu>Mumit Khan2000-05-142-1/+5
| | | | * include/cygwin/socket.h (AF_INET6): Use same value as winsock2.
* 2000-05-13 Alexandre Oliva <oliva@lsd.ic.unicamp.br>H.J. Lu2000-05-132-0/+10
| | | | | * ltmain.sh: Preserve in relink_command any environment variables that may affect the linker behavior.
* Fix cpu_flags for sys{enter,exit} fx{save,restore}Alan Modra2000-05-132-5/+9
|
* `.arch cpu_type' pseudo for x86.Alan Modra2000-05-132-774/+805
|