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
2011-04-18 * localtime.cc (tzload): Don't change global timezone informationCorinna Vinschen
when called from gmtime or gmtime_r. (tzparse): Ditto.
2010-10-30* localtime.cc (is_upper): Rename to isupper and include ctype.h to pull inChristopher Faylor
standard macro. (lcl_is_set): Define as an enum. (tzsetwall): Assign lcl_is_set to correct enum values. (tzset): Ditto. Copy as much of TZ as will fit to TZ buffer.
2009-06-14 * localtime.cc (time2): Take another stab at fixing a compiler warning.Corinna Vinschen
2009-06-14* localtime.cc (time2): Take a stab at fixing a compiler warning.Christopher Faylor
2009-06-12 * localtime.cc (time2): Change "spring gap" to "spring forward gap"Corinna Vinschen
in comment.
2009-06-12 * localtime.cc (time2): Add workaround for spring gap problem. AddCorinna Vinschen
explaining comment.
2009-04-14 * localtime.cc (tzload): Implement setting __tzrule's offset memberCorinna Vinschen
using newlib's __gettzinfo () interface also when tzload returns successfully.
2008-09-11* localtime.cc (increment_overflow): Mark as non-inline to prevent compilerChristopher Faylor
from complaining about the very thing we're trying to test. * ntea.cc (read_ea): Reorganize to avoid a new compiler warning/error. * sched.cc (sched_rr_get_interval): Ditto. * select.cc (peek_serial): Ditto. * libc/rexec.cc (ruserpass): Ditto. * posix_ipc.cc (ipc_names): Make static to avoid a compiler warning (and it's the right thing to do anyway).
2008-04-07Remove unneeded header files from source files throughout.Christopher Faylor
2007-12-11 * localtime.cc (tzset): Guard by a muto for thread safety.Corinna Vinschen
2007-12-11 * localtime.cc (tzset): Call tzsetwall only if it hasn't beenCorinna Vinschen
called before.
2007-08-01 * localtime.cc (tzsetwall): Don't set TZ.Corinna Vinschen
2005-11-18 * libc: Add subdirectory.Corinna Vinschen
* Makefile.in (VPATH): Add libc subdir. (DLL_OFILES): Add strptime.o and timelocal.o. * cygwin.din: Export timelocal and timegm. * localtime.cc: Define STD_INSPIRED unconditionally. * include/cygwin/time.h (timelocal): Add declaration. (timegm): Ditto. * include/cygwin/version.h: Bump API minor version. * libc/strptime.cc: New file. * libc/timelocal.cc: New file. * libc/timelocal.h: New file.
2005-07-07Eliminate (void) cast on standalone function calls throughout.Christopher Faylor
2005-02-24 * localtime.cc: Implement setting __tzrule's offset member usingCorinna Vinschen
newlib's __gettzinfo () interface. (__tzrule): Remove. (timezone): Define as long according to POSIX.
2005-02-19 * localtime.cc: Temporary implementation of setting __tzrule's offsetCorinna Vinschen
member to be used by strftime. (__tzrule): New global variable. (tzparse): Set __tzrule's offset member appropriately.
2004-02-08* localtime.cc (localtime_r): Call tzset.Christopher Faylor
* Makefile.in: Make version.h/cygwin.din version check a warning since it is not foolproof. * cygheap.h (CYGHEAPSIZE): Bump size down. * cygtls.h (_threadinfo::stacklock): New element. (_threadinfo::pop): Make regparm. (_threadinfo::lock): New function. (_threadinfo::unlock): New function. * cygtls.cc (_threadinfo::push): Wait for a lock on the stack before performing the operation. (_threadinfo::pop): Move to another file. * cygwin.din: More SIGFE changes. * exceptions.cc (try_to_debug): Always display messages on console. (handle_exceptions): Unwind stack only when actually about to call sig_send. (setup_handler): Lock stack prior to performing any operations. * gendef (_sigfe): Ditto. (_sigbe): Ditto. (_threadinfo::pop): Ditto. Move here. * gen_tlsoffsets: Generate positive offsets. * tlsoffsets.h: Regenerate.
2003-12-08Change use of BOOL, TRUE, FALSE to bool, true, false, as appropriate,Christopher Faylor
throughout. * tty.cc (tty::common_init): Remove call to SetKernelObjectSecurity and edit some comments. * cygheap.h (init_cygheap::ctty): Add new element. * devices.in (device::parse): Remove special handling for /dev/tty. * devices.cc: Regenerate. * dtable.cc (build_fh_pc): Don't reset /dev/tty device. Let the device opener do that. * fhandler_termios.cc (tty_min::set_ctty): Redefine to _pinfo class. * fhandler_tty.cc (fhandler_tty_common::set_close_on_exec): Avoid setting noninherit flag for ctty. * tty.h: Move BOOLs to bools. (tty_min::set_ctty): Redeclare to _pinfo class. * pinfo.cc (_pinfo::set_ctty): Define new function based on tty_min::set_ctty. Change first argument from tty number to tty_min class. * pinfo.h (_pinfo::set_ctty): Declare. * fhandler_console.cc (fhandler_console::get_tty_stuff): Reflect move of set_ctty to _pinfo class. * fhandler_tty.cc (fhandler_tty_slave::open): Treat FH_TTY specially. Use saved cygheap value if it exists. Otherwise convert to real device and save on first time open. (fhandler_tty_common::dup): Potentially set controlling tty if duping a slave tty. * syscalls.cc (setsid): Close controlling tty in cygheap. * tty.cc: Change some BOOLs to bools.
2003-12-01 * include/tzfile.h: Remove duplicate definition of TM_SUNDAY.Corinna Vinschen
* localtime.cc: Point TZDIR to the /usr/share/zoneinfo directory used by the tzcode package.
2002-12-202002-12-19 Pierre Humblet <pierre.humblet@ieee.org>Pierre Humblet
* localtime.cc (tzsetwall): Set lcl_is_set and lcl_TZname in the Cygwin specific part of the routine.
2002-09-23More GNUify non-GNU formatted functions calls throughout.Christopher Faylor
2002-05-07 * localtime.cc (tzsetwall): Use wildabbr if generated timezone nameCorinna Vinschen
length < 3.
2001-12-19Fix up comments.Christopher Faylor
2001-10-13* autoload.cc (wsock_init): Reorganize slightly to accomodate a new compiler.Christopher Faylor
2001-09-06Move appropriate variables to NO_COPY segment, throughout.Christopher Faylor
2001-09-06Remove initialization of static or global values to zero, throughout. ThisChristopher Faylor
just needlessly grows the size of the DLL. * tty.cc (tty::alive): Make inuse handle non-inheriting on open, just for thread safety.
2001-07-26 * localtime.c: Changed whole file to become C++ clean. Rename toCorinna Vinschen
localtime.cc. * localtime.cc (tzload): Preserve errno.