summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* * libc/include/sys/config.h (SIZE_T_SMALLER_THAN_LONG): Undefine.Richard Sandiford2002-10-113-10/+10
| | | | | * libc/stdlib/mallocr.c (long_sub_size_t): Define in a way that doesn't require the SIZE_T_SMALLER_THAN_LONG macro.
* * include/olectl.h (PROPPAGEINFO): Change type ofDanny Smith2002-10-112-1/+6
| | | | field cb to ULONG.
* 2002-10-11 Steven Edwards <Steven_Ed4153@yahoo.com>Danny Smith2002-10-112-0/+13
| | | | | | | | | * lib/ntdll.def (RtlAcquireResourceExclusive, RtlAcquireResourceShared, RtlDeleteResource, RtlInitializeResource, RtlReleaseResource, RtlTimeToSecondsSince1970) : Added missing exports. * include/olectl.h (PROPPAGEINFO): Change type of field cb to ULONG.
* * include/stdint.h (INT64_C, UINT64_C ): Append suffix to letDanny Smith2002-10-112-4/+12
| | | | | macros work with C89. (INTMAX_C, UINTMAX_C): Likewise.
* * include/string.h (strcasecmp): Make extern __inline__.Danny Smith2002-10-112-3/+15
| | | | | (strncasecmp): Likewise. (wcscmpi): Likewise.
* * window.cc (gethwnd): Use SetThreadPriority method.Christopher Faylor2002-10-102-8/+11
|
* * Makefile.in (new-cygwin1.dll): Reorganize library order.Christopher Faylor2002-10-104-15/+24
| | | | | | | * dcrt0.cc (do_exit): Move thread stuff after vfork stuff or threads are terminated during vfork. * sigproc.cc (proc_terminate): Grab proc lock prior to signalling subproc thread exit to avoid an extra "wait-for-thread-to-exit".
* * cygthread.cc (cygthread::stub): Don't create an event for "cygself" threads.Christopher Faylor2002-10-098-27/+63
| | | | | | | | | | | | | | | | | | | | | Assume that they exit via an ExitThread call. * cygthread.h (cygthread::SetThreadPriority): New function. (cygthread::zap_h): New function. * dcrt0.cc (do_exit): Move cygthread::terminate earlier and establish exit_state guard. * fhandler.h (fhandler_tty_master::output_thread): Delete. * fhandler_tty.cc (fhandler_tty_master::init): Set priority for threads via method. Zap handles when done. Don't treat process_output specially. (process_output): Call ExitThread directly. (fhandler_tty_master::fixup_after_fork): Don't worry about output_thread. (fhandler_tty_master::fixup_after_exec): Ditto. * sigproc.cc (proc_terminate): Don't detach from hwait_subproc. Just let it exit. (sigproc_init): Close thread handle after initialization. (wait_sig): Use GetCurrentThread() as SetThreadPriority call rather than *event* handle. Call ExitThread directly on termination. (wait_subproc): Call ExitThread directly on termination. * tty.cc (tty_list::terminate): Don't attempt t detach from output_thread.
* * cygheap.cc (dup_now): Make fatal error a little more informative.Christopher Faylor2002-10-098-49/+108
| | | | | | | | | | | | | | | | | | | | (cygheap_setup_for_child): Detect when default size of shared region is less than the current size and allocate that much. (_cbrk): Just return NULL on inability to allocate. (_cmalloc): Ditto. * cygheap.h (CYGHEAPSIZE): Change size to reflect newer, tinier fhandler sizes. * spawn.cc (av::error): New element, reflects potential errno from cmalloc. (av::~av): Don't free NULL pointers. (av::replace0_maybe): Detect out-of-memory conditions. (av::dup_maybe): Ditto. (av::dup_all): Ditto. (av::unshift): Ditto. (spawn_guts): Set errno and return if argv creation ran into problems. * fhandler.h (fhandler_union): Change member names to something safer. * fhandler_console.cc (fhandler_console::get_tty_stuff): Always set fhandler_console::dev_state regardless of whether shared region is initialized. * cygthread.cc (cygthread::runner): Use ExitThread rather than return (planning for future).
* 2002-10-08 Heiko Gerdau <hg@technosis.de>Danny Smith2002-10-095-0/+101
| | | | | | | | * include/oleacc.h: New file. * include/winuser.h (ENDSESSION_LOGOFF) Add define. (OBJID_*) Add defines. * lib/uuid.c: Add DEFINE_GUID for IID_IAccessible. * lib/test.c: Include oleacc.h.
* 2002-10-08 Heiko Gerdau <hg@technosis.de>Danny Smith2002-10-082-0/+18
| | | | | | * include/tchar.h (_tchdir. _tgetcwd, _tgetdcwd. _tmkdir, _trmdir, _tstat): Add ASCII and UNICODE mappings.
* 2002-10-07 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2002-10-082-0/+11
| | | | | * libc/sys/rtems/crt0.c: Add even more symbols so gcc() can link dummy programs.
* 2002-10-07 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2002-10-082-0/+6
| | | | * libc/include/pthread.h: Define PTHREAD_CANCELED.
* 2002-10-07 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2002-10-084-14/+45
| | | | | | * libc/machine/hppa/DEFS.h, libc/machine/hppa/pcc_prefix.s, libc/machine/hppa/setjmp.S, libc/machine/hppa/DEFS.h: Make this compile with current GNU tools.
* * fhandler.h (dev_console): New class.Christopher Faylor2002-10-083-310/+296
| | | | | | | | | (fhandler_console::dev_state): New class element. (fhandler_console::mouse_aware): Use dev_state element. (fhandler_console::get_tty_stuff): Declare new function. * fhandler_console.cc: Use dev_state fhandler_console element, throughout. (fhandler_console::get_tty_stuff): Move to fhandler_console class. Incorporate dev_console information. Move constructor stuff here.
* * dtable.cc (dtable::init_std_file_from_handle): Try to mimic standard openChristopher Faylor2002-10-082-2/+13
| | | | | behavior with files redirected from stdin/stdout/stderr, i.e., fmode settings take precedence over mount settings.
* 2002-10-07 Jeff Johnston <jjohnstn@redhat.com>Jeff Johnston2002-10-079-7/+44
| | | | | | | | | | | | | * Makefile.am: Add EXTRA_DIRS to allow future dependencies on the build library. * configure.in: Ditto. * Makefile.in: Regenerated. * configure: Ditto. * libc/sys/linux/Makefile.am: Add EXTRA_SUBDIRS and EXTRA_SUBLIBS for specifying configured libraries/directories. * libc/sys/linux/configure.in: Ditto. * libc/sys/linux/Makefile.in: Regenerated. * libc/sys/linux/configure: Ditto.
* * dtable.cc (unknown_file): New variable.Christopher Faylor2002-10-073-8/+16
| | | | | | (dtable::init_std_file_from_handle): Don't set binmode if we couldn't determine the actual file name on stdin/stdout/stderr. (handle_to_fn): Return unknown_file when can't determine filename.
* Add tic4x target.Nick Clifton2002-10-072-1/+5
|
* * mips/ddb.ld: KEEP .init and .fini.Richard Sandiford2002-10-073-4/+9
| | | | * mips/ddb-kseg0.ld: Likewise.
* * dcrt0.cc (do_exit): Call DisableThreadLibraryCalls since we don't need toChristopher Faylor2002-10-073-12/+14
| | | | | track thread detaches. * init.cc (dll_entry): Reorganize slightly. Fix api_fatal message.
* * mingwex/math/powil.c: Rename powil to __powil.Danny Smith2002-10-068-67/+1370
| | | | | | | | | | | | | | | * mingwex/math/powl.c: Adjust declaration and call to __powil. Remove comment on powil. * mingwex/math/powi.c: New file. * mingwex/math/powif.c: New file. * mingwex/math/pow.c: New file. * mingwex/math/cephes_mconf.h. Add double and float versions of constants. (polevl): Add double precision function. (p1evl): Likewise. * mingwex/Makefile.in (MATH_DISTFILES): Add pow.c, powi.c, powif.c. (MATH_OBJS): Add pow.o, powi.o, powif.o.
* 2002-10-06 Casper Hornstrup <chorns@it.dk>Earnie Boyd2002-10-0694-0/+53242
| | | | | | | | | | | | | | | | | | | | | | | | * include/ddk: New subdir. * lib/ddk: Ditto. * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h, d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h, miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h, ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h, netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h, ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h, ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h, ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h, ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h, poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h, storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h, upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h, usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h, winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h, xfilter.h): New files. * lib/ddk/(Makefile.in, apcups.def, cfgmgr32.def, dxapi.def, hal.def, hid.def, hidparse.def, mcd.def, ndis.def, ntoskrnl.def, scsiport.def, tdi.def, usbcamd.def, usbcamd2.def, videoprt.def, win32k.def): Ditto.
* * cygthread.cc (cygthread::stub): Very minor cleanup.Christopher Faylor2002-10-063-7/+16
| | | | | | | | (cygthread::stub): Report overflows in cygwin thread pool when DEBUGGING is on and special environment variable is not set. (cygthread::terminate): Set event only when event actually exists. * exceptions.cc (signal_exit): Set priority of main thread to low before setting current thread to high.
* whitespaceChristopher Faylor2002-10-051-1/+1
|
* 2002-10-04 Steven Edwards <Steven_Ed4153@yahoo.com>Danny Smith2002-10-042-12/+88
| | | | | | | | | | | | | | | | | | | | | | | | | | * lib/ntdll.def (NtAccessCheck, NtAdjustPrivilegesToken, NtCreateKey, NtDeleteKey, NtDeleteValueKey, NtEnumerateKey, NtEnumerateValueKey, NtOpenKey, NtOpenProcessToken, NtOpenThreadToken, NtQueryInformationToken, NtQueryKey, NtQueryValueKey, NtSetSecurityObject, NtSetValueKey, RtlAddAccessAllowedAce, RtlCreateAcl, RtlCreateSecurityDescriptor, RtlCreateUnicodeStringFromAsciiz, RtlGetAce, RtlGetControlSecurityDescriptor, RtlGetDaclSecurityDescriptor,RtlGetGroupSecurityDescriptor, RtlGetOwnerSecurityDescriptor,RtlGetSaclSecurityDescriptor, RtlImpersonateSelf, RtlIsTextUnicode, RtlLargeIntegerAdd, RtlLengthSecurityDescriptor, RtlMakeSelfRelativeSD, RtlMultiByteToUnicodeN RtlMultiByteToUnicodeSize, RtlOpenCurrentUser, RtlSetDaclSecurityDescriptor, RtlSetGroupSecurityDescriptor, RtlSetOwnerSecurityDescriptor, RtlSetSaclSecurityDescriptor, RtlValidSecurityDescriptor, ZwAccessCheck, ZwAdjustPrivilegesToken, ZwCreateKey, ZwDeleteValueKey, ZwEnumerateKey, ZwEnumerateValueKey, ZwOpenKey, ZwOpenProcessToken, ZwOpenThreadToken, ZwQueryInformationToken, ZwQueryKey, ZwQueryValueKey ZwSetSecurityObject, ZwSetValueKey): Added missing exports. ChangeLog whitespace cleanup.
* 2002-10-04 "KJK::Hyperion" <noog@libero.it>Danny Smith2002-10-042-3/+9
| | | | | | *include/windef.h (WPARAM): Update typedef. (LPARAM): Ditto. (LRESULT): Ditto.
* 2002-10-04 "KJK::Hyperion" <noog@libero.it>Danny Smith2002-10-042-0/+28
| | | | * include/shlobj.h (CSIDL_*): Add defines.
* 2002-10-03 Jeff Johnston <jjohnstn@redhat.com>Jeff Johnston2002-10-032-5/+9
| | | | * libc/include/reent.h: Update documentation at start of file.
* 2002-10-03 Nathanael Nerode <neroden@gcc.gnu.org>Nathanael Nerode2002-10-034-17/+28
| | | | | | | | * Makefile.tpl: Make SET_LIB_PATH substitution more autoconfy. * Makefile.tpl: Make RPATH_ENVVAR substitution more autoconfy. * configure.in: Make SET_LIB_PATH substitution more autoconfy. * configure.in: Make RPATH_ENVVAR substitution more autoconfy. * Makefile.in: Regenerate.
* * include/cytpe.h (_imp____mbcur_max): Add missing ';'.Danny Smith2002-10-032-2/+7
| | | | (_imp____mbcur_max_dll): Likewise.
* * include/fcntl.h (_fmode): Remove declarations andDanny Smith2002-10-038-53/+53
| | | | | | | | | | | | | | compatibility defines. (_setmode, setmode): Remove prototypes. * include/stdlib (_fmode): Add declarations and compatibility defines. Change type to int. * include/io.h (_setmode, setmode): Add prototypes. * samples/fmode/all.c: Adjust includes. * samples/fmode/test.c: Likewise. * crt1.c (_CRT_fmode): Declare as int. * CRTfmode.c (_CRT_fmode): Likewise. * include/stdlib: Remove comment about MB_CUR_MAX.
* 2002-10-02 Nathanael Nerode <neroden@gcc.gnu.org>Nathanael Nerode2002-10-023-14/+7
| | | | | * Makefile.tpl: Eliminate reference to all-gui, all-libproc. * Makefile.in: Regenerate.
* 2002-10-02 Nathanael Nerode <neroden@gcc.gnu.org>Nathanael Nerode2002-10-024-12/+24
| | | | | | * Makefile.def: Remove order dependency comments. * Makefile.tpl: Add explicit install-install dependencies. * Makefile.in: Regenerate.
* 2002-10-02 Nathanael Nerode <neroden@gcc.gnu.org>Nathanael Nerode2002-10-023-574/+3
| | | | | * Makefile.tpl: Remove material now in src-release. (Finally!) * Makefile.in: Regenerate.
* 2002-10-02 Nathanael Nerode <neroden@gcc.gnu.org>Nathanael Nerode2002-10-022-25/+26
| | | | * configure: Restore my original patch by syncing with gcc version.
* 2002-10-02 Nathanael Nerode <neroden@gcc.gnu.org>Nathanael Nerode2002-10-022-4/+8
| | | | | | | | * Bring following over from gcc: 2002-09-30 Ulrich Weigand <uweigand@de.ibm.com> * configure.in (s390*-*-linux*): Enable libgcj.
* 2002-10-02 Nathanael Nerode <neroden@gcc.gnu.org>Nathanael Nerode2002-10-022-29/+32
| | | | * Makefile.in: Regenerate. This really ought to fix things. :sigh:
* * configure: Move stray lines back to where they belong.Alan Modra2002-10-022-2/+2
|
* * include/stdlib.h (_imp____mbcur_max): add missing ';'.Danny Smith2002-10-022-2/+7
| | | | (_imp____mbcur_max_dll): Likewise.
* * configure: Move stray line back to where it belongs.Alan Modra2002-10-022-1/+5
|
* 2002-10-01 Nathanael Nerode <neroden@gcc.gnu.org>Nathanael Nerode2002-10-012-0/+3
| | | | * Makefile.tpl: Insert configure-target target, for src-release.
* 2002-10-01 Nathanael Nerode <neroden@gcc.gnu.org>Nathanael Nerode2002-10-012-24/+28
| | | | | * configure: Finish reverting change which Andrew Cagney started reverting. Should fix bustage.
* 2002-10-01 Nathanael Nerode <neroden@gcc.gnu.org>Nathanael Nerode2002-10-012-1/+2
| | | | * src-release (BINUTILS_SUPPORT_DIRS): Add cpu directory.
* 2002-10-01 Nathanael Nerode <neroden@gcc.gnu.org>Nathanael Nerode2002-10-012-0/+331
| | | | | * src-release: New file. Contains material for making net releases for gdb, binutils, et al., formerly in Makefile.in.
* 2002-10-01 Robert Collins <rbtcollins@hotmail.com>Robert Collins2002-09-302-3/+12
| | | | | | | * thread.cc (pthread_key::keys): Copy on fork. Add a comment explaining why. (pthreadNull::_instance): Copy on fork. Absolutely no state exists in pthreadNull.
* * cygserver_transport_pipes.cc (transport_layer_pipes::accept):Conrad Scott2002-09-303-2/+7
| | | | Remove trailing \n from debug_printf.
* whitespaceChristopher Faylor2002-09-309-39/+39
|
* * thread.cc (pthread_mutex::initMutex): Remove \n from api_fatal.Christopher Faylor2002-09-302-2/+5
|
* * thread.cc (pthread::precreate): Use explicit "no inherit" option whenChristopher Faylor2002-09-302-14/+21
| | | | | | creating mutex. (pthread_mutex::nativeMutex::init): Ditto. (semaphore::semaphore): Ditto.