newlib-cygwin/winsup/cygwin
Christopher Faylor 2d1d1eb1e4 * cygtls.h (_threadinfo::call): Remove regparm declaration to work around
compiler bug.
* autoload.cc (TryEnterCriticalSection): Remove.
* dcrt0.cc (dll_crt0_0): Delete inappropriate setting of _my_tls.stackptr to
NULL since it has really bad consequences.  Make 'si' an automatic variable.
* cygtls.cc (_threadinfo::init_thread): Correct thinko which caused thread list
to be allocated every time.
* cygtls.h (CYGTLS_PADSIZE): Define as const int.
* sync.h: Make multiple inclusion safe.
(muto::next): Eliminate.
(muto::exiting_thread): New variable.
(muto::set_exiting_thread): New function.
(new_muto): Change to use different section for mutos since c++ give
inexplicable warning in some cases otherwise.
(new_muto1): Ditto.
* dcrt0.cc (do_exit): Call muto::set_exiting_thread here.
* sync.cc (muto_start): Eliminate.
(muto::acquire): Always give exiting thread a lock.  Never give thread a lock
if exiting.
(muto::release): Ditto for releasing.
* dtable.cc (dtable::init_lock): Unline function and define here.
* dtable.h (lock_cs): Define as a muto since critical sections seem to work
oddly on Windows Me.
(lock): Accommodate switch to muto.
(unlock): Ditto.
* exceptions.cc (setup_handler): Don't worry about acquiring mutos since that
hasn't mattered for a long time.
(signal_exit): Ditto: muto stuff will be handled automatically on exit now.
* Makefile.in (DLL_IMPORTS): Link advapi32 to ensure proper DLL initialization.
* autoload.cc (RegCloseKey): Arbitrarily choose this function as a "seed" to
pull the advapi32 link library in.  So, comment out the autoloading.
* cygtls.cc (_threadinfo::init_thread): Just clear CYGTLS_PADSIZE.
(_threadinfo::remove): Add debugging.
(_threadinfo::find_tls): Ditto.
* cygtls.h (_threadinfo::padding): Make zero length (for now?).
* dcrt0.cc (dll_crt0_0): Move more initialization here from dll_crt0_1.
(dll_crt0_1): See above.
* dtable.h (dtable::lock): Remove commented out critical section locking.
* dtable.h (dtable::init_lock): Remove commented out critical section locking.
* dtable.h (dtable::unlock): Remove commented out critical section locking.
* exceptions.cc (interruptible): bool'ize.
* init.cc (threadfunc_fe): Revert to storing threadfunc at stack bottom.
(munge_threadfunc): Ditto.  Avoid adding overhead to calibration_thread.
(prime_threads): Don't initialize tls stuff.
(dll_entry): Make minor change to initialization order.
* tlsoffsets.h: Regenerate.
* sigproc.cc (wait_sig): Add sanity check for end of process thread exit.
* select.h: Make minor formatting change.
* Makefile.in: Add still more -fomit-frame-pointer functions.
* dtable.h (dtable::lock): New function.
(dtable::unlock): New function.
(dtable::init_lock): New function.
* cygheap.h (HEAP_TLS): Declare new enum value.
(init_cygheap::threadlist): Declare new array.
(init_cygheap::sthreads): Declare new variable.
(cygheap_fdmanip::~cygheap_fdmanip): Use new dtable lock/unlock functions.
(cygheap_fdnew::cygheap_fdnew): Ditto.
(cygheap_fdget::cygheap_fdget): Ditto.
* dtable.cc (dtable_init): Initialize fdtab critical section.
(dtable::fixup_after_fork): Ditto.
(dtable::fixup_after_exec): Ditto.
(dtable::dup2): Use lock/unlock calls to protect access to fdtab.
(dtable::find_fifo): Ditto.
(dtable::fixup_before_fork): Ditto.
(dtable::fixup_before_exec): Ditto.
(dtable::set_file_pointers_for_exec): Ditto.
(dtable::vfork_child_dup): Ditto.
(dtable::vfork_parent_restore): Ditto.
* syscalls.cc (close_all_files): Ditto.
* sync.h (muto::acquired): Declare new function.
(new_muto1): Declare new macro used to specify name of muto storage.
* sync.cc (muto::acquired): Define new function.
* cygthread.cc (cygthread::stub): Remove signal chain removal call since it is
handled during initialization now.
* cygthread.cc (cygthread::simplestub): Remove signal chain removal call since
it is handled during initialization now.
* cygtls.cc (sentry): New class used for locking.  Use throughout.
(_threadinfo::reset_exception): Don't pop stack.
(_threadinfo::find_tls): Move from exceptions.cc.
(_threadinfo::init_thread): Initialize array of threads rather than linked
list.  Take second argument indicating thread function for this thread.
(_threadinfo::remove): Search thread array rather than linked list.  Use sentry
to lock.  Only unlock if we got the lock.
(_threadinfo::find_tls): Ditto for first two.
(handle_threadlist_exception): Handle exceptions when manipulating the thread
list in case of premature thread termination.
(_threadinfo::init_threadlist_exceptions): Ditto.
* cygtls.h (TLS_STACK_SIZE): Decrease size.
(_threadinfo::padding): Add element to avoid overwriting lower part of stack.
(_threadinfo::remove): Add a "wait" argument to control how long we wait for a
lock before removing.
* exceptions.cc (init_exception_handler): Make global.  Take argument to
control exception handler being set.
(ctrl_c_handler): Wait forever when removing self from signal chain.
(_threadinfo::find_tls): Move to cygtls.cc.
(sig_handle): Reorganize detection for thread-specific signals.
* heap.cc (heap_init): Rework slightly.  Make fatal error more verbose.  Remove
malloc initialization since it can't happen during dll attach.
* init.cc (search_for): Move address to search for on stack here.
(threadfunc_ix): Ditto for stack offset.  Make shared so that stack walk
potentially only has to be done once when cygwin processes are running.
(threadfunc_fe): Use standard tls to store thread function (may change back
later).
(calibration_thread): New function.  Potentially called to find threadfunc_ix.
(munge_threadfunc): Search for "search_for" value on stack.  Output warning
when thread func not found on stack.  Use standard tls to store thread
function.
(prime_threads): New function.  Called to prime thread front end.
(dll_entry): Call dll_crt0_0 here when DLL_PROCESS_ATTACH.  Call prime_threads
here.  Try to remove thread from signal list here.
* sigproc.cc (wait_sig): Initialize threadlist exception stuff here.
* thread.cc (pthread::exit): Pass argument to signal list remove function.
* thread.h: Remove obsolete *ResourceLock defines.
* tlsoffsets.h: Regenerate.
* winsup.h (spf): Define temporary debug macro to be deleted later.
* dcrt0.cc (dll_crt0_0): New function, called during DLL initialization.
Mainly consists of code pulled from dll_crt0_1.
(dll_crt0_1): See above.
(_dll_crt0): Wait for initial calibration thread to complete, if appropriate.
Move some stuff to dll_crt0_0.
(initialize_main_tls): Accommodate argument change to
_thread_info::init_thread.
* fork.cc (fork_child): Ditto.
(sync_with_child): Fix debug message.
* external.cc (cygwin_internal): Remove special considerations for
uninitialized dll since initialization happens during dll attach now.
* dlfcn.cc (dlopen): Remove obsolete *ResourceLock calls.
(dlclose): Ditto.
* cygheap.h (init_cygheap::close_ctty): Declare new function.
* cygheap.cc (init_cygheap::close_ctty): Define new function.
* syscalls.cc (close_all_files): Use close_ctty.
(setsid): Ditto.
* cygthread.cc (cygthread::stub): Remove exception initialization.
* cygthread.cc (cygthread::stub): Remove exception initialization.
(cygthread::simplestub): Ditto.
* thread.cc (pthread::thread_init_wrapper): Ditto.
* cygtls.cc (_last_thread): Make static.
(_threadinfo::call2): Initialize exception handler here.
(_threadinfo::find_tls): Move here.
* exceptions.cc (_threadinfo::find_tls): Move.
* dcrt0.cc (__api_fatal): Add prefix info to message here rather than including
it in every call to function.
* winsup.h (api_fatal): Accommodate above change.
* debug.cc (add_handle): Don't do anything if cygheap not around.
(mark_closed): Ditto.
* dll_init.cc (dll_list::detach): Fix debug output.
* fork.cc (sync_with_child): Ditto.
(vfork): Improve debug output.
* heap.cc (heap_init): Ditto.
* exceptions.cc (try_to_debug): Clarify message when debugger attaches.
2004-01-14 15:45:37 +00:00
..
config/i386 Eliminate use of sigframe and sigthread throughout. 2003-11-28 20:55:59 +00:00
include * cygheap.h (init_cygheap): Play more vfork shell games and move ctty_on_hold 2004-01-03 18:15:03 +00:00
lib * cygwin.din: Make crt0 functions NOSIGFE. 2003-12-31 06:30:48 +00:00
libc * exceptions.cc (set_signal_mask): Redefine to not pass by address. Report 2003-12-23 16:26:31 +00:00
regex * regex/regex.h: Define regoff_t as _off_t. 2003-04-10 19:49:30 +00:00
regexp Remove obsolete include. 2001-12-20 03:03:59 +00:00
CYGWIN_LICENSE
ChangeLog * cygtls.h (_threadinfo::call): Remove regparm declaration to work around 2004-01-14 15:45:37 +00:00
ChangeLog-1995
ChangeLog-1996
ChangeLog-1997
ChangeLog-1998 fix spelling errors 2001-10-28 23:05:49 +00:00
ChangeLog-1999 fix spelling errors 2001-10-28 23:05:49 +00:00
ChangeLog-2000 fix spelling errors 2001-10-28 23:05:49 +00:00
ChangeLog-2001 restore missing entry 2002-01-01 16:49:52 +00:00
ChangeLog-2002 Split ChangeLog, create ChangeLog-2002. 2003-01-10 12:32:49 +00:00
ChangeLog-2003 add missing entry 2004-01-03 19:06:21 +00:00
Makefile.in * cygtls.h (_threadinfo::call): Remove regparm declaration to work around 2004-01-14 15:45:37 +00:00
ROADMAP
acconfig.h * exceptions.cc (set_signal_mask): Redefine to not pass by address. Report 2003-12-23 16:26:31 +00:00
ansi.sgml
assert.cc Cleanup calls to CreateFile throughout. 2002-09-19 15:12:48 +00:00
autoload.cc * cygtls.h (_threadinfo::call): Remove regparm declaration to work around 2004-01-14 15:45:37 +00:00
automode.c
binmode.c
child_info.h * Makefile.in: Add YA method for generating devices.cc. 2003-10-01 12:36:39 +00:00
config.h.in * exceptions.cc (set_signal_mask): Redefine to not pass by address. Report 2003-12-23 16:26:31 +00:00
configure * exceptions.cc (set_signal_mask): Redefine to not pass by address. Report 2003-12-23 16:26:31 +00:00
configure.in * exceptions.cc (set_signal_mask): Redefine to not pass by address. Report 2003-12-23 16:26:31 +00:00
cpuid.h * termios.cc (setspeed): New function. 2003-04-16 03:03:45 +00:00
crt0.c * Makefile.in: Rework to accommodate new speclib arguments. 2003-08-06 01:40:12 +00:00
cxx.cc * cxx.cc (new): Fix formatting. Just return result of ccalloc rather than 2003-09-04 03:01:35 +00:00
cygerrno.h Throughout, remove "include <errno.h>" from files which already include 2003-06-16 03:24:13 +00:00
cygheap.cc * cygtls.h (_threadinfo::call): Remove regparm declaration to work around 2004-01-14 15:45:37 +00:00
cygheap.h * cygtls.h (_threadinfo::call): Remove regparm declaration to work around 2004-01-14 15:45:37 +00:00
cygmagic * child_info.h: Add _PROC_WHOOPS enum value. 2002-08-27 04:10:54 +00:00
cygmalloc.h * cygmalloc.h: Remove MORECORE_CANNOT_TRIM. It's not true. # cygwin.din: 2003-02-22 23:02:15 +00:00
cygserver.h * cygserver.h (client_request::request_code_t): Add 2003-11-19 18:50:23 +00:00
cygserver_ipc.h * cygserver.h (client_request::request_code_t): Add 2003-11-19 18:50:23 +00:00
cygserver_msg.h * cygserver.h (client_request::request_code_t): Add 2003-11-19 18:50:23 +00:00
cygserver_sem.h * cygserver.h (client_request::request_code_t): Add 2003-11-19 18:50:23 +00:00
cygserver_shm.h * cygserver.h (client_request::request_code_t): Add 2003-11-19 18:50:23 +00:00
cygthread.cc * cygtls.h (_threadinfo::call): Remove regparm declaration to work around 2004-01-14 15:45:37 +00:00
cygthread.h * cygtls.h (_threadinfo::call): Remove regparm declaration to work around 2004-01-14 15:45:37 +00:00
cygtls.cc * cygtls.h (_threadinfo::call): Remove regparm declaration to work around 2004-01-14 15:45:37 +00:00
cygtls.h * cygtls.h (_threadinfo::call): Remove regparm declaration to work around 2004-01-14 15:45:37 +00:00
cygwin-shilka * cygwin-shilka: Remove '#line directives' or suffer debugging oddities. Use 2003-09-27 05:35:02 +00:00
cygwin.din * cygheap.h (init_cygheap): Play more vfork shell games and move ctty_on_hold 2004-01-03 18:15:03 +00:00
cygwin.sc * cygwin.sc: Add recent changes from ld sources. 2002-06-23 18:55:23 +00:00
cygwin_version.h
dcrt0.cc * cygtls.h (_threadinfo::call): Remove regparm declaration to work around 2004-01-14 15:45:37 +00:00
debug.cc * cygtls.h (_threadinfo::call): Remove regparm declaration to work around 2004-01-14 15:45:37 +00:00
debug.h Change use of BOOL, TRUE, FALSE to bool, true, false, as appropriate, 2003-12-07 22:37:12 +00:00
delqueue.cc 2003-11-11 Robert Collins <rbtcollins@hotmail.com> 2003-11-14 23:40:06 +00:00
devices.cc Change use of BOOL, TRUE, FALSE to bool, true, false, as appropriate, 2003-12-07 22:37:12 +00:00
devices.h Substitute 0x7fffffff and 0xffffffff by INT32_MAX and UINT32_MAX 2003-12-03 16:35:52 +00:00
devices.in Change use of BOOL, TRUE, FALSE to bool, true, false, as appropriate, 2003-12-07 22:37:12 +00:00
dir.cc * dir.cc (mkdir): Use local security_descriptor. Call 2003-11-26 13:23:27 +00:00
dlfcn.cc * cygtls.h (_threadinfo::call): Remove regparm declaration to work around 2004-01-14 15:45:37 +00:00
dll_init.cc * cygtls.h (_threadinfo::call): Remove regparm declaration to work around 2004-01-14 15:45:37 +00:00
dll_init.h 2003-11-11 Robert Collins <rbtcollins@hotmail.com> 2003-11-14 23:40:06 +00:00
dll_init.sgml * cygtls.h (_threadinfo::call): Remove regparm declaration to work around 2004-01-14 15:45:37 +00:00
dlmalloc.c * devices.cc: New file. 2003-09-25 00:37:18 +00:00
dlmalloc.h * Makefile.in (MALLOC_OFILES): Always fill in with correct malloc object. 2003-08-31 18:26:58 +00:00
dtable.cc * cygtls.h (_threadinfo::call): Remove regparm declaration to work around 2004-01-14 15:45:37 +00:00
dtable.h * cygtls.h (_threadinfo::call): Remove regparm declaration to work around 2004-01-14 15:45:37 +00:00
dtable.sgml * cygtls.h (_threadinfo::call): Remove regparm declaration to work around 2004-01-14 15:45:37 +00:00
environ.cc 2003-11-11 Robert Collins <rbtcollins@hotmail.com> 2003-11-14 23:40:06 +00:00
environ.h 2003-11-11 Robert Collins <rbtcollins@hotmail.com> 2003-11-14 23:40:06 +00:00
errno.cc * exceptions.cc (set_signal_mask): Redefine to not pass by address. Report 2003-12-23 16:26:31 +00:00
exceptions.cc * cygtls.h (_threadinfo::call): Remove regparm declaration to work around 2004-01-14 15:45:37 +00:00
exec.cc * devices.cc: New file. 2003-09-25 00:37:18 +00:00
external.cc * cygtls.h (_threadinfo::call): Remove regparm declaration to work around 2004-01-14 15:45:37 +00:00
external.sgml * cygtls.h (_threadinfo::call): Remove regparm declaration to work around 2004-01-14 15:45:37 +00:00
fcntl.cc * fcntl.cc (fcntl_worker): Remove static storage class. 2003-12-03 09:55:42 +00:00
fhandler.cc * winsup.h (access_worker): Declare with added fhandler_base parameter. 2003-12-15 04:16:42 +00:00
fhandler.h Move open_fhs from fhandler.h to cygheap.h for easier tracking. Accommodate 2003-12-30 01:57:16 +00:00
fhandler_clipboard.cc * devices.cc: New file. 2003-09-25 00:37:18 +00:00
fhandler_console.cc Move open_fhs from fhandler.h to cygheap.h for easier tracking. Accommodate 2003-12-30 01:57:16 +00:00
fhandler_disk_file.cc * winsup.h (access_worker): Declare with added fhandler_base parameter. 2003-12-15 04:16:42 +00:00
fhandler_dsp.cc * devices.cc: New file. 2003-09-25 00:37:18 +00:00
fhandler_fifo.cc Change use of BOOL, TRUE, FALSE to bool, true, false, as appropriate, 2003-12-07 22:37:12 +00:00
fhandler_floppy.cc Substitute 0x7fffffff and 0xffffffff by INT32_MAX and UINT32_MAX 2003-12-03 16:35:52 +00:00
fhandler_mem.cc Change use of BOOL, TRUE, FALSE to bool, true, false, as appropriate, 2003-12-07 22:37:12 +00:00
fhandler_nodevice.cc * syscalls.cc (system): Strip signal considerations from here so that they are 2003-09-20 00:31:13 +00:00
fhandler_proc.cc 2003-11-11 Robert Collins <rbtcollins@hotmail.com> 2003-11-14 23:40:06 +00:00
fhandler_process.cc * dcrt0.cc (reent_data): Reluctantly resurrect. 2003-12-26 04:40:52 +00:00
fhandler_random.cc Change use of BOOL, TRUE, FALSE to bool, true, false, as appropriate, 2003-12-07 22:37:12 +00:00
fhandler_raw.cc 2003-11-11 Robert Collins <rbtcollins@hotmail.com> 2003-11-14 23:40:06 +00:00
fhandler_registry.cc 2003-11-11 Robert Collins <rbtcollins@hotmail.com> 2003-11-14 23:40:06 +00:00
fhandler_serial.cc * fhandler_serial.cc (fhandler_serial::tcflush): Simplify. Remove 2003-12-11 18:07:42 +00:00
fhandler_socket.cc Change use of BOOL, TRUE, FALSE to bool, true, false, as appropriate, 2003-12-07 22:37:12 +00:00
fhandler_tape.cc Change use of BOOL, TRUE, FALSE to bool, true, false, as appropriate, 2003-12-07 22:37:12 +00:00
fhandler_termios.cc Change use of BOOL, TRUE, FALSE to bool, true, false, as appropriate, 2003-12-07 22:37:12 +00:00
fhandler_tty.cc Move open_fhs from fhandler.h to cygheap.h for easier tracking. Accommodate 2003-12-30 01:57:16 +00:00
fhandler_virtual.cc 2003-11-11 Robert Collins <rbtcollins@hotmail.com> 2003-11-14 23:40:06 +00:00
fhandler_windows.cc * devices.cc: New file. 2003-09-25 00:37:18 +00:00
fhandler_zero.cc * devices.cc: New file. 2003-09-25 00:37:18 +00:00
flock.cc * fcntl.cc (fcntl_worker): Remove static storage class. 2003-12-03 09:55:42 +00:00
fork.cc * cygtls.h (_threadinfo::call): Remove regparm declaration to work around 2004-01-14 15:45:37 +00:00
gcrt0.c
gendef Eliminate use of sigframe and sigthread throughout. 2003-11-28 20:55:59 +00:00
gendevices * gendevices: Issue error when shilka is missing. 2003-11-28 21:20:15 +00:00
gentls_offsets * exceptions.cc (set_signal_mask): Redefine to not pass by address. Report 2003-12-23 16:26:31 +00:00
glob.c * glob.c: Eliminate __INSIDE_CYGWIN__ preprocessor conditionals 2003-03-19 21:38:25 +00:00
gmon.c 2002-05-25 Robert Collins <rbtcollins@hotmail.com> 2002-05-24 14:24:33 +00:00
gmon.h
grp.cc * exceptions.cc (set_signal_mask): Redefine to not pass by address. Report 2003-12-23 16:26:31 +00:00
heap.cc * cygtls.h (_threadinfo::call): Remove regparm declaration to work around 2004-01-14 15:45:37 +00:00
heap.h * cygheap.cc (cygheap_fixup_in_child): Use user_heap element in cygheap. 2002-10-22 16:18:55 +00:00
hires.h * exceptions.cc (set_signal_mask): Redefine to not pass by address. Report 2003-12-23 16:26:31 +00:00
how-autoload-works.txt whitespace 2002-12-12 03:09:38 +00:00
how-cygheap-works.txt fix spelling errors 2001-10-28 23:05:49 +00:00
how-fhandlers-work.txt . 2002-05-04 04:30:57 +00:00
how-signals-work.txt add out-of-date notice. 2003-12-15 04:44:30 +00:00
how-spawn-works.txt new how-to. 2002-02-11 02:25:42 +00:00
how-to-debug-cygwin.txt add initial information 2002-07-13 21:15:10 +00:00
how-vfork-works.txt
init.cc * cygtls.h (_threadinfo::call): Remove regparm declaration to work around 2004-01-14 15:45:37 +00:00
ioctl.cc Eliminate use of sigframe and sigthread throughout. 2003-11-28 20:55:59 +00:00
ipc.cc * exceptions.cc (ctrl_c_handler): Send SIGHUP when events occur only if there 2003-07-26 04:53:59 +00:00
localtime.cc Change use of BOOL, TRUE, FALSE to bool, true, false, as appropriate, 2003-12-07 22:37:12 +00:00
malloc.cc * Makefile.in (MALLOC_OFILES): Always fill in with correct malloc object. 2003-08-31 18:26:58 +00:00
malloc_wrapper.cc * cygtls.h (_threadinfo::call): Remove regparm declaration to work around 2004-01-14 15:45:37 +00:00
mcount.c
misc-std.sgml
miscfuncs.cc * miscfuncs.cc (low_priority_sleep): Correct thinko which caused SetPriority to 2003-12-12 04:15:32 +00:00
mkvers.sh * mkvers.sh: Avoid "-dontuse" tags. 2003-05-29 03:50:15 +00:00
mmap.cc Change use of BOOL, TRUE, FALSE to bool, true, false, as appropriate, 2003-12-07 22:37:12 +00:00
msg.cc Eliminate use of sigframe and sigthread throughout. 2003-11-28 20:55:59 +00:00
net.cc * exceptions.cc (set_signal_mask): Redefine to not pass by address. Report 2003-12-23 16:26:31 +00:00
netdb.cc 2003-11-11 Robert Collins <rbtcollins@hotmail.com> 2003-11-14 23:40:06 +00:00
newsym * newsym: Reenable removal of tmp directory. Just use ar to generate archive 2003-07-07 05:30:33 +00:00
ntdll.h * cygwin.din: Export _fdopen64 2003-07-25 16:13:12 +00:00
ntea.cc Change use of BOOL, TRUE, FALSE to bool, true, false, as appropriate, 2003-12-07 22:37:12 +00:00
passwd.cc * exceptions.cc (set_signal_mask): Redefine to not pass by address. Report 2003-12-23 16:26:31 +00:00
path.cc * path.cc (mount_item::build_win32): Backslashify paths in non-managed case. 2003-12-26 18:26:17 +00:00
path.h Change use of BOOL, TRUE, FALSE to bool, true, false, as appropriate, 2003-12-07 22:37:12 +00:00
path.sgml * cygtls.h (_threadinfo::call): Remove regparm declaration to work around 2004-01-14 15:45:37 +00:00
perprocess.h
perthread.h 2004 stuff 2004-01-03 18:53:49 +00:00
pinfo.cc * cygtls.h (_threadinfo::call): Remove regparm declaration to work around 2004-01-14 15:45:37 +00:00
pinfo.h * pinfo.h (pinfo::operator ==): Add a way to check for _pinfo types. 2003-12-17 22:47:32 +00:00
pipe.cc * devices.cc: New file. 2003-09-25 00:37:18 +00:00
poll.cc Eliminate use of sigframe and sigthread throughout. 2003-11-28 20:55:59 +00:00
posix.sgml
profil.c * profil.h (PROFADDR): Prevent overflow when text segments are larger than 2003-04-28 20:10:54 +00:00
profil.h * profil.h (PROFADDR): Prevent overflow when text segments are larger than 2003-04-28 20:10:54 +00:00
pseudo-reloc.cc * lib/pseudo-reloc.c: New file. 2002-12-09 22:49:12 +00:00
pthread.cc 2003-11-11 Robert Collins <rbtcollins@hotmail.com> 2003-11-14 23:40:06 +00:00
pwdgrp.h * exceptions.cc (set_signal_mask): Redefine to not pass by address. Report 2003-12-23 16:26:31 +00:00
registry.cc 2003-11-11 Robert Collins <rbtcollins@hotmail.com> 2003-11-14 23:40:06 +00:00
registry.h
resource.cc * cygheap.cc (creturn): Set appropriate errno when out of memory. 2003-07-09 01:33:06 +00:00
rmsym * rmsym: Don't use ranlib. 2003-07-07 05:32:24 +00:00
scandir.cc Throughout, remove "include <errno.h>" from files which already include 2003-06-16 03:24:13 +00:00
sched.cc * Makefile.in: Add libusr32.a to DLL_IMPORTS. 2003-09-27 03:44:31 +00:00
sec_acl.cc Change use of BOOL, TRUE, FALSE to bool, true, false, as appropriate, 2003-12-07 22:37:12 +00:00
sec_helper.cc Change use of BOOL, TRUE, FALSE to bool, true, false, as appropriate, 2003-12-07 22:37:12 +00:00
security.cc Change use of BOOL, TRUE, FALSE to bool, true, false, as appropriate, 2003-12-07 22:37:12 +00:00
security.h Change use of BOOL, TRUE, FALSE to bool, true, false, as appropriate, 2003-12-07 22:37:12 +00:00
select.cc Change use of BOOL, TRUE, FALSE to bool, true, false, as appropriate, 2003-12-07 22:37:12 +00:00
select.h * cygtls.h (_threadinfo::call): Remove regparm declaration to work around 2004-01-14 15:45:37 +00:00
sem.cc Eliminate use of sigframe and sigthread throughout. 2003-11-28 20:55:59 +00:00
shared.cc * cygheap.cc (cygheap_init): Set cygheap->shared_prefix. 2003-12-01 15:03:43 +00:00
shared.sgml * cygtls.h (_threadinfo::call): Remove regparm declaration to work around 2004-01-14 15:45:37 +00:00
shared_info.h 2003-11-11 Robert Collins <rbtcollins@hotmail.com> 2003-11-14 23:40:06 +00:00
shm.cc Eliminate use of sigframe and sigthread throughout. 2003-11-28 20:55:59 +00:00
signal.cc * pinfo.h (_pinfo::getsig): Remove obsolete function, here and throughout. 2003-11-28 22:13:57 +00:00
sigproc.cc * cygtls.h (_threadinfo::call): Remove regparm declaration to work around 2004-01-14 15:45:37 +00:00
sigproc.h * exceptions.cc (set_signal_mask): Redefine to not pass by address. Report 2003-12-23 16:26:31 +00:00
smallprint.c 2003-11-11 Robert Collins <rbtcollins@hotmail.com> 2003-11-14 23:40:06 +00:00
spawn.cc * spawn.cc (spawn_guts): Change type back to 'int' after erroneous change 2003-12-08 00:21:17 +00:00
speclib * speclib: Use correct EOF marker. Ensure that directory is actually deleted 2003-11-28 20:51:11 +00:00
stackdump.sgml * cygtls.h (_threadinfo::call): Remove regparm declaration to work around 2004-01-14 15:45:37 +00:00
strace.cc Change use of BOOL, TRUE, FALSE to bool, true, false, as appropriate, 2003-12-07 22:37:12 +00:00
string.h whitespace cleanup 2003-03-09 20:31:07 +00:00
strsep.cc Do some minor reformatting of 'extern "C"' use throughout. 2003-03-09 20:10:25 +00:00
sync.cc * cygtls.h (_threadinfo::call): Remove regparm declaration to work around 2004-01-14 15:45:37 +00:00
sync.h * cygtls.h (_threadinfo::call): Remove regparm declaration to work around 2004-01-14 15:45:37 +00:00
syscalls.cc * cygtls.h (_threadinfo::call): Remove regparm declaration to work around 2004-01-14 15:45:37 +00:00
sysconf.cc * devices.cc: New file. 2003-09-25 00:37:18 +00:00
syslog.cc * exceptions.cc (set_signal_mask): Redefine to not pass by address. Report 2003-12-23 16:26:31 +00:00
termios.cc Eliminate use of sigframe and sigthread throughout. 2003-11-28 20:55:59 +00:00
textmode.c
thread.cc * cygtls.h (_threadinfo::call): Remove regparm declaration to work around 2004-01-14 15:45:37 +00:00
thread.h * cygtls.h (_threadinfo::call): Remove regparm declaration to work around 2004-01-14 15:45:37 +00:00
times.cc * exceptions.cc (set_signal_mask): Redefine to not pass by address. Report 2003-12-23 16:26:31 +00:00
tlsoffsets.h * cygtls.h (_threadinfo::call): Remove regparm declaration to work around 2004-01-14 15:45:37 +00:00
tty.cc * fhandler.h (fhandler_tty_master::fixup_after_fork): Remove declaration. 2003-12-27 01:59:29 +00:00
tty.h * fhandler.h (fhandler_tty_master::fixup_after_fork): Remove declaration. 2003-12-27 01:59:29 +00:00
tz_posixrules.h
uinfo.cc * exceptions.cc (set_signal_mask): Redefine to not pass by address. Report 2003-12-23 16:26:31 +00:00
uname.cc * autoload.cc: Fix copyright date. 2003-01-15 10:21:23 +00:00
wait.cc * pinfo.h (pinfo::operator ==): Add a way to check for _pinfo types. 2003-12-17 22:47:32 +00:00
winbase.h * cygthread.cc (cygthread::stub): Properly establish _threadinfo environment. 2003-12-03 05:21:55 +00:00
wincap.cc Substitute 0x7fffffff and 0xffffffff by INT32_MAX and UINT32_MAX 2003-12-03 16:35:52 +00:00
wincap.h * Makefile.in: Add libusr32.a to DLL_IMPORTS. 2003-09-27 03:44:31 +00:00
window.cc * cygthread.cc (cygthread::stub): Revert previous change and again subsume 2003-12-14 07:09:22 +00:00
winsup.h * cygtls.h (_threadinfo::call): Remove regparm declaration to work around 2004-01-14 15:45:37 +00:00
winver.rc * winver.rc: Change Copyright hint to inlcude 2003. 2003-03-09 22:13:06 +00:00
wsock_event.h * dtable.cc (dtable::dup2): Revert previous patch. 2002-02-09 10:40:48 +00:00