summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/fhandler_tty.cc
Commit message (Expand)AuthorAgeFilesLines
* Eliminate most unneeded this-> pointers throughout.Christopher Faylor2003-02-041-5/+5
* Split ChangeLog, create ChangeLog-2002.Corinna Vinschen2003-01-101-1/+1
* * fhandler.h (fhandler_tty_master::set_winsize): Declare new function.Christopher Faylor2002-12-271-4/+13
* * fhandler_tty.cc (fhandler_tty_master::init): Set initial size of tty to thatChristopher Faylor2002-12-271-2/+4
* * fhandler.h (fhandler_termios::line_edit): Replace third argument withChristopher Faylor2002-12-271-3/+6
* * fhandler.h (line_edit_status): Reorganize so that tests for error conditionChristopher Faylor2002-12-211-5/+6
* * fhandler.h (line_edit_status): Add a new element.Christopher Faylor2002-12-201-3/+10
* * fhandler_termios.cc (fhandler_termios::line_edit): Return line_edit_error andChristopher Faylor2002-12-171-30/+27
* Throughout, change fhandler_*::read and fhandler_*::raw_read to void functionsChristopher Faylor2002-12-141-10/+14
* * fhandler.h (fhandler_termios::line_edit): Change return from an int to anChristopher Faylor2002-12-051-3/+7
* * fhandler_tty.cc (fhandler_pty_master::accept_input): Move read_retvalChristopher Faylor2002-11-301-4/+9
* * fhandler_tty.cc (fhandler_pty_master::accept_input): Just use a normal SleepChristopher Faylor2002-11-261-2/+2
* * miscfuncs.cc (low_priority_sleep): New function. Use throughout where codeChristopher Faylor2002-11-131-2/+2
* * fhandler_tty.cc (fhandler_tty_slave::ioctl): Do nothing if the new windowChristopher Faylor2002-11-041-9/+24
* Rename _kill() to kill() throughout. Rename _raise() to raise() throughout.Christopher Faylor2002-10-201-6/+6
* * fhandler_tty.cc (fhandler_tty_slave::read): Attempt #527 to properlyChristopher Faylor2002-10-161-15/+37
* * cygthread.cc (cygthread::stub): Don't create an event for "cygself" threads.Christopher Faylor2002-10-091-14/+13
* 2002-09-22 Conrad Scott <conrad.scott@dsl.pipex.com>Conrad Scott2002-09-221-23/+8
* * fhandler.cc (fhandler_base::dup): Don't set handle on failure. Caller hasChristopher Faylor2002-09-221-1/+1
* * fhandler_tty.cc (fhandler_tty_slave::open): Don't protect input/outputChristopher Faylor2002-09-081-2/+0
* * fhandler_tty.cc (fhandler_tty_slave::fhandler_tty_slave): Set "don't needChristopher Faylor2002-08-311-0/+1
* (inspired by a patch from Egor Duda)Christopher Faylor2002-08-311-8/+8
* * cygthread.cc (cygthread::stub): Accept flag to pass info structure to threadChristopher Faylor2002-08-061-3/+3
* * cygthread.cc (cygthread::exit_thread): Define new method.Christopher Faylor2002-08-021-13/+11
* * Makefile.in (DLL_OFILES): Add cygthread.o.Christopher Faylor2002-08-011-32/+10
* * debug.h (handle_list): Move here from debug.cc. Add "inherit" flagChristopher Faylor2002-07-131-2/+2
* * fhandler_clipboard.c (fhandler_dev_clipboard::open): Force text mode.Christopher Faylor2002-07-011-2/+2
* * dtable.cc (handle_to_fn): Attempt to handle "raw" accesses to remote shares.Christopher Faylor2002-06-051-1/+1
* Remove fcntl.h includes throughout.Christopher Faylor2002-06-051-3/+2
* * autoload.cc (LoadFuncEx): Define via new LoadFuncEx2 macro.Christopher Faylor2002-05-281-23/+23
* Remove unneeded sync.h, where appropriate, throughout. Remove unneeded heap.h,Christopher Faylor2002-05-251-1/+0
* * path.cc (path_conv::check): Always set executable bit for executableChristopher Faylor2002-05-181-1/+3
* 2002-02-28 Robert Collins <rbtcollins@hotmail.com>Robert Collins2002-02-281-30/+81
* * sync.h (new_muto): Just accept an argument which denotes the name of theChristopher Faylor2002-02-221-2/+2
* * fhandler.h (fhandler_serial::fhandler_serial): Change to only accept unitChristopher Faylor2001-10-291-2/+2
* Ensure that all fhandler_*::read definitions are __stdcall throughout.Christopher Faylor2001-10-241-2/+2
* Remove 'cb' parameter and modify fhandler_* constructors throughout.Christopher Faylor2001-10-221-15/+1
* * fhandler_dsp.cc (fhandler_dsp::ioctl): Return 0 for successfulChristopher Faylor2001-10-131-8/+8
* * fhandler.cc (fhandler_base::fork_fixup): Protect dup'ed handle and record itChristopher Faylor2001-10-061-8/+2
* * dcrt0.cc (dll_crt0_1): Don't close hexec_proc if it is NULL.Christopher Faylor2001-10-041-2/+2
* Add "path.h" include throughout, where needed. Use new path_conv methods andChristopher Faylor2001-10-011-5/+1
* * fhandler.h (fhandler_pipe::hit_eof): New method.Christopher Faylor2001-09-241-1/+1
* * fhandler.cc (fhandler_base::set_inheritance): Just use DUPLICATE_CLOSE_SOURCEChristopher Faylor2001-09-201-4/+4
* * cygheap.h (init_cygheap): Move heap pointers here.Christopher Faylor2001-09-071-5/+5
* Remove initialization of static or global values to zero, throughout. ThisChristopher Faylor2001-09-061-1/+1
* * tty.cc (tty::create_inuse): Eliminate unneeded argument.Christopher Faylor2001-09-011-3/+3
* * debug.cc (mark_closed): Rename from debug_mark_closed and make static.Christopher Faylor2001-09-011-2/+2
* * fhandler.cc (fhandler_base::is_nonblocking): New method.Corinna Vinschen2001-08-151-15/+4
* * fhandler.cc (fhandler_base::fcntl): Use new O_NONBLOCK_MASK define.Corinna Vinschen2001-08-141-10/+14
* Throughout, reorganize header file inclusion to put security.h prior toChristopher Faylor2001-07-261-0/+1