summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* * lib/getopt.c (__progname): Don't declare if not compiling for cygwin.Christopher Faylor2001-09-192-2/+6
|
* * Makefile.in: Filter newlib includes from mingw compilation.Christopher Faylor2001-09-192-3/+7
|
* * lib/getopt.c (getopt_long): Avoid compiler warning.Corinna Vinschen2001-09-192-1/+5
|
* * lib/getopt.c: Use __progname==__argv[0] when not compiling for cygwin.Christopher Faylor2001-09-193-10/+18
| | | | * scandir.cc (scandir): Use correct default when compar == NULL.
* * fhandler_socket.cc (fhandler_socket::fhandler_socket): RevertCorinna Vinschen2001-09-192-1/+6
| | | | memory allocation to use cmalloc again.
* 2001-09-19 Earnie Boyd <earnie@SF.net>Earnie Boyd2001-09-193-6/+12
| | | | | | * Makefile.in: Remove the /usr from the install target. (VERSION): Increment. include/_mingw.h: Ditto.
* 2001-09-19 Ben Elliston <bje@redhat.com>Ben Elliston2001-09-192-1/+7
| | | | | | * configure.in (sparc-sun-solaris2*): Don't use /usr/bin/which on Solaris when testing for the /usr/ucb/cc compiler; it has incorrect semantics. Use the shell built-in "type" command instead.
* * cygwin.din (__argv): Export.Christopher Faylor2001-09-194-298/+411
| | | | | | | (__argc): Ditto. (__progname): Ditto. * include/getopt.h (getopt_long): constify arguments. * lib/getopt.c: Import new file from NetBSD.
* merge from gccDJ Delorie2001-09-182-9/+20
|
* * mmap.cc (mmap): Don't reuse anonymous memory in MAP_FIXED case.Corinna Vinschen2001-09-182-1/+5
|
* oops omitted in previous deltaNick Clifton2001-09-181-14/+26
|
* * internal.h (elf_internal_rela): Make r_addend a bfd_vma.Alan Modra2001-09-182-2/+6
|
* * external.h (GET_LINENO_LNNO): Use H_GET_32/16.Alan Modra2001-09-185-88/+119
| | | | | | | | | | (PUT_LINENO_LNNO): Use H_PUT_32/16. * m88k.h (GET_LNSZ_SIZE, GET_LNSZ_LNNO, GET_SCN_NRELOC, GET_SCN_NLINNO): Use H_GET_32. (PUT_LNSZ_LNNO, PUT_LNSZ_SIZE, PUT_SCN_NRELOC, PUT_SCN_NLINNO): Use H_PUT_32. * ti.h: Formatting fixes. Make use of H_GET_* and H_PUT_* throughout. * xcoff.h: White space changes.
* * aout64.h: Formatting fixes.Alan Modra2001-09-183-42/+55
| | | | | | | (N_TXTADDR): Evaluate to a bfd_vma. (N_DATADDR): Avoid negative unsigned warning. * hp300hpux.h: Formatting fixes. (N_DATADDR): As above.
* * objalloc.h (OBJALLOC_ALIGN): Define using offsetof.Alan Modra2001-09-182-6/+9
|
* merge from gccDJ Delorie2001-09-172-0/+53
|
* * libc/include/process.h: Add getpid() declaration.Christopher Faylor2001-09-172-0/+5
|
* * include/io.h: Add access declaration.Christopher Faylor2001-09-172-0/+5
|
* * syscalls.cc (rmdir): Set cwd to some other location if attempting to rmdirChristopher Faylor2001-09-173-2/+42
| | | | current working directory.
* 2001-09-17 Earnie Boyd <earnie@sf.net>Earnie Boyd2001-09-174-5/+16
| | | | | | | | * lib/Makefile.in (inst_includedir): Add FIXME and remove the usr/ portion of the directory from the install. (inst_libdir): Ditto. * Makefile.in (VERSION): Increment. * include/w32api.h: Increment version.
* * Makefile.in: Increment version.Earnie Boyd2001-09-173-21/+46
| | | | * include/_mingw.h: Ditto.
* * dtable.h (not_open): Assure inline.Christopher Faylor2001-09-174-4/+14
| | | | | | * fhandler.h (operator []): Make const. * sync.cc (muto::~muto): Fix typo which stopped muto event handle from ever being closed.
* * path.cc (symlink): Check arguments for validity.Egor Duda2001-09-165-13/+39
| | | | | | | (getcwd): Ditto. * syscalls.cc (ftruncate): Ditto. * times.cc (times): Ditto. * uname.cc (uname): Ditto.
* * net.cc (dup_servent_ptr): Detect old Windows 95 misaligned structure andChristopher Faylor2001-09-162-2/+23
| | | | realign appropriately.
* minor typo fixes.Christopher Faylor2001-09-161-3/+3
|
* * winsup.api/ltp/sbrk01.c (main): Force output at startup toEgor Duda2001-09-155-12/+442
| | | | | | | | | | make sure that stdio file buffer get allocated. * winsup.api/ltp/stat06.c (high_address_setup): On cygwin, area after sbrk(0) may be available, use 0xffff0000 as "high address". * winsup.api/ltp/symlink01.c: Perform all tests. Mark those tests that don't work on cygwin with '-1'. Close open files so that temporary directory can be deleted on exit. * winsup.api/ltp/vfork01.c: New test.
* Fix typo.Eric Christopher2001-09-153-2/+8
|
* * config.sub: Reverted the earlier change, this version is not theThiemo Seufer2001-09-152-9/+6
| | | | master file.
* * Makefile.in: Generate libcygwin.a during the link pass rather than as aChristopher Faylor2001-09-153-9/+15
| | | | | separate dlltool step. * dcrt0.cc (_dll_crt0): pppid_handle could be NULL. Don't close it if so.
* *** empty log message ***Christopher Faylor2001-09-151-1/+4
|
* * dcrt0.cc (dll_crt0_1): Create vfork main storage here so that it can beChristopher Faylor2001-09-157-21/+48
| | | | | | queried in waitsig later. * sigproc.cc (wait_sig): Don't deliver a signal if in a vfork. * fork.cc (vfork): Deliver all signals on parent return from vfork.
* 2001-09-14 Eric Christopher <echristo@redhat.com>Eric Christopher2001-09-145-7/+349
| | | | | | | * mips/configure.in: Add mipsisa32 support. * mips/configure: Regenerate. * mips/idt32.ld: New file. * mips/idt64.ld: New file.
* Hints and tips on debugging cygwinEgor Duda2001-09-141-0/+73
|
* add copyrights.Christopher Faylor2001-09-143-1/+5
|
* more wordsChristopher Faylor2001-09-141-1/+83
|
* * dumper.cc (dumper::dumper): Print error code in case of error.Egor Duda2001-09-142-7/+20
| | | | | | | | (dumper::add_thread): Ditto. (dumper::collect_memory_sections): Ditto. (dumper::dump_memory_region): Ditto. (dumper::collect_process_information): Ditto. (print_section_name): Fix formatting.
* oops - omitted from previous deltaNick Clifton2001-09-141-0/+6
|
* * dcrt0.cc (_dll_crt0()): Don't call wincap.init() here.Corinna Vinschen2001-09-142-3/+4
|
* /bfd/ChangeLogThiemo Seufer2001-09-142-1/+14
| | | | | | | | | | | | | * config.bfd: Change machine triplets from mips*el*-* to mips*el-*. Add support for mips64. /ChangeLog * config.sub: Change machine triplets from mipsel*-* to mips*el-*. Add support for mips64. /gas/ChangeLog * configure.in: Change machine triplets from mips-*-linux-gnu* to mips*-*-linux*.
* *** empty log message ***Christopher Faylor2001-09-141-0/+1
|
* * fork.cc (vfork): Avoid recursive vforks.Christopher Faylor2001-09-142-1/+9
|
* * fhandler.h (fhandler_pipe::is_slow): Return true only if pipes are reliableChristopher Faylor2001-09-143-12/+18
| | | | | (i.e., not Win9x). * wincap.cc: Make statics NO_COPY to avoid fork overhead.
* * grp.cc (read_etc_group): Just reuse group_buf storage for subsequent rereadChristopher Faylor2001-09-143-4/+9
| | | | | | of /etc/group. * passwd.cc (read_etc_passwd): Just reuse passwd_buf storage for subsequent reread of /etc/passwd.
* * cygheap.cc (dup_now): New function.Christopher Faylor2001-09-145-24/+64
| | | | | | | | | | | | (cygheap_setup_for_child): Accept new argument controlling whether to delay copying of cygheap to shared memory region. (cygheap_setup_for_child_cleanup): Accept new arguments controlling whether to copy cygheap at this point. * cygheap.h: Reflect above changes. * fork.cc (fork_parent): Break copying of cygheap into two parts when fork_fixup is required so that the child can see the parent's changes. (vfork): Do stack cleanup prior to forcing a fork error. * spawn.cc (spawn_guts): Ditto.
* * cygheap.cc (ccalloc): Pass correct length to creturn so that cygheap_max isChristopher Faylor2001-09-132-2/+8
| | | | correctly calculated.
* 2001-09-13 Jeff Johnston <jjohnstn@redhat.com>Jeff Johnston2001-09-137-3/+319
| | | | | | | | | | | | * libc/stdlib/Makefile.am: Add support to build strtoll_r.c and strtoull_r.c. * libc/stdlib/Makefile.in: Regenerated. * libc/stdlib/strtoll_r.c: New file. * libc/stdlib/strtoull_r.c: New file. * libc/stdio/local.h: Add prototypes for long long string conversion routines. * libc/stdio/vfscanf.c (__svfscanf_r): Add optional long long support tied to %L integer conversion specifier.
* * common.h (EM_OPENRISC_OLD): Renamed the old EM_OPENRISC entry.Alexandre Oliva2001-09-132-1/+5
|
* Thu Sep 13 08:49:49 2001 Jason Tishler <jason@tishler.net>Jeff Johnston2001-09-132-2/+8
| | | | | * strftime.c (strftime): Fix "%W" implementation to properly handle Mondays too.
* * winsup.api/winsup.exp: Run only selected test if environmentEgor Duda2001-09-133-5/+28
| | | | | | | | variable CYGWIN_TESTSUITE_TESTS is set. Use its value as regular expression to filter test names. * winsup.api/ltp/symlink01.c (creat_path_max): Provide explicit buffer to getcwd to conform to standards and avoid memory leak. (do_chdir): Ditto.
* 2001-09-13 Earnie Boyd <earnie@SF.net>Earnie Boyd2001-09-132-2/+8
| | | | | | * lib/Makefile.in (inst_includedir): Change to always use w32api subdirectory for target == cygwin. (inst_libdir): Ditto.