bf15c75b20Correct attribution last changes
Hans-Peter Nilsson
2004-12-13 00:43:59 +0000
4e96a0a0a1* callback.h (CB_SYS_rename): New macro.
Hans-Peter Nilsson
2004-12-13 00:42:49 +0000
716f334bce* callback.h (struct host_callback_struct): New member lstat. (CB_SYS_lstat): New macro.
Hans-Peter Nilsson
2004-12-13 00:35:29 +0000
3020ba83ce* fhandler.cc (fhandler_base::puts_readahead): Fix end-condition.
Bas van Gompel
2004-12-12 02:15:34 +0000
c546950745merge from gcc
DJ Delorie
2004-12-10 22:04:33 +0000
aee05403d1* errno.cc (errmap): Map ERROR_INVALID_ADDRESS to EINVAL instead of EOVERFLOW.
Corinna Vinschen
2004-12-10 17:43:00 +0000
804cd111b4* include/sys/strace.h: Don't output paranoid_printf by default.
Christopher Faylor
2004-12-10 16:25:35 +0000
e83a0e6527* MAINTAINERS: List 'depcomp' as part of automake.
Jim Blandy
2004-12-09 21:59:14 +0000
0082d4cf572004-12-09 Alex Mogilnikov <alx@intellectronika.ru>
Jeff Johnston
2004-12-09 21:36:48 +0000
fc2eba361c* lib/libcmain.c (main): Properly deal with quoted first argument.
Christopher Faylor
2004-12-09 21:28:32 +0000
23b9802aa0* mips.h (CPU_RM9000): Define. (OPCODE_IS_MEMBER): Handle CPU_RM9000.
Ian Lance Taylor
2004-12-09 06:13:44 +0000
55059a1f7d* mips.h (E_MIPS_MACH_9000): Define.
Ian Lance Taylor
2004-12-09 06:02:45 +0000
8bbdc64198* include/sqlext.h (SQL_INTERVAL_*): Correct macros. Reported by Eric Sharkey <sharkey at netrics dot com>
Danny Smith
2004-12-09 02:33:20 +0000
da3e88ae5b* Makefile.tpl: Generate normal dependencies if the LHS module is not bootstrapped. * Makefile.in: Regenerate.
DJ Delorie
2004-12-08 18:57:27 +0000
3b54b74f3a2004-12-08 Alex Mogilnikov <alx@intellectronika.ru>
Jeff Johnston
2004-12-08 18:12:28 +0000
4b30e154712004-12-08 Alex Mogilnikov <alx@intellectronika.ru>
Jeff Johnston
2004-12-08 17:54:38 +0000
465eab2eb42004-12-07 Jeff Johnston <jjohnstn@redhat.com>
Jeff Johnston
2004-12-07 18:54:28 +0000
91ce86e773* include/winnt.h (TOKEN_INFORMATION_CLASS): Add TokenGroupsAndPrivileges, TokenSessionReference, TokenSandBoxInert, TokenAuditPolicy, TokenOrigin. Reformat. (SID_NAME_USE): Add SidTypeComputer. Reformat. Thanks to Gabriel Linder <mingwlinder@users.sourceforge.net>
Danny Smith
2004-12-07 07:15:26 +0000
8c43a9f82e* fork.cc (fork_parent): Reinstate "childhProc" protection. Don't close hProcess handle here since it is used to ensure that a new process isn't created with the old pid after the old pid exits. * spawn.cc (spawn_guts): Ditto. * pinfo.cc (proc_waiter): Don't send any signals if we've execed since this process doesn't officially exist. * pinfo.h (pinfo::pid_handle): Eliminate. Just use hProc. * sigproc.cc (sig_send): Don't send any signals if our sendsig doesn't exist. That's a sign that we are execing. (remove_proc): Eliminate pid_handle close.
Christopher Faylor
2004-12-06 00:29:41 +0000
013f043ffffix typo
Christopher Faylor
2004-12-05 21:39:47 +0000
f181da2707* cygthread.cc (cygthread::terminate_thread): Make public. * pinfo.h (pinfo::wait_thread): New element. * pinfo.cc (pinfo::wait): Store "handle" to started thread in pinfo. * sigproc.cc (proc_terminate): Kill any threads waiting for a process pipe.
Christopher Faylor
2004-12-05 21:29:37 +0000
54dd79bb44* sigproc.cc (mychild): Reimplement as list scan. (proc_subproc): Don't mess with pinfo if it's myself. * child_info.h (child_info_types): Label enum for _PROC constants. (child_info::child_info): New constructor. (child_info::~child_info): New destructor. (child_info::sync): Declare new function. (child_info_fork::child_info_fork): New constructor. (child_info_spawn::child_info_spawn): Remove old constructor. (child_info_spawn::child_info_spawn): New constructor. * dcrt0.cc (dll_crt0_0): Use correct sizeof when doing sanity check on passed in child_info. Signal readiness to parent when not forking (and not spawning). * fork.cc (sync_with_child): Delete. (resume_child): Remove extra argument. (sync_with_parent): Use child_info method to sync with parent. (fork_child): Don't close fork_info->subproc_ready since that is now handled by the destructor. (fork_parent): Remove subproc_ready stuff. Use child_info sync method for waiting.. Set start time here for child. Rename "forked" to "child". (fork): Check ch.subproc_ready for validity here. * pinfo.h (_pinfo::exec_sendsig): Temp storage for exec stub which may be staying around to handle non-cygwin captive process. (_pinfo::exec_dwProcessId): Ditto. (_pinfo::_lock): Renamed from lock. (_pinfo::lock): New method. (_pinfo::unlock): Ditto. (_pinfo::initialize_lock): Ditto. * pinfo.cc (set_myself): Use initialize_lock method to initialize myself lock. Set "exec" fields in _pinfo to zero to indicate that we've started successfully. Set start time here when appropriate. (_pinfo::commune_send): Use pinfo lock/unlock methods. (proc_waiter): Remove special case for non-cywin processes. Reinstitute handling for PID_NOCLDSTOP. * sigproc.cc (proc_subproc): Set proper EAGAIN errno when process table is filled. (sig_send): Use exec_* fields from _pinfo for sending signals if the the _pinfo sendsig never materializes. (child_info::child_info): New constructor, renamed from init_child_info. Zeroes child_info structure and sets appropriate fields in structure based on chtype. (child_info::~child_info): New destructor. Closes subproc_ready if it exists. (child_info_fork::child_info_fork): New constructor. (child_info_spawn::child_info_spawn): New constructor. (child_info::ready): New function. Signals parent when child is ready. (child_info::sync): New function. Wait for child to signal us or process to die. (remove_proc): Remove closing of hProcess since this should now be handled shortly after process creation. * spawn.cc (spawn_guts): Use child_info_spawn constructor rather than init_child_info. Save exec_sendsig and exec_dwProcessId in execing _pinfo. Rely on child_info constructor to properly set parent_wr_proc_pipe in ciresrv. Revert to previous determination on whether to start a process in suspended mode. Remove reparenting stuff. Just keep a stub around if starting a non-cygwin process.
Christopher Faylor
2004-12-05 19:41:26 +0000
d54b79d351* fhandler.cc (fhandler_base::read): Remove superfluous check in __small_printf format for strace.
Bas van Gompel
2004-12-05 07:28:27 +0000
3a72ce9d12minor cleanup
Christopher Faylor
2004-12-05 02:30:20 +0000
8b6d072355* fhandler.cc (fhandler_base::read): Don't debug_printf garbage when copied_chars is zero.
Bas van Gompel
2004-12-05 01:53:47 +0000
e9efc27020* environ.cc (environ_init): Alloc space for TERM if it is not set, like all of the other environment variables.
Christopher Faylor
2004-12-03 23:49:06 +0000
a2b1a849d12004-12-03 Jeff Johnston <jjohnstn@redhat.com>
Jeff Johnston
2004-12-03 23:46:28 +0000
c80a17311c2004-12-03 Shaun Jackman <sjackman@gmail.com>
Jeff Johnston
2004-12-03 21:20:15 +0000
e51613764bIntroduce config/gxx-include-dir.m4.
Richard Sandiford
2004-12-03 10:47:07 +0000
fdc1bab19dRemove config.if.
Richard Sandiford
2004-12-03 10:30:06 +0000
b96fedfb8b2004-12-02 Joshua Daniel Franklin <joshuadfranklin@yahoo.com>
Joshua Daniel Franklin
2004-12-03 05:30:52 +0000
82b7b4fd4f* child_info.h (child_info_fork::parent_wr_proc_pipe): New element. * fork.cc (fork_parent): Set parent_wr_proc. * pinfo.cc (set_myself): Close child_proc_info->parent_wr_proc if it exists rather than trying to get value from parent _pinfo. * pinfo.h (enum parent_aleter): New enum. (pinfo::alert_parent): Declare as returning a value. (pinfo::parent_alive): New function. * pinfo.cc (pinfo::alert_parent): Set wr_proc_pipe to invalid non-NULL value when parent disappears. Return success of operation. (proc_waiter): Use __ALERT_* enum for control since these are not really signals. Implement __ALERT_ALIVE. * sigproc.cc (my_parent_is_alive): Eliminate. * sigproc.h (my_parent_is_alive): Ditto for declaration. (__SIGREPARENT): Eliminate.
Christopher Faylor
2004-12-03 04:46:00 +0000
3ef7d75861* pinfo.cc (pinfo::wait): Use better name for cygthread.
Christopher Faylor
2004-12-03 02:49:54 +0000
8151e674ba2004-12-03 Pierre Humblet <pierre.humblet@ieee.org>
Pierre Humblet
2004-12-03 02:00:37 +0000
3263f819aaUse correct ChangeLog entry.
Eric Christopher
2004-12-02 23:51:19 +0000
7046d222762004-12-02 Eric Christopher <echristo@redhat.com>
Eric Christopher
2004-12-02 23:50:22 +0000
70e9da42492004-12-02 Shaun Jackman <sjackman@gmail.com>
Jeff Johnston
2004-12-02 19:30:56 +0000
f9095d09fe* configure.in: Clear gcc_version_trigger if the file doesn't exist. * configure: Regenerate.
Richard Sandiford
2004-12-02 14:08:01 +0000
afdaeaab51Introduce and use config/gcc-version.m4.
Richard Sandiford
2004-12-02 11:09:36 +0000
f77390bbdb* lib/comctl32.def (ImageList_Copy, ImageList_DrawIndirect, ImageList_Duplicate): Add stubs.
Danny Smith
2004-12-02 05:55:45 +0000
a923c24660* lib/directx/strmiids.c (MEDIASUBTYPE_YV12): Correct GUID. Thanks to "Pete" <pross@xvid.org>
Danny Smith
2004-12-02 05:36:22 +0000
ce71e000f1* include/features.h: Include sys/cdefs.h, like linux.
Christopher Faylor
2004-12-01 17:07:03 +0000
ea9af94bd3Add missing changelog entry.
Christopher Faylor
2004-12-01 15:07:20 +0000
576bfeeca8* syscalls.cc (truncate64): Don't second-guess errno if open fails.
Christopher Faylor
2004-12-01 15:00:40 +0000
ee58ee4a282004-11-29 Tomer Levi <Tomer.Levi@nsc.com>
Tomer Levi
2004-11-29 16:36:50 +0000
53af4f25f2* configure.in (hppa*-*-linux*): Don't add libgcj to noconfigdirs. (hppa*64*-*-*): Delete incorrect comment. * configure: Rebuilt.
John David Anglin
2004-11-26 23:57:58 +0000
60e4d52a552004-11-26 Paul Brook <paul@codesourcery.com>
Jeff Johnston
2004-11-26 16:43:35 +0000
a330d85a452004-11-26 Paul Brook <paul@codesourcery.com>
Jeff Johnston
2004-11-26 16:42:10 +0000
6903729981* environ.cc (putenv): Accommodate recent newlib change in argument to putenv.
Christopher Faylor
2004-11-26 04:21:47 +0000
8cb359d947* child_info.h (child_info_spawn::hexec_proc): Eliminate. * dcrt0.cc (dll_crt0_0): Remove hexec_proc stuff. * fork.cc (fork_child): Remove call to pinfo_fixup_after_fork. * pinfo.cc (set_myself): Close and zero pid_handle if set. (pinfo_fixup_after_fork): Delete. (proc_waiter): Don't close vchild.hProcess here. Do that when we are remove the vchild from procs. Save hProcess as pid_handle only on first reparent operation. (pinfo::wait): Don't set pid_handle here. (pinfo::alert_parent): Always try to send signal. If unsuccessful then close and zero wr_proc_pipe. * pinfo.h (pinfo::pinfo): Make sure that appropriate parts of the class are zeroed on construction. (pinfo::alert_parent): Take char argument. (pinfo_fixup_after_fork): Delete declaration. (hexec_proc): Ditto. * sigproc.cc (remove_proc): Close pid_handle and hProcess if appropriate. * spawn.cc (spawn_guts): Set cygheap->pid_handle on first exec. * cygheap.h (init_cygheap::pid_handle): New element. * pinfo.cc (set_myself): Clear previously existing cygheap->pid_handle when a new process has been started. (pinfo::wait): Make sure that a handle to the newly forked/spawned process is kept around so that the pid will not be reused. * pinfo.h (_pinfo::pid_handle): Move. (pinfo::pid_handle): to here. * spawn.cc (spawn_guts): Create a pid_handle in cygheap prior to spawning to ensure that the pid does not get reused during the lifetime of the "cygwin pid". * pinfo.h (pinfo::alert_parent): New function. * exceptions.cc (sig_handle_tty_stop): Use alert_parent to send "signals" to parent. * fork.cc (fork_parent): Don't close pi.hProcess. Let the waiter thread do that. * pinfo.cc (proc_waiter): Detect case where process exits without setting the exit code and use value from GetExitCodeProcess. Reluctantly implement __SIGREPARENT. (pinfo::alert_parent): Define. * sigproc.h (__SIGREPARENT): New enum. * spawn.cc (spawn_guts): Send reparent signal to parent on exec. Always create process in suspended state to avoid races. Remove cygthread.h in favor of cygtls.h throughout since cygtls now includes cygthread.h. Eliminate ppid_handle usage throughout. * child_info.h: Regenerate magic number (child_info): Remove pppid_handle. * cygthread.h (cygthread::release): New method. Frees thread without waiting. * cygthread.cc (cygthread::stub): Set _ctinfo in _mytls to point to information for executing thread. Don't call SetEvent if thread is no longer in use. (cygthread::simplestub): Ditto. * cygtls.h (_cygtls::_ctinfo): New element contains pointer to information about executing cygthread, if any. * dcrt0.cc: Remove last vestiges of per_thread stuff. (dll_crt0_0): Ditto. Remove accommodation for ppid_handle. (do_exit): Remove obsolete reparenting test. (_exit): Exit with a more SUSv3-like exit value. * dtable.cc (dtable::stdio_init): Check for myself->cygstarted rather than myself->ppid_handle to see if we were started by a cygwin process. * exceptions.cc (open_stackdumpfile): Ditto. (handle_exceptions): Ditto. (ctrl_c_handler): Ditto. (sig_handle_tty_stop): Ditto. Let parent send signal to itself on STOP. (sigpacket::process): Comment out vfork test. (signal_exit): Use more SUSv3-like exit value on signal. * external.cc (fillout_pinfo): Don't set hProcess. * fork.cc: Remove VFORK cruft. (per_thread::set): Delete. (fork_child): Remove perthread stuff. (fork_parent): Remove obsolete subproc_init. Accommodate new method for tracking subprocesses. * pinfo.cc (set_myself): Accommodate new pinfo/_pinfo layout. Set some things here that used to be set in wait_sig. (_pinfo::exit): Set exitcode here. Close process pipe. (_pinfo::commune_send): Accommodeate new pinfo/_pinfo layout. (proc_waiter): New function. Waits, in a thread for subprocess to go away. (pinfo::wait): New function. Initialization for proc_waiter. * pinfo.h (_pinfo::exitcode): New element. (_pinfo::cygstarted): Ditto. (_pinfo::wr_proc_pipe): Ditto. (_pinfo::ppid_handle): Delete. (_pinfo::hProcess): Delete. (_pinfo::lock): Delete. (pinfo::hProcess): New element. (pinfo::lock): Ditto. (pinfo::wait): Declare new function. (pinfo::preserve): Define new function. * sigproc.cc: Remove old stuff from wait_subproc thread based method. (zombies): Remove. (procs): New. (my_parent_is_alive): Just check that the parent pid exists. (mychild): Just use pinfo methods to determine if child is mine. (proc_subproc): Revamp PROC_ADDCHILD to use pinfo::wait. Remove PROC_CHILDTERMINATED logic. Use different method to remove processes from list when SIGCHLD == SIG_IGN. (proc_terminate): Gut. (subproc_init): Delete. (init_child_info): Remove setting of pppid_handle. (checkstate): Revamp to only scan procs array. (remove_proc): Rename from remove_zombie. Don't close hProcess or pid_handle. Don't release memory if it's myself. (stopped_or_terminated): Change logic to handle new consolidated proc/zombie array. (wait_subproc): Delete. * sigproc.h: Remove obsolete EXIT_* defines. (subproc_init): Remove declaration. * spawn.cc (spawn_guts): Remove reparenting stuff. Use standard wait logic to wait for child if started from a non-cygwin process. * tlsoffsets.h: Regenerate. * tty.cc (tty_init): Check for myself->cygstarted rather than myself->ppid_handle to see if we were started by a cygwin process. * include/sys/signal.h (external_pinfo::exitcode): Replace hProcess. * include/sys/wait.h (WCOREDUMP): Define. * fhandler_tty.cc (fhandler_tty_slave::read): Add debugging output for timeout case. * signal.cc (abort): Flag that we are exiting with the ABORT signal.
Christopher Faylor
2004-11-26 04:15:10 +0000
c1ab3396dcgas/ 2004-11-25 Jan Beulich <jbeulich@novell.com>
Jan Beulich
2004-11-25 08:42:54 +0000
9aa189be832004-11-24 Jeff Johnston <jjohnstn@redhat.com>
Jeff Johnston
2004-11-24 22:34:47 +0000
c41a1cb7d82004-11-24 Jeff Johnston <jjohnstn@redhat.com>
Jeff Johnston
2004-11-24 22:34:15 +0000
16ac96ee692004-11-24 Jeff Johnston <jjohnstn@redhat.com>
Jeff Johnston
2004-11-24 22:31:05 +0000
3bf091476a2004-11-23 Jeff Johnston <jjohnstn@redhat.com>
Jeff Johnston
2004-11-24 00:45:41 +0000
4b8e88e31dgas/ 2004-11-23 Jan Beulich <jbeulich@novell.com>
Jan Beulich
2004-11-23 07:55:12 +0000
c6fdc68916* select.cc (select_stuff::test_and_set): Remove extraneous tests of "window_handle".
Christopher Faylor
2004-11-22 15:38:17 +0000
7e33b8b32f2004-11-21 Benoit Blanchon <bblanchon@users.sourceforge.net>
Danny Smith
2004-11-21 23:55:55 +0000
d11206f65b* include/winnt.h (VerSetConditionMask): Correct typo in _WIN32_WINNT guard. * lib/kernel32.def (VerSetConditionMask): Correct stdcall suffix. * lib/ddk/ntoskrnl.def (VerSetConditionMask): Likewise.
Danny Smith
2004-11-21 19:45:25 +0000
2d2a0680872004-11-20 Pierre Humblet <pierre.humblet@ieee.org>
Pierre Humblet
2004-11-20 23:42:36 +0000
e70bea195b2004-11-20 Pierre Humblet <pierre.humblet@ieee.org>
Pierre Humblet
2004-11-20 19:09:19 +0000
0f0fcb042a2004-11-19 Shaun Jackman <sjackman@gmail.com>
Jeff Johnston
2004-11-20 01:42:35 +0000
225699ae46* include/winbase.h (PPROCESS_INFORMATION): Add typedef. (CreateProcessWithLogonW): Declare. (LOGON_WITH_PROFILE, LOGON_NETCREDENTIALS_ONLY): Add defines. Thanks to: "jkmaki" <jkmaki@users.sourceforge.net>
Danny Smith
2004-11-20 00:03:08 +0000
0409f19033include/opcode/ * msp430.h (struct rcodes_s, MSP430_RLC, msp430_rcodes, struct hcodes_s, msp430_hcodes): Move to gas/config/tc-msp430.c. gas/ * config/tc-msp430.c (struct rcodes_s, MSP430_RLC, msp430_rcodes, struct hcodes_s, msp430_hcodes): From include/opcode/msp430.h.
Alan Modra
2004-11-19 12:28:01 +0000
78f717651f* include/sspi.h (SecPkgContext_Sizes): Fix typo. Thanks to: David Leonard <leonard@users,sourceforge.net>
Danny Smith
2004-11-19 10:15:00 +0000
7fd30f5b15* include/sspi.h (SecPkgCredentials_Names[AW]): Correct name. Thanks to: David Leonard <leonard@users,sourceforge.net>
Danny Smith
2004-11-19 10:08:25 +0000
8f287205e82004-11-19 Magnus Olsen <greatlord@sourceforge.users.net>
Danny Smith
2004-11-19 09:42:46 +0000
1e7e1a9fd72004-11-19 Magnus Olsen <greatlord@sourceforge.users.net>
Danny Smith
2004-11-19 09:35:09 +0000
b359f9adfe2004-11-19 Benoit Blanchon <benoit.blanchon@free.fr>
Danny Smith
2004-11-19 08:30:26 +0000
3ff5506593* include/w32api.h (Windows95, etc. and IE3, etc.): Add definitions.
Earnie Boyd
2004-11-18 15:04:10 +0000
d26eb2a13b* cygcheck.cc (eprintf): New function.
Bas van Gompel
2004-11-18 05:20:23 +0000
1f8f7e2d54* libc/stdio/refill.c (__srefill): Try again after EOF on Cygwin. Clear EOF flag if successful.
Christopher Faylor
2004-11-17 17:02:10 +0000
cd1ab47e38* cygcheck.cc (find_on_path): Clear show_error and/or print_failed parameters to display_error. (rva_to_offset): Ditto. (dll_info): Ditto. (track_down): Ditto.
Bas van Gompel
2004-11-16 05:16:59 +0000
f247ebc36e2004-11-15 Kelley Cook <kcook@gcc.gnu.org> * install-sh, compile: Import from automake. * config.guess, config.sub: Import from savannnah.
DJ Delorie
2004-11-16 01:18:39 +0000
f3f23268febfd/ * elf-bfd.h (_bfd_elf_slurp_version_tables): Update prototype. * elf.c (_bfd_elf_print_private_bfd_data): Pass extra argument. (_bfd_elf_slurp_version_tables): Add extra argument. Create extra default version definition for unversioned symbols. * elfcode.h (elf_slurp_symbol_table): Pass extra argument. * elflink.c (elf_link_add_object_symbols): Pass extra argument to _bfd_elf_slurp_version_tables. Set default version for unversioned imported symbols. include/ * bfdlink.h (bfd_link_info): Add default_imported_symver. ld/ * ld.texinfo: Document --default-imported-symver. * ldmain.c (main): Set link_info.default_imported_symver. * lexsup.c (option_values): Add OPTION_DEFAULT_IMPORTED_SYMVER. (ld_options): Add --default-imported-symver. (parse_args): Handle OPTION_DEFAULT_IMPORTED_SYMVER.
Paul Brook
2004-11-15 23:21:26 +0000
b6fb961f47* Makefile.def: Add html support. * Makefile.tpl: Likewise. * Makefile.in: Regenerate.
Mike Stump
2004-11-13 17:42:50 +0000
87b838398a2004-11-13 Pierre Humblet <pierre.humblet@ieee.org>
Pierre Humblet
2004-11-13 16:30:19 +0000
95e3512d53* include/shlobj.h (SHGFP_TYPE): Add enum.
Danny Smith
2004-11-13 10:36:08 +0000
6f68e4938c2004-11-12 Lo�c Guilloux (glx@users.sourceforge.net>
Danny Smith
2004-11-13 03:42:40 +0000
390d719fbb2004-11-12 Bob Wilson <bob.wilson@acm.org>
Bob Wilson
2004-11-12 21:59:13 +0000
afaa92f981PR 18423 * configure.in: Remove all instances of build-fixincludes from noconfigdirs. (build_configargs): Supply --target to subdirectories. * configure: Regenerate.
Geoffrey Keating
2004-11-12 19:38:13 +0000
d7dbb7f8d8* include/ddk/winddk.h (ExAllocateFromPagedLookasideList, ExFreeToPagedLookasideList): Guard inline versions with (__USE_NTOSKRNL__) && (_WIN32_WINNT >= 0x0501). Declare as external functions for earlier _WIN32_WINNT.
Danny Smith
2004-11-12 08:26:44 +0000
e8248d0132* include/cygwin/version.h: Bump DLL minor number to 13.
Christopher Faylor
2004-11-11 16:26:13 +0000
213c7a7d94* cygcheck.cc: Change "keyeprint" to "display_error" throughout.
Christopher Faylor
2004-11-11 01:56:02 +0000
28fbe53af8* cygcheck.cc (main): Allow a '-l' without an additional argument.
Christopher Faylor
2004-11-11 01:52:33 +0000
5ccf388ed8* cygcheck.cc (keyeprint): New optional parameters: show_error and print_failed.
Bas van Gompel
2004-11-11 01:17:29 +0000
eaec5f301f* include/ras.h (RASCONN[AW]): Remove dwSessionId field.
Danny Smith
2004-11-10 20:05:01 +0000
9507f00e68* include/winnls.h (WINBASEAPI): Define as DECLSPEC_IMPORT. if undefined. and __W32API_USE_DLLIMPORT__. Add WINBASEAPI token to prototypes, throughout.
Danny Smith
2004-11-09 09:06:03 +0000
c8199f17e2* config-ml.in: Pass FCFLAGS for multilibs, handle GFORTRAN like CC.
David Edelsohn
2004-11-08 15:28:01 +0000
7cd0c32b80Add support fpr MAXQ processor
Nick Clifton
2004-11-08 13:17:39 +0000
65fb2e4311* include/winnt.h (GetCurrentFiber): Support -masm=intel. (GetFiberData): Likewise. (NtCurrentTeb): Likewise.
Danny Smith
2004-11-08 10:08:13 +0000
7e9d30a43fFix support for PECOFF weak symbols
Nick Clifton
2004-11-08 08:12:40 +0000
d356aef3c42004-11-05 H.J. Lu <hongjiu.lu@intel.com>
H.J. Lu
2004-11-05 23:14:30 +0000
38b33663ac2004-11-05 Paolo Bonzini <bonzini@gnu.org>
Paolo Bonzini
2004-11-05 16:36:20 +0000
116a99648d2004-11-05 Tomer Levi <Tomer.Levi@nsc.com>
Tomer Levi
2004-11-05 10:59:16 +0000