summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* * cygwin.dsl: Remove comments.Christopher Faylor2010-04-112-4/+4
|
* * new-features.sgml (ov-new1.7.5): New section.Corinna Vinschen2010-04-112-0/+17
|
* * fhandler.h (class dev_console): Add backspace_keycode member.Corinna Vinschen2010-04-113-2/+16
| | | | | | | | * fhandler_console.cc (fhandler_console::get_tty_stuff): Initialize backspace_keycode with CERASE. (fhandler_console::read): Return dev_state->backspace_keycode if the backspace key is pressed. (fhandler_console::char_command): Implement DECBKM escape sequence.
* * cygwin-api.in.sgml: Update to DocBook SGML 4.5 DTD.Christopher Faylor2010-04-116-9/+17
| | | | | | | * cygwin-ug-net.in.sgml: Ditto. * cygwin-ug.in.sgml: Ditto. * faq-sections.xml: Ditto. * faq.xml: Ditto.
* * fhandler_console.cc (fhandler_console::read): Default to sending CERASEChristopher Faylor2010-04-102-13/+10
| | | | | character if termios VERASE field is zero. (fhandler_console::fixup_after_fork_exec): Avoid a spurious debug message.
* update copyrightChristopher Faylor2010-04-101-1/+1
|
* * mkvers.sh: Use modern date formats to construct the date.Christopher Faylor2010-04-102-27/+8
|
* * nlsfuncs.cc (__set_lc_time_from_win): Actually setCorinna Vinschen2010-04-092-0/+6
| | | | _time_locale->md_order to the D_MD_ORDER value written to the buffer.
* * path.cc (path_conv::set_normalized_path): Use crealloc_abort to avoid aChristopher Faylor2010-04-093-2/+10
| | | | | | memory leak. * path.h (path_conv::operator =): Just use cstrdup to allocate normalized_path, avoiding attempt to free a pointer which is allocated in another pc.
* /:Ralf Wildenhues2010-04-083-16/+18
| | | | | | | | | | | | Merge from gcc: PR bootstrap/43615 PR bootstrap/43328 Revert: 2010-03-31 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> * configure.ac: Do not pass --enable-multilib nor --disable-multilib in baseargs. Accept explicitly passed --enable_multilib. * configure: Regenerate.
* * internal.h (ELF_IS_SECTION_IN_SEGMENT): PT_PHDR program headersAlan Modra2010-04-082-2/+8
| | | | cannot contain any sections.
* * include/cygwin/version.h: Bump DLL minor version number to 4.Corinna Vinschen2010-04-072-1/+5
|
* 2010-04-06 Dave Korn <dave.korn.cygwin@googlemail.com>Jeff Johnston2010-04-063-6/+13
| | | | | | | * libc/stdlib/__atexit.c (__atexit_lock): Initialise as recursive rather than non-recursive lock type. (__register_exitproc): Use recursive locking APIs on it. * libc/stdlib/__call_atexit.c (__call_exitprocs): Likewise.
* * thread.cc (valid_sched_parameters): Declare extern here.Corinna Vinschen2010-04-062-0/+7
| | | | (sched_set_thread_priority): Ditto.
* * include/sched.h: Remove, overruled by newlib file.Corinna Vinschen2010-04-063-80/+5
| | | | * include/sys/sched.h: Ditto.
* * fhandler_fifo.cc (fhandler_fifo::open): Accommodate previous return valueChristopher Faylor2010-04-062-1/+6
| | | | change to setup_overlapped.
* * libc/stdlib/btowc.c (btowc): Reorganize EOF check. Fix incorrectCorinna Vinschen2010-04-062-3/+11
| | | | return value if input byte is ASCII NUL.
* merge from gccJakub Jelinek2010-04-061-1/+3
|
* merge from gccDJ Delorie2010-04-051-1/+0
|
* include/Jakub Jelinek2010-04-052-0/+6
| | | | | | | | | | | | | | | | | | | | | | | * dwarf2.h (DWARF2_Internal_LineInfo): Add li_max_ops_per_insn field. bfd/ * dwarf2.c (struct line_head): Add maximum_ops_per_insn field. (struct line_info): Add op_index field, change end_sequence type to unsigned char. (new_line_sorts_after): For the same address compare op_index. (add_line_info): Add op_index argument, store it into the structure. (decode_line_info): Complain about unknown versions of .debug_line. Initialize maximum_ops_per_insn. Add op_index state register and track it. binutils/ * dwarf.c (struct State_Machine_Registers): Add op_index field, change end_sequence type to unsigned char. (reset_state_machine): Clear op_index. (process_extended_line_op): For DW_LNE_set_address clear op_index. (display_debug_lines_raw): Initialize li_max_ops_per_insn. Track op_index state machine register and print it if li_max_ops_per_insn is != 1. (display_debug_lines_decoded): Likewise.
* * fhandler.h (fhandler_base::has_ongoing_io): Declare virtual method.Christopher Faylor2010-04-025-67/+55
| | | | | | | | | | | | | * select.cc (peek_pipe): Reorganize slightly. Don't attempt to check a handle if it has ongoing I/O. (select_pipe_info::select_pipe_info): Delete definition. (select_pipe_info::~select_pipe_info): Delete definition. (thread_pipe): Get rid of WFMO call. Reorganize loop. (pipe_cleanup): Remove dependence on destructor. (thread_serial): Reorganize loop. * select.h (select_pipe_info): Empty this class since it no longer has any special requirements (for now). * syscalls.cc (readv): Remove an unneeded debug printf.
* * fhandler.h (fhandler_base::setup_overlapped): Delete virtual declaration.Christopher Faylor2010-04-025-29/+75
| | | | | | | | | | | | | | | | | | (fhandler_base::destroy_overlapped): Ditto. (fhandler_base_overlapped): Remove now-unneeded friend. (fhandler_base_overlapped::setup_overlapped): Return int, remove parameter. (fhandler_base_overlapped::get_overlapped): Return reference. (fhandler_base_overlapped::fhandler_base_overlapped): Be more assertive about zeroing everything. (fhandler_base_overlapped::fixup_after_fork): Declare new function. (fhandler_base_overlapped::fixup_after_exec): Ditto. (fhandler_base_overlapped::dup): Ditto. (fhandler_base_overlapped::close): Ditto. * fhandler_fifo.cc (fhandler_fifo::dup): Call fhandler_base_overlapped::dup rather than fhandler_base::dup. * pipe.cc (fhandler_pipe::dup): Ditto. (fhandler_pipe::init): Accommodate change in setup_overlapped arguments for "opened_properly" case.
* * fhandler_fifo.cc (fhandler_fifo::fhandler_fifo): Properly initializeChristopher Faylor2010-04-022-2/+6
| | | | overlapped part of this class.
* * fhandler_tty.cc (fhandler_tty_slave::close): Revert previous change.Corinna Vinschen2010-04-022-3/+6
|
* fix typoChristopher Faylor2010-04-021-1/+1
|
* * select.h (select_pipe_info::add_watch_handle): Delete declaration.Christopher Faylor2010-04-023-11/+8
| | | | | | | * select.cc (select_pipe_info::add_watch_handle): Delete deinition. (fhandler_pipe::select_read): Delete call to add_watch_handle. (fhandler_pipe::select_write): Ditto. (fhandler_pipe::select_except): Ditto.
* * dtable.cc (dtable::init_std_file_from_handle): Avoid adding fh to fdtab untilChristopher Faylor2010-04-023-30/+51
| | | | | | we know that it is good. * fhandler_tty.cc (fhandler_tty_slave::fhandler_tty_slave): Handle error conditions more consistently. Avoid handle leakage on error.
* * fhandler_tty.cc (fhandler_tty_slave::close): Avoid potential crashCorinna Vinschen2010-04-022-2/+8
| | | | if former open call has been unsuccessful.
* * nlsfuncs.cc: Fix indentation.Corinna Vinschen2010-04-012-4/+8
|
* * nlsfuncs.cc (rebase_locale_buf): New helper function to rebaseCorinna Vinschen2010-04-012-0/+35
| | | | | | | function pointers in locale structures. Explain why this is necessary. (__set_lc_time_from_win): Use rebase_locale_buf after realloc. (__set_lc_numeric_from_win): Ditto. (__set_lc_monetary_from_win): Ditto.
* 2010-04-01 Joel Sherrill <joel.sherrill@oarcorp.com>Jeff Johnston2010-04-013-20/+113
| | | | | | | | * libc/include/sched.h: Include prototypes for sched_* methods. * libc/include/sys/sched.h: Update to POSIX 1003.1b-2008. Rework constants to allow sharing between RTEMS and Cygwin.
* * setup-net.sgml: Remove more mentions of rxvt.Charles Wilson2010-04-012-2/+7
|
* * cygwinenv.sgml: Remove/deprecate mention of rxvt.Christopher Faylor2010-03-315-11/+20
| | | | | | * effectively.sgml: Ditto. * faq-using.xml: Ditto. * setup-net.sgml: Ditto.
* * sigproc.cc (wait_sig): Make sure that strace is activated on __SIGSTRACE byChristopher Faylor2010-03-314-2/+13
| | | | | | | calling new strace::activate function. * strace.cc (strace::activate): Rename from strace::strace. * strace.h (strace::activate): Define new function. (strace::strace): Call activate.
* * fhandler.h (fhandler_base_overlapped): Temporarily (?) make select_pipe_infoChristopher Faylor2010-03-313-4/+47
| | | | | | | | a friend until the fhandler_tty intertangling can be worked out. * select.cc (select_pipe_info::add_watch_handle): Don't inspect the overlapped event if we're not waiting for I/O. (fhandler_tty_common::select_*): Change to standard function. Don't do kludgy fhandler_pipe coercion.
* 2010-03-31 Tristan Gingold <gingold@adacore.com>Tristan Gingold2010-03-3123-36/+877
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * dcx.h: New file. * dsc.h: New file. * esdfm.h: New file. * esdfv.h: New file. * internal.h: New file. * lbr.h: New file. * prt.h: New file. * shl.h (struct vms_shl): Add comments. * esrf.h (ESRF__B_NAMLNG): New macro. * esdf.h (ESDF__B_NAMLNG): New macro. * emh.h: Add macros for fields maximum value. * eisd.h (EISD__M_PROTECT): Fix typo in comment. Add macros for offsets, version, section type and match control. Merge vms_eisd_ext into vms_eisd. * eihvn.h (EIHVN__MULTI_PROCESSING_BIT, EIHVN__GALAXY_BIT): Added. * eihs.h: Remove blank line. * eihd.h (struct vms_eihd): Add comments, add image subtype names. * eiha.h (struct vms_eiha): Add inishr and inishr_h fields. * eiaf.h (struct vms_eiaf): Fix base_va size. * egsy.h: Add comments. * egsd.h: Remove blank line. * egps.h: Add flag names. * eeom.h (EEOM__M_WKTFR): Added. * dst.h (DST__K_CXX): Added, and reident languages. (DST__K_SRC_INCRLNUM_B): Added. Indent and order pcline commands. Add record begin/end, enumerations, type specification, value specification, label, discontinue range definitions.
* Fix toplevel configure --enable-multilib handling.Ralf Wildenhues2010-03-313-6/+24
| | | | | | | | | /: PR bootstrap/43328 * configure.ac: Do not pass --enable-multilib nor --disable-multilib in baseargs. Accept explicitly passed --enable_multilib. * configure: Regenerate.
* Add missing fhandler.h patch and ChangeLog comment.Christopher Faylor2010-03-312-4/+7
|
* * fhandler.cc (fhandler_base::dup): Call setup_overlapped unconditionally.Christopher Faylor2010-03-314-47/+103
| | | | | | | | | | | | | | | | | | | | | | | | | | (fhandler_base::fork_fixup): Ditto. (fhandler_base::fixup_after_fork): Ditto. (fhandler_base::fixup_after_exec): Ditto. (fhandler_base_overlapped::setup_overlapped): Move to this class from fhandler_base. (handler_base_overlapped::destroy_overlapped): Ditto. (fhandler_base_overlapped::wait_overlapped): Ditto. Track when we expect pending I/O. (fhandler_base_overlapped::read_overlapped): Move to this class from fhandler_base. Return error if ongoing I/O. (fhandler_base_overlapped::write_overlapped): Ditto. (fhandler_base_overlapped::has_ongoing_io): Semi-reinstate previous function. * fhandler.h (fhandler_base::wait_overlapped): Move to fhandler_base_overlapped class. (fhandler_base::write_overlapped): Ditto. (fhandler_base::get_overlapped): Ditto. (fhandler_base::get_overlapped_buffer): Ditto. (fhandler_base_overlapped): New class. (fhandler_pipe): Inherit from fhandler_base_overlapped. Remove overlapped stuff as a result. (fhandler_fifo): Ditto. * pipe.cc (fhandler_pipe::fhandler_pipe): Initialize fhandler_base_overlapped. (pipe): Put a descriptive name in the fhandler.
* * fhandler_socket.cc (fhandler_socket::wait_for_events): Remove call toCorinna Vinschen2010-03-302-4/+6
| | | | sig_dispatch_pending.
* 2010-03-30 Thomas Wolff <towo@towo.net>Corinna Vinschen2010-03-302-12/+24
| | | | | | | | * fhandler.h (class dev_console): Drop vt100_graphics_mode_active. Add flags vt100_graphics_mode_G0, vt100_graphics_mode_G1 and iso_2022_G1. * fhandler_console.cc: Throughout, tune VT100 graphics mode switching to follow ISO 2022 strictly.
* * syscalls.cc (open): Remove call to sig_dispatch_pending.Corinna Vinschen2010-03-302-1/+4
|
* * net.cc: Remove calls to sig_dispatch_pending throughout.Corinna Vinschen2010-03-303-21/+5
| | | | * libc/rexec.cc: Ditto.
* * mount.cc (fs_info::update): Allow variable FILE_SUPPORTS_SPARSE_FILESCorinna Vinschen2010-03-302-2/+12
| | | | flag in netapp flag test. Add comment.
* * spawn.cc (find_exec): Enable finding paths in backslash notation,Corinna Vinschen2010-03-293-2/+20
| | | | | | | especially for the exec[vl]p functions. * path.cc (symlink_info::check): Disable returning directories with suffix appended here.
* * new-features.sgml (ov-new1.7.3): New section.Corinna Vinschen2010-03-292-0/+22
|
* * include/cygwin/version.h: Bump DLL minor version number to 3.Corinna Vinschen2010-03-292-1/+5
|
* * fhandler.cc (fhandler_base::fstat): Keep st_ctime and st_birthtimeCorinna Vinschen2010-03-292-3/+13
| | | | fixed to 2006-12-01 00:00 UTC.
* * libc/rcmd.c: Enable IPv6.Corinna Vinschen2010-03-292-6/+4
|
* change wordingChristopher Faylor2010-03-281-1/+1
|