newlib/winsup/cygwin
Christopher Faylor 44d2fc0a45 * autoload.cc: Call _api_fatal in asm.
* child_info.h: Redefine CURR_CHILD_INFO_MAGIC.
(child_info_fork::abort): Rename from handle_failure.  Change arguments.
* cygtls.h (_local_storage::ttybuf): New field.
* dcrt0.cc (vapi_fatal): Split api_fatal.  Add "in forked process" to message
when appropriate.
(api_fatal): Use vapi_fatal.
* devices.h: Make multiple inclusion safe.
(fh_devices): Add FH_CONS* stuff.  Reorder slightly.
(device): Eliminate anonymous union.  Add more ways to access minor/major.
(device::setunit): Accommodate no-longer-anonymous union.
(device::is_fs): Ditto.
(device::is_fs_special): Ditto.
(device::major): New function.
(device::minor): Ditto.
(device::is_device): New function.
(device::not_device): Ditto.
(device::operator int): New operator.
(device::operator fh_devices): Ditto.
(device::operator bool): Ditto.
(device::operator DWORD): Ditto.
(device::operator =): Ditto.
(isproc_dev): New function.
(isprocsys_dev): Ditto.
(iscons_dev): Ditto.
(istty_slave_dev): Ditto.
* devices.in: Add new "/dev/cons*" strings.  Accommodate no-longer-anonymous
union throughout.
(BRACK): Use more precise method for initialization.
* devices.cc: Regenerate.
* dtable.cc (dtable::stdio_init): Use get_cttyp instead of get_tty.
(dtable::find_archetype): Use new DWORD operator in device to test archetypes.
(dtable::init_std_file_from_handle): Use different method to initialize 'dev'.
Adapt to different ctty handling and accommodate /dev/cons*.
(fh_alloc): Accommodate no-longer-anonymous union.  Adapt to new /dev/cons*.
(build_fh_pc): Make debugging output more useful.
* exceptions.cc (ctrl_c_handler): Use get_cttyp instead of get_tty.
* external.cc (fillout_pinfo): Accommodate new cons* stuff.
* fhandler.cc (fhandler_base::read): Eliminate is_slow() test.
* fhandler.h (fhandler_base::*): Adapt to changes in device.h.
(fhandler_*::is_slow): Delete.
( fhandler_proc::get_proc_fhandler): Return fh_devices type.
* fhandler_console.cc (open_shared_console): New function.
(console_unit): New class.
(console_unit::console_unit): New constructor.
(enum_windows): New function.  Declare as friend to console_unit.
(fhandler_console::set_unit): New function.
(fhandler_console::get_tty_stuff): Call set_unit to set the unit number and
determine if initialization is needed.  Eliminate flags parameter.
(tty_list::get_cttyp): Rename (sorta) from get_tty.  Return pointer to correct
tty_min.
(fhandler_console::open): Adapt to elimination of argument to get_tty_stuff.
(fhandler_console::output_tcsetattr): Properly detect error condition.
(fhandler_console::fixup_after_fork_exec): Adapt to get_tty_stuff() setting tc
automatically.
* fhandler_proc.cc: Use FH_BAD rather than 0 throughout where using fh_devices
enum.
(fhandler_proc::get_proc_fhandler): Return fh_devices.  Adapt to devices.h
changes.
* fhandler_process.cc: Adapt to devices.h changes.  Use FH_BAD rather than 0
throughout where using fh_devices enum.
* fhandler_procnet.cc: Ditto.
* fhandler_procsys.cc: Ditto.
* fhandler_procsysvipc.cc: Ditto.
* fhandler_tape.cc (fhandler_dev_tape::fhandler_dev_tape): Ditto.
* fhandler_termios.cc (handler_termios::bg_check): Use tc->ttyname() rather
than assuming that we can construct a tty.
* fhandler_tty.cc (fhandler_tty_master::fhandler_tty_master): Just return
get_minor() of dev.
(fhandler_pty_master::process_slave_output): Add slightly more debugging info.
(fhandler_tty_slave::fhandler_tty_slave): Change name from ntty to unit.
(fhandler_pty_master::open): Ditto.
(fhandler_tty_slave::ioctl): Adapt to change which causes ctty to represent a
complete device.
(fhandler_tty_master::init_console): Add debugging for failure path.
(fhandler_pty_master::setup): Use get_unit() to retrieve unit number rather
than relying on raw ntty.
(fhandler_pty_master::setup): Ditto.
* fhandler_virtual.h (virt_tab_t): Redefine fhandler as fh_devices.
* fork.cc: Remove obsolete vfork stuff.
(frok::child): Don't assume that a ctty == 0 is valid.
* mount.cc (mount_info::conv_to_win32_path): Adapt to device struct changes.
(mount_info::conv_to_win32_path): Ditto.
* path.cc (path_conv::check): Retrive major/minor numbers via a method rather
than accessing them directly from device.  Rely on dev operators to
set/retrieve device information as required by device struct change.
* path.h (isproc_dev): Move to devices.h.
(isprocsys_dev): Ditto.
(isvirtual_dev): Ditto.
(path_conv:{isdevice,isfifo,isspecial,iscygdrive,issocket,get_devn,get_unitn}):
Use device methods to access/manipulate devices.
* pinfo.cc (pinfo::exit): Don't assume that ctty == 0 is valid.  Use iscons_dev
to determine if a device is a console.
(_pinfo::_ctty): Use device::parse to generate tty/cons name.
(_pinfo::set_ctty): Don't assume that ctty == 0 is valid.  Remove redundant
info from debugging.
* shared.cc (offsets): Remove console offset.
* shared_info.h (shared_locations): Ditto.
* syscalls.cc (umask): Use device methods to manipulate device information.
(ctermid): Use device::parse to generate term device name.
* tlsoffsets.h: Regenerate.
* tty.cc (ttyslot): Return minor number of ctty since ctty now represents a
full device.
(tty::create_master): Set ctty to a complete device.
(tty_list::attach): Rework to detect new /dev/cons* stuff.
(tty_list::terminate): Adapt to changes to ctty.
(tty_list::init): Adapt to change to setntty - pass in device major number.
(tty::exists): Use get_unit() to retrive tty unit number.
(tty::open_mutex): Ditto.
(tty::open_inuse): Ditto.
(tty::create_inuse): Ditto.
(tty::get_event): Ditto.
(tty_min::ttyname): Define new function.
* tty.h (tty_min::ntty): Redefine as fh_devices.
(tty::exists): Use get_unit() to retrive tty unit number.
(tty::open_mutex): Ditto.
(tty::open_inuse): Ditto.
(tty::create_inuse): Ditto.
(tty::get_event): Ditto.
(tty_min::ttyname): Declare new function.
(tty::getntty): Declare as const.
(tty_list::operator []): Assure that only minor part of argument is used.
* dll_init.cc (dll_list::alloc): Detect mismatch of data segments early issuing
an explicit error message if necessary.
* heap.cc (heap_init): Adapt to changes from fork->handle_failure to
fork->abort.
* pinfo.h (EXITCODE_FORK_FAILED): New enum.  (from Ryan Johnson)
* sigproc.cc (child_info_fork::abort): Rename from handle_failure.  Change
arguments to allow passing in a printf-like message.
* winsup.h (api_fatal): Delete macro definition.
(api_fatal): Redefine from __api_fatal.
(vapi_fatal): Declare new function.
* include/sys/strace.h (strace_vprintf): Define new macro.
* ntdll.h (_SYSTEM_INFORMATION_CLASS): Add SystemHandleInformation.
2011-05-28 18:17:09 +00:00
..
config/i386 * config/i386/profile.h: Sync with Mingw. 2011-02-14 09:42:19 +00:00
include * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
lib * Throughout fix copyright dates. 2011-02-15 15:56:03 +00:00
libc Based on newlib patch to strptime by Peter Rosin <peda@lysator.liu.se>: 2011-05-12 13:44:54 +00:00
regex * regex/regcomp.c (xwcrtomb): Fix one explicable and one inexcplicable C 2010-02-14 21:28:44 +00:00
ChangeLog * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
ChangeLog-1995
ChangeLog-1996
ChangeLog-1997
ChangeLog-1998
ChangeLog-1999
ChangeLog-2000
ChangeLog-2001
ChangeLog-2002 * ChangeLog-2002: Fix typo. 2009-09-22 02:49:15 +00:00
ChangeLog-2003
ChangeLog-2004
ChangeLog-2005
ChangeLog-2006
ChangeLog-2007
ChangeLog-2008 * ChangeLog-2002: Fix typo. 2009-09-22 02:49:15 +00:00
ChangeLog-2009 * dcrt0.cc: Bump copyright. 2010-01-01 19:28:15 +00:00
ChangeLog-2010 * ChangeLog-2010: Create from ChangeLog. 2011-01-03 01:53:19 +00:00
Makefile.in * Makefile.in: Allow CFLAGS to be overridden from the environment. 2011-05-02 19:14:39 +00:00
ROADMAP
acconfig.h ChangeLog: 2009-01-21 17:14:39 +00:00
aclocal.m4
advapi32.cc * advapi32.cc: Add comment. 2011-04-29 10:38:12 +00:00
analyze_sigfe
assert.cc Throughout, use user32 UNICODE functions rather than ANSI functions. 2011-05-01 14:35:12 +00:00
autoload.cc * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
automode.c * winlean.h: New file. 2010-08-30 01:57:37 +00:00
binmode.c * winlean.h: New file. 2010-08-30 01:57:37 +00:00
child_info.h * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
config.h.in ChangeLog: 2009-01-21 17:14:39 +00:00
configure * configure.in: Remove AC_ALLOCA test and test for __builtin_memset. 2011-02-07 16:22:02 +00:00
configure.in * Throughout fix copyright dates. 2011-02-15 15:56:03 +00:00
cpuid.h
crt0.c * crt0.c (mainCRTStartup): Move call to _feinitialise from here... 2011-03-17 08:40:25 +00:00
ctype.cc * ctype.cc (__set_ctype): Copy exact part of the current active 2009-04-21 20:10:55 +00:00
cxx.cc * cxx.cc (default_cygwin_cxx_malloc): Enhance commenting. 2009-08-13 07:35:50 +00:00
cygerrno.h * cygerrno.h (geterrno_from_nt_status): Declare. 2011-04-28 12:13:41 +00:00
cygheap.cc * cygheap.cc (cygheap::close_ctty): Close ctty via close_with_arch(). 2011-05-05 22:30:53 +00:00
cygheap.h * Fix various copyrights. 2011-04-18 11:26:37 +00:00
cygheap_malloc.h * cygheap_malloc.h: New file. 2009-08-01 19:52:46 +00:00
cyglsa.h Change length for domain buffers from INTERNET_MAX_HOST_NAME_LENGTH to 2008-07-11 10:00:36 +00:00
cygmagic
cygmalloc.h
cygprops.h * cygprops.h: New file. 2009-10-31 13:24:06 +00:00
cygserver.h * Makefile.in (DLL_OFILES): Add setlsapwd.o. 2008-11-26 10:18:10 +00:00
cygserver_ipc.h
cygserver_msg.h * Makefile.in (DLL_OFILES): Add setlsapwd.o. 2008-11-26 10:18:10 +00:00
cygserver_sem.h * Makefile.in (DLL_OFILES): Add setlsapwd.o. 2008-11-26 10:18:10 +00:00
cygserver_setpwd.h * cygserver_setpwd.h (setlsapwd): Add username parameter to declaration. 2011-04-04 09:04:00 +00:00
cygserver_shm.h * Makefile.in (DLL_OFILES): Add setlsapwd.o. 2008-11-26 10:18:10 +00:00
cygthread.cc * ntdll.h (IsEventSignalled): New inline function. 2011-04-29 08:27:11 +00:00
cygthread.h * wincap.h (wincaps::has_buggy_thread_startup): Declare. 2010-09-19 20:18:36 +00:00
cygtls.cc * cygtls.cc (_cygtls::init_thread): Drop setting locals.process_logmask. 2011-04-21 08:10:28 +00:00
cygtls.h * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
cygwin-cxx.h winsup/ChangeLog: 2009-07-07 20:12:44 +00:00
cygwin-shilka Perform whitespace cleanup throughout. 2008-02-15 17:53:11 +00:00
cygwin.din * cygwin.din (__fpurge): Export. 2011-05-19 07:23:29 +00:00
cygwin.sc * cygwin.sc: Raise default cygheap size to 2 Megs. 2011-03-18 18:16:37 +00:00
cygwin_version.h
cygxdr.cc Add XDR support. 2010-03-03 15:05:19 +00:00
cygxdr.h Add XDR support. 2010-03-03 15:05:19 +00:00
dcrt0.cc * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
debug.cc * cygheap.cc (cygheap::close_ctty): Close ctty via close_with_arch(). 2011-05-05 22:30:53 +00:00
debug.h * fhandler_tty.cc (fhandler_tty_slave::init): Add additional checks to 2010-09-20 20:25:50 +00:00
devices.cc * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
devices.h * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
devices.in * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
dir.cc Align seekdir and telldir API to POSIX definition. 2010-07-05 16:59:56 +00:00
dlfcn.cc * autoload.cc (EnumProcessModules): Remove. 2011-05-11 13:25:27 +00:00
dll_init.cc * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
dll_init.h * cygheap.cc (init_cygheap::close_ctty): Avoid closing console-cttys since they 2011-04-21 00:53:55 +00:00
dll_init.sgml
dllfixdbg Perform whitespace cleanup throughout. 2008-02-15 17:53:11 +00:00
dlmalloc.c
dlmalloc.h
dtable.cc * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
dtable.h * cygwin.din (dup3): Export. 2010-01-14 18:46:02 +00:00
dtable.sgml
environ.cc * environ.cc (set_chunksize): Remove. 2011-05-10 10:17:30 +00:00
environ.h Add miscfuncs.h to files as needed throughout. 2008-04-07 16:15:45 +00:00
errno.cc perror: fix POSIX compliance and work with recent newlib change 2011-05-25 18:47:32 +00:00
exception.h * exception.h: Remove DEBUG_EXCEPTION left over debugging ifdef. 2011-02-09 15:40:37 +00:00
exceptions.cc * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
exec.cc * exec.cc: Include pinfo.h. 2011-01-20 11:09:21 +00:00
external.cc * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
external.sgml
fcntl.cc * fcntl.cc (fcntl64): Call pthread_testcancel. 2011-04-30 16:34:48 +00:00
fenv.cc Drop NT4 support. 2011-04-04 12:23:36 +00:00
fhandler.cc * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
fhandler.h * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
fhandler_clipboard.cc Throughout, use user32 UNICODE functions rather than ANSI functions. 2011-05-01 14:35:12 +00:00
fhandler_console.cc * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
fhandler_disk_file.cc * fhandler_disk_file.cc (fhandler_disk_file::pread): Correctly return 2011-05-05 13:45:06 +00:00
fhandler_dsp.cc * cygheap.cc (cygheap::close_ctty): Close ctty via close_with_arch(). 2011-05-05 22:30:53 +00:00
fhandler_fifo.cc * fhandler.cc (fhandler_base_overlapped::raw_read): Rename from 2011-05-05 17:44:42 +00:00
fhandler_floppy.cc * autoload.cc (UuidCreate): Remove. 2011-03-29 10:42:11 +00:00
fhandler_mailslot.cc * fhandler.cc (fhandler_base_overlapped::raw_read): Rename from 2011-05-05 17:44:42 +00:00
fhandler_mem.cc * cygwin.din (dup3): Export. 2010-01-14 18:46:02 +00:00
fhandler_netdrive.cc Drop NT4 support. 2011-04-04 12:23:36 +00:00
fhandler_nodevice.cc Remove unneeded header files from source files throughout. Update copyrights 2009-01-03 05:12:22 +00:00
fhandler_proc.cc * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
fhandler_process.cc * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
fhandler_procnet.cc * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
fhandler_procsys.cc * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
fhandler_procsysvipc.cc * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
fhandler_random.cc * fhandler_random.cc (fhandler_dev_random::crypt_gen_random): 2011-04-01 08:41:26 +00:00
fhandler_raw.cc Remove unneeded header files from source files throughout. Update copyrights 2009-01-03 05:12:22 +00:00
fhandler_registry.cc * fhandler_registry.cc (fhandler_registry::exists): Fix regression 2011-05-05 06:45:21 +00:00
fhandler_serial.cc * fhandler.h (class fhandler_base): Remove uninterruptible_io status 2011-05-04 13:06:10 +00:00
fhandler_socket.cc * fhandler_socket.cc (get_inet_addr): Rearrange for better readability. 2011-05-11 08:20:17 +00:00
fhandler_tape.cc * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
fhandler_termios.cc * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
fhandler_tty.cc * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
fhandler_virtual.cc * fhandler_procsys.cc (fhandler_procsys::opendir): Avoid SEGV if 2011-02-15 14:44:11 +00:00
fhandler_virtual.h * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
fhandler_windows.cc * fhandler_windows.cc (fhandler_windows::read): Use 2011-05-01 17:42:41 +00:00
fhandler_zero.cc * sigproc.h (wait_for_sigthread): Eliminate parameter. 2009-07-24 20:54:33 +00:00
flock.cc * fhandler_windows.cc (fhandler_windows::read): Use 2011-05-01 17:42:41 +00:00
fork.cc * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
gcrt0.c
gendef * exceptions.cc (_cygtls::interrupt_now): Revert to checking for "spinning" 2010-08-01 19:10:52 +00:00
gendevices
gentls_offsets * cygheap.cc (cygheap_user::~cygheap_user): Remove unneeded if 0'ed code. 2008-12-13 21:05:31 +00:00
glob.cc Remove unneeded header files from source files throughout. Update copyrights 2009-01-03 05:12:22 +00:00
glob_pattern_p.cc * glob_pattern_p.cc: New file. 2008-12-31 21:33:34 +00:00
globals.cc * globals.cc (__getlogin_username): Remove. 2011-05-16 17:58:21 +00:00
gmon.c * winlean.h: New file. 2010-08-30 01:57:37 +00:00
gmon.h
grp.cc * advapi32.cc (GetTokenInformation): Remove. 2011-04-29 07:34:05 +00:00
heap.cc * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
heap.h
hires.h * cygwin.din (clock_getcpuclockid): Export. 2011-05-17 17:08:10 +00:00
hookapi.cc * Throughout fix copyright dates. 2011-02-15 15:56:03 +00:00
how-autoload-works.txt
how-cygheap-works.txt
how-cygtls-works.txt
how-fhandlers-work.txt
how-signals-work.txt
how-spawn-works.txt * how-spawn-works.txt: Add "out of date" note. 2009-07-12 21:26:40 +00:00
how-startup-shutdown-works.txt * how-startup-shutdown-works.txt: Add new document. 2010-02-02 01:54:55 +00:00
how-to-debug-cygwin.txt
how-vfork-works.txt * how-spawn-works.txt: Add "out of date" note. 2009-07-12 21:26:40 +00:00
init.cc * init.cc (dll_entry): Reinstantiate wow64_test_stack_marker and 2011-05-25 11:33:29 +00:00
ioctl.cc Remove unneeded header files from source files throughout. Update copyrights 2009-01-03 05:12:22 +00:00
ipc.cc Remove all traces of __CYGWIN_USE_BIG_TYPES__. 2010-02-26 09:36:21 +00:00
kernel32.cc Drop NT4 support. 2011-04-04 12:23:36 +00:00
lc_era.h * lc_era.h (lc_era_t): Fix apparent glibc bug in ja_JP era definition. 2010-02-25 16:55:02 +00:00
lc_msg.h * lc_msg.h: Regenerate. 2011-05-10 16:43:34 +00:00
libstdcxx_wrapper.cc * fhandler.h (fhandler_cygdrive:DRVSZ): New enum. 2009-08-04 04:20:36 +00:00
localtime.cc * localtime.cc (tzload): Don't change global timezone information 2011-04-18 19:07:18 +00:00
lsearch.cc Remove unneeded header files from source files throughout. 2008-04-07 18:45:59 +00:00
malloc.cc
malloc_wrapper.cc * cygwin.din: Export reallocf. 2009-02-16 20:22:38 +00:00
mcount.c Remove unneeded header files from source files throughout. Update copyrights 2009-01-03 05:12:22 +00:00
miscfuncs.cc * miscfuncs.cc (CygwinCreateThread): Fix condition for adding the 2011-05-20 19:00:51 +00:00
miscfuncs.h * cygwin.din (pthread_attr_getguardsize): Export. 2011-05-15 18:49:40 +00:00
mkglobals_h * include/sys/cygwin.h (CW_SETERRNO): Define. 2009-01-09 05:18:02 +00:00
mkimport * mkstatic: Make sure that we are not cd'ed to temporary directory on exit to 2011-02-11 18:00:55 +00:00
mkstatic * mkstatic: Make sure that we are not cd'ed to temporary directory on exit to 2011-02-11 18:00:55 +00:00
mktemp.cc Add mkostemp and mkostemps. 2010-07-19 18:22:40 +00:00
mkvers.sh update copyright 2010-04-10 05:47:54 +00:00
mmap.cc * miscfuncs.cc (thread_wrapper): Remove unused _cygtls record. 2011-05-17 15:37:01 +00:00
mmap_helper.h
mount.cc * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
mount.h * mount.h (MAX_MOUNTS): Raise to 64. 2011-05-26 19:30:00 +00:00
msg.cc ChangeLog: 2009-01-21 17:14:39 +00:00
mtinfo.h * fhandler_tape.cc (mtinfo::initialize): Remove synchronization stuff. 2008-07-15 11:42:45 +00:00
net.cc * net.cc (fdsock): Drop setting uninterruptible_io to true. 2011-05-01 08:14:40 +00:00
netdb.cc * autoload.cc (LoadDLLprime): Change dllname storage to string16. 2010-08-28 08:51:21 +00:00
nfs.cc * fhandler_disk_file.cc (fhandler_base::fstat_by_nfs_ea): Simplify. 2010-10-02 19:03:44 +00:00
nfs.h * fhandler_disk_file.cc (fhandler_base::fstat_by_nfs_ea): Simplify. 2010-10-02 19:03:44 +00:00
nlsfuncs.cc * exceptions.cc (open_stackdumpfile): Correctly append .stackdump 2010-06-01 14:51:47 +00:00
ntdll.h * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
ntea.cc * dtable.cc (build_fh_name_worker): Remove. Move all functionality 2010-01-12 10:14:59 +00:00
passwd.cc * autoload.cc (UuidCreate): Remove. 2011-03-29 10:42:11 +00:00
path.cc * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
path.h * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
path.sgml * path.sgml (func-cygwin-conv-path): Clarify meaning of size parameter. 2009-12-18 10:11:56 +00:00
perprocess.h
pinfo.cc * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
pinfo.h * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
pipe.cc * fhandler.cc (fhandler_base_overlapped::raw_read): Rename from 2011-05-05 17:44:42 +00:00
poll.cc * cygwin.din (ppoll): Export. 2011-04-18 12:00:05 +00:00
posix.sgml * posix.sgml (std-notes): Add missing <para>. 2011-05-25 06:10:24 +00:00
posix_ipc.cc * fhandler_windows.cc (fhandler_windows::read): Use 2011-05-01 17:42:41 +00:00
profil.c * winlean.h: New file. 2010-08-30 01:57:37 +00:00
profil.h
pseudo-reloc.cc Eliminate trailing whitespace in some files. 2011-05-02 15:28:35 +00:00
pthread.cc * cygwin.din (pthread_spin_destroy): Export. 2011-03-29 10:32:40 +00:00
pwdgrp.h * pwdgrp.h (pwdgrp::refresh): Fix indentation. 2008-12-20 09:35:18 +00:00
random.cc * cygheap.cc (creturn): Reorganize to avoid a new compiler warning/error. 2008-09-11 04:34:24 +00:00
registry.cc * registry.cc (get_registry_hive_path): Change system_printf to 2011-05-07 18:56:39 +00:00
registry.h * registry.cc (reg_key::get_dword): Rename from get_int, use DWORD 2011-04-23 13:15:46 +00:00
resource.cc * autoload.cc (GetProcessMemoryInfo): Remove. 2011-05-11 09:07:20 +00:00
scandir.cc
sched.cc * registry.cc (reg_key::get_dword): Rename from get_int, use DWORD 2011-04-23 13:15:46 +00:00
sec_acl.cc * advapi32.cc: Add comment. 2011-04-29 10:38:12 +00:00
sec_auth.cc * advapi32.cc: Add comment. 2011-04-29 10:38:12 +00:00
sec_helper.cc * advapi32.cc: Add comment. 2011-04-29 10:38:12 +00:00
security.cc * security.cc (check_registry_access): Handle missing 2011-05-10 17:19:37 +00:00
security.h * advapi32.cc: Add comment. 2011-04-29 10:38:12 +00:00
security.sgml * path.sgml: Remove documentation for old path API. Add documentation 2008-03-13 15:18:10 +00:00
select.cc * fhandler.h (class fhandler_base): Remove uninterruptible_io status 2011-05-04 13:06:10 +00:00
select.h * select.cc (cygwin_select): Make degenerate case cancelable. 2011-05-03 15:58:52 +00:00
sem.cc ChangeLog: 2009-01-21 17:14:39 +00:00
setlsapwd.cc * cygserver_setpwd.h (setlsapwd): Add username parameter to declaration. 2011-04-04 09:04:00 +00:00
shared.cc * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
shared_info.h * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
shm.cc Throughout, replace hMainProc with GetCurrentProcess/NtCurrentProcess 2009-12-18 20:32:04 +00:00
signal.cc * signal.cc (_pinfo::kill): Return success on kill(0) only if pid exists or is 2011-05-05 00:31:22 +00:00
sigproc.cc * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
sigproc.h * cygthread.cc (cygthread::create): Fix incorrect use of name rather than 2010-09-01 18:24:11 +00:00
smallprint.cc * smallprint.cc (hex_str): New const string. 2009-10-30 09:02:30 +00:00
sortdin
spawn.cc * spawn.cc (spawn_guts): Only set PID_NOTCYGWIN in _P_OVERLAY mode. 2011-02-15 18:11:50 +00:00
speclib * mkstatic: Make sure that we are not cd'ed to temporary directory on exit to 2011-02-11 18:00:55 +00:00
spinlock.h * shared_info.h (user_info): Add dll_crt0_1 as a friend. 2010-03-15 21:29:15 +00:00
stackdump.sgml
strace.cc * strace.cc (strace::vprntf): Avoid closing unopened handle. 2011-05-02 17:05:10 +00:00
strfuncs.cc Eliminate trailing whitespace in some files. 2011-05-02 15:28:35 +00:00
string.h * exec.cc (strccpy): Move function from here... 2011-01-19 09:41:54 +00:00
strsep.cc
strsig.cc * cygwin.din (psiginfo): Export. 2011-05-04 22:12:15 +00:00
sync.cc * cygheap.cc (init_cygheap::close_ctty): Avoid closing console-cttys since they 2011-04-21 00:53:55 +00:00
sync.h * spinlock.h: New file. 2010-03-13 19:34:35 +00:00
syscalls.cc * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
sysconf.cc * cygwin.din (clock_getcpuclockid): Export. 2011-05-17 17:08:10 +00:00
syslog.cc * fhandler_socket.cc (get_inet_addr): Rearrange for better readability. 2011-05-11 08:20:17 +00:00
termios.cc * fcntl.cc (fcntl64): Call pthread_testcancel. 2011-04-30 16:34:48 +00:00
textmode.c * winlean.h: New file. 2010-08-30 01:57:37 +00:00
textreadmode.c * winlean.h: New file. 2010-08-30 01:57:37 +00:00
thread.cc * child_info.h (CURR_CHILD_INFO_MAGIC): Update. 2011-05-20 07:23:11 +00:00
thread.h * cygwin.din (pthread_attr_getguardsize): Export. 2011-05-15 18:49:40 +00:00
timer.cc * cygwin.din (clock_getcpuclockid): Export. 2011-05-17 17:08:10 +00:00
times.cc * cygwin.din (clock_getcpuclockid): Export. 2011-05-17 17:08:10 +00:00
tls_pbuf.cc * init.cc (search_for): Put this in shared section or suffer subtle problems 2010-12-12 05:48:29 +00:00
tls_pbuf.h * winsup.h (NT_MAX_PATH): Revert ill-advised change to 32767. 2008-03-12 12:41:50 +00:00
tlsoffsets.h * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
tmpbuf.h * tmpbuf.h: New file. 2010-06-21 19:55:12 +00:00
tty.cc * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
tty.h * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
tz_posixrules.h
uinfo.cc * globals.cc (__getlogin_username): Remove. 2011-05-16 17:58:21 +00:00
uname.cc Remove unneeded header files from source files throughout. 2008-04-07 18:45:59 +00:00
wait.cc * exceptions.cc (sig_handle_tty_stop): Set stopsig to SIGCONT when continuing. 2009-07-18 20:25:07 +00:00
wchar.h Replace regex files with multibyte-aware version from FreeBSD. 2010-02-04 12:35:49 +00:00
winbase.h * winbase.h (ilockexch): Avoid making 'ret' volatile. 2009-07-07 21:41:43 +00:00
wincap.cc * child_info.h (CURR_CHILD_INFO_MAGIC): Update. 2011-05-20 07:23:11 +00:00
wincap.h * child_info.h (CURR_CHILD_INFO_MAGIC): Update. 2011-05-20 07:23:11 +00:00
window.cc Throughout, use user32 UNICODE functions rather than ANSI functions. 2011-05-01 14:35:12 +00:00
winf.cc * cygheap_malloc.h: New file. 2009-08-01 19:52:46 +00:00
winf.h * exec.cc: Include pinfo.h. 2011-01-20 11:09:21 +00:00
wininfo.h
winlean.h * autoload.cc (GetConsoleWindow): Drop. 2011-04-19 10:15:09 +00:00
winsup.h * autoload.cc: Call _api_fatal in asm. 2011-05-28 18:17:09 +00:00
winver.rc * winver.rc: Fix copyright dates. 2011-03-16 21:10:51 +00:00