summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* * autoload.cc (CoInitialize): Remove.Corinna Vinschen2005-01-183-75/+163
| | | | | | | | | | | | | | | | | (CoUninitialize): Remove. (CoCreateInstance): Remove. (CoTaskMemFree): Add. (SHGetDesktopFolder): Add. * path.cc (shortcut_header): Remove. (shortcut_initalized): Remove. (GUID_shortcut): New static GUID. (struct win_shortcut_hdr): New struct describing Windows shortcut header structure. (symlink_worker): Rewrite creating Windows shortcuts. Create ITEMIDLIST if target exists. Only write once. (cmp_shortcut_header): Use win_shortcut_hdr structure for comparison. (check_shortcut): Rewrite to read only once from file. Allow skipping an ITIMIDLIST in the file.
* * lib/user32.def (MonitorFromPoint}: Correct suffix.Danny Smith2005-01-182-1/+5
|
* Fix SH2A machine variants in order to correctly select instruction inheritanceNick Clifton2005-01-172-2/+17
|
* * include/sys/stat.h (struct __stat64): Change st_size type toDanny Smith2005-01-173-2/+8
| | | | | __int64. * include/wchar.h (struct __stat64): Change st_size type to __int64.
* * pinfo.h (maybe_set_exit_code_from_windows): Renamed from set_exit_state.Christopher Faylor2005-01-174-11/+35
| | | | | | | | | | * pinfo.cc (pinfo::exit): Use renamed function. (proc_waiter): Ditto. Make a copy of input argument to avoid problems when procs array is shuffled. Flag when copy is made so that remove_proc knows when it is safe to reshuffle. * sigproc.cc (proc_terminate): Don't flag process_state as PID_EXITED. (remove_proc): Wait for waiter to finish copying pinfo element before moving it (an actual wait should be an extremely rare event).
* * ps.cc (main): Eliminate use of PID_ZOMBIE.Christopher Faylor2005-01-163-3/+22
| | | | | | | * strace.cc (main): Recognize new option for displaying hex value of strace type. (handle_output_debug_string): Prepend output with hex value of strace message if -H is specified.
* * init.cc (dll_entry): Remove unused extern.Christopher Faylor2005-01-168-31/+51
| | | | | | | | | | | | | | | | | | | | | | * include/sys/cygwin.h: Remove PID_ZOMBIE. * pinfo.h: Rename EXITCODE_* defines. (pinfo::set_exit_state): Remove parameter. * pinfo.cc (set_exit_state): Remove parameter. Reverse sense of test so that exitcode is checked for having been set rather than not having been set. Set flag when exitcode has been established. Don't set PID_STATE here. (pinfo::init): Remove exitcode initialization. (pinfo::exit): Reflect change in EXITCODE_* naming. Set flag when exitcode has been established. Reflect change in arguments to set_process_state. (proc_waiter): Reflect change in arguments to set_process_state. Set process_state here and only here. * fhandler_process.cc (fhandler_process::fill_filebuf): Reflect removal of PID_ZOMBIE define. (format_process_stat): Ditto. (format_process_status): Ditto. * sigproc.cc (pid_exists): Ditto. (stopped_or_terminated): Ditto. Make sure that only low-order 16 bits of exitcode are used. * spawn.cc (spawn_guts): Reflect change in EXITCODE_* naming.
* * sigproc.cc (sig_send): Don't complain if attempt to send signal to myselfChristopher Faylor2005-01-152-2/+7
| | | | fails after I've "execed".
* 2005-01-14 Hans-Peter Nilsson <hp@axis.com>Jeff Johnston2005-01-152-2/+8
| | | | | | * libnosys/warning.h (__make_section_unallocated) [HAVE_ASM_PREVIOUS_DIRECTIVE, HAVE_ASM_POPSECTION_DIRECTIVE]: Use "\n" instead of ";" to delimit assembly lines.
* * fhandler_disk_file.cc (fhandler_disk_file::facl): Pretend successfulCorinna Vinschen2005-01-144-6/+58
| | | | | | | SETACL if no acls are available. * fhandler.cc (fhandler_base::facl): Implement to return sensible values on GETACL and GETACLCNT. Pretend successful SETACL. * fhandler_virtual.cc (fhandler_virtual::facl): Ditto.
* * fhandler.h (fhandler_disk_file::touch_ctime): Declare.Corinna Vinschen2005-01-133-14/+63
| | | | | | | | | * fhandler_disk_file.cc (fhandler_disk_file::touch_ctime): New method to set file's ctime. (fhandler_disk_file::fchmod): Try opening file for writing first. Set file's ctime on success. (fhandler_disk_file::fchown): Ditto. (fhandler_disk_file::facl): Ditto.
* * pinfo.cc (pinfo::exit): Don't access self after releasing it.Corinna Vinschen2005-01-133-3/+13
| | | | | * path.h (path_conv::path_conv): Fill path with native device name in case of device argument.
* * fhandler_serial.cc (fhandler_serial::dup): Call overlapped_setupCorinna Vinschen2005-01-132-1/+6
| | | | for child, not for parent.
* * include/_mingw.h: Increment version to 3.7.Earnie Boyd2005-01-133-3/+5
| | | | * Makefile.in: Ditto.
* * init.cc (dll_entry): Nuke attempt to set exit code since parent will useChristopher Faylor2005-01-133-6/+8
| | | | | | windows exit code if needed. * pinfo.cc (pinfo::exit): Move release() here to minimize pid creation race (suggested by Pierre Humblet).
* * include/sys/stat.h (_S_IFLNK, S_IFLNK, _S_ISLNK, S_ISLNK, _lstat,Earnie Boyd2005-01-133-24/+6
| | | | | lstat): Remove. * include/errno.h (ELOOP): Ditto.
* 2005-01-13 Benoit Blanchon <bblanchon@users.sourceforge.net>Danny Smith2005-01-132-4/+18
| | | | | | | * include/wininet.h (InternetCheckConnectionA, InternetCheckConnectionW) Add prototypes. (INTERNET_RAS_INSTALLED, INTERNET_CONNECTION_OFFLINE, INTERNET_CONNECTION_CONFIGURED): Add defines.
* Reorganize header file inclusion throughout so that cygerrno.h comes first.Christopher Faylor2005-01-1223-32/+51
| | | | | | | | | | * fhandler.h (select_record::thread_errno): Save any encountered errno here. (select_record::set_select_errno): New function. (select_record::saw_error): New function. (select_record::select_record): Initialize thread_errno to zero. * select.cc (set_handle_or_return_if_not_open): Set thread_errno on failure. (select_stuff::wait): Record errno for later resurrection in calling thread. (peek_serial): Ditto.
* Add missing changelog entry.Christopher Faylor2005-01-121-0/+4
|
* * pinfo.cc (pinfo::exit): Don't assume that this == myself.Christopher Faylor2005-01-123-6/+6
|
* include/elf/Alan Modra2005-01-122-2/+9
| | | | | | | | | | | * ppc.h (R_PPC_RELAX32_PLT, R_PPC_RELAX32PC_PLT): Define. (R_PPC_RELAX32, R_PPC_RELAX32PC): Adjust value. bfd/ * elf32-ppc.c (ppc_elf_howto_raw): Delete RELAX32* entries. (ppc_elf_relax_section): Use PLT variants of RELAX32 relocs for reaching PLT. (ppc_elf_relocate_section): Handle R_PPC_RELAX32_PLT and R_PPC_RELAX32PC_PLT.
* * include/tchar.h (_tfreopen): Add UNICODE mappings.Danny Smith2005-01-122-0/+6
|
* 2005-01-11 Pierre Humblet <pierre.humblet@ieee.org>Pierre Humblet2005-01-112-7/+19
| | | | | | | | | * mkpasswd.c (print_win_error): Transform into macro. (_print_win_error): Upgrade former print_win_error by printing the line. (current_user): Call _print_win_error. (enum_users): Print name in case of lookup failure. (enum_local_groups): Ditto.
* * pinfo.cc (pinfo::init): Don't close input handle on temporary (?) failure.Christopher Faylor2005-01-112-1/+7
|
* revert previous erroneous checkin.Christopher Faylor2005-01-111-2/+2
|
* * pinfo.h (_pinfo::set_exit_state): Declare new function.Christopher Faylor2005-01-1110-101/+150
| | | | | | | | | | | | | | | | | | | | | | | | | | (pinfo::exit): Move here from _pinfo::exit. * sigproc.cc (child_info::sync): Use new function to set exitcode and process_state. * pinfo.cc (_pinfo::exit): Ditto. (proc_waiter): Ditto. (_pinfo::set_exit_state): Define new function. (_pinfo::dup_proc_pipe): Close handle when there is no parent process around to care about the exit value. * dcrt0.cc (dll_crt0_0): Move subproc_ready synchronization later to make sure that myself is still mapped in parent. (do_exit): Reflect movement to pinfo::exit. (__api_fatal): Ditto. * exceptions.cc (signal_exit): Ditto. * errno.cc (errmap): Map PROC_NOT_FOUND. * init.cc (dll_entry): Release myself before exiting. * sigproc.cc (proc_can_be_signalled): Set errno appropriately. (sig_send): Ditto. Also remove ill-advised test for !myself->sendsig since this is an indication of a process which is still initializating -- it is not an error. (child_info::sync): Don't set exitcode here. Assume that will happen in proc_waiter, if necessary. * spawn.cc (spawn_guts): Delay "wait_for_myself" logic until later. Don't wait at all if the process has already exited. Reflect movement to pinfo::exit.
* * include/sys/stat.h (_S_IFLNK, S_IFLNK, _S_ISLNK, S_ISLNK, _lstat,Earnie Boyd2005-01-112-1/+24
| | | | lstat): Conditionalize defines for __STRICT_ANSI__.
* * ChangeLog: Split and create ChangeLog-2004.Corinna Vinschen2005-01-112-3848/+3848
|
* * environ.cc: Yes, yes, the copyright date, as usual.Corinna Vinschen2005-01-111-1/+1
|
* * environ.cc (build_env): Disallow empty strings and strings startingCorinna Vinschen2005-01-112-0/+13
| | | | with '=' in Win32 environment.
* * include/errno.h (ELOOP): Add definition.Earnie Boyd2005-01-102-0/+6
|
* Add support for maxq10 and maxq20 machine valuesNick Clifton2005-01-102-4/+13
|
* Fix typo.Jeff Johnston2005-01-101-1/+1
|
* * fhandler_disk_file.cc: Fix copyright date.Corinna Vinschen2005-01-101-1/+2
|
* 2005-01-07 Chris Sutcliffe <ir0nh34d@users.sourceforge.net>Chris Sutcliffe2005-01-103-0/+16
| | | | | | | * include/commctrl.h (ComboBox_SetMinVisible, ComboBox_GetMinVisible): Added Macros. * include/winuser.h (CB_SETMINVISIBLE, CB_GETMINVISIBLE): Added definitions.
* binutils/:Andreas Schwab2005-01-102-0/+17
| | | | | | | | | | | | | | | | | | | | | * configure.in: Don't define SKIP_ZEROES. * configure: Regenerate. * objdump.c (disassemble_data): Set skip_zeroes and skip_zeroes_at_end in disasm_info to defaults. (DEFAULT_SKIP_ZEROES): Rename from SKIP_ZEROES and always define. (DEFAULT_SKIP_ZEROES_AT_END): Rename from SKIP_ZEROES_AT_END and always define. (disassemble_bytes): Use skip_zeroes and skip_zeroes_at_end from objdump_disasm_info. include/: * dis-asm.h (struct disassemble_info): Add skip_zeroes and skip_zeroes_at_end. opcodes/: * disassemble.c (disassemble_init_for_target) <case bfd_arch_ia64>: Set skip_zeroes to 16. <case bfd_arch_tic4x>: Set skip_zeroes to 32.
* * mingwex/complex/(cabsl.c cacosl.c cacoshl.c cargl.c casinl.cDanny Smith2005-01-1024-14/+682
| | | | | | | | | | | | casinhl.c catanl.c catanhl.c ccosl.c ccoshl.c cexpl.c cimagl.c clogl.c cpowl.c cprojl.c creall.c csinl.c csinhl.c csqrtl.c ctanl.c ctanhl.c): New files. * mingwex/Makefile.in (COMPLEX_DISTFILES): Adjust. (COMPLEX_OBJS): Adjust. * include/complex.h (cabsl, cacosl, cacoshl, cargl, casinf. casinhl, catanl, catanhl, ccosl, ccoshl, cexpl, cimagl, clogl, cpowl, cprojl, creall, csinl, csinhl, csqrtl, ctanl, ctanhl): Declare.
* * cygrun.c (main): Fix exit code so that it reflects UNIX style.Christopher Faylor2005-01-103-1/+9
| | | | * winsup.api/ltp/fork04.c (setup): Accommodate change in putenv declaration.
* 2005-01-08 Pierre Humblet <pierre.humblet@ieee.org>Pierre Humblet2005-01-082-16/+18
| | | | | * syscalls.cc (seteuid32): Only change the default dacl when seteuid succeeds. Do not close HKCU.
* Fix typo.Jeff Johnston2005-01-071-1/+1
|
* 2005-01-07 Paul Brook <paul@codesourcery.com>Jeff Johnston2005-01-079-4/+147
| | | | | | | | | | | * configure.in: Add test for .init_array. * configure: Regenerate. * newlib.hin: Add HAVE_INITFINI_ARRAY. * libc/misc/Makefile.am: Add init.c * libc/misc/Makefile.in: Regenerate. * libc/misc/init.c: New file. * libc/sys/arm/crt0.S: Call __libc_{init,fini}_array instead of _init/_fini if they exist.
* 2005-01-07 Paul Brook <paul@codesourcery.com>Jeff Johnston2005-01-072-0/+11
| | | | | * arm/crt0.S: Call __libc_{init,fini}_array instead of _init/_fini if they exist.
* * fhandler_process.cc: Fix copyright date.Corinna Vinschen2005-01-071-1/+1
|
* 2005-01-06 Jeff Johnston <jjohnstn@redhat.com>Jeff Johnston2005-01-065-9/+73
| | | | | | | | | * libc/stdlib/strtod.c (_strtod_r): Add NaN support. * (strtof): Ditto. * libc/stdio/vfscanf.c (__svfscanf_r): Ditto. * Makefile.am (MATHOBJS_IN_LIBC): Add s_nan and sf_nan functions for use by strtod and strtof. * Makefile.in: Regenerated.
* * fhandler_process.cc: Use strcasematch instead of strcasecmpCorinna Vinschen2005-01-062-3/+8
| | | | throughout.
* * syscalls.cc (rename): Fix behaviour in case of renaming directoriesCorinna Vinschen2005-01-062-11/+68
| | | | according to SUSv3.
* 2005-01-06 Hans-Peter Nilsson <hp@axis.com>Jeff Johnston2005-01-062-1/+6
| | | | | * libc/stdio/ftell.c (ftell_r): Add parenthesis for __SWR bit-test in combination with NULL test.
* Add missing ChangeLog entry for 1.13.0 release.Jeff Johnston2005-01-061-0/+17
| | | | | | | | | | | | | | | | | | | 2004-12-17 Jeff Johnston <jjohnstn@redhat.com> * NEWS: Update with 1.13.0 info. * README: Ditto. * acinclude.m4: Change version number to 1.13.0. * aclocal.m4: Regenerated. * configure: Ditto. * doc/aclocal.m4: Ditto. * doc/configure: Ditto. * libc/*/aclocal.m4: Ditto. * libc/*/configure: Ditto. * libc/libc.texinfo: Ditto. * libm/*/aclocal.m4: Ditto. * libm/*/configure: Ditto. * libm/libm.texinfo: Ditto. * libc/sys/linux/shared.ld: Add VERS_1.13.
* 2005-01-06 Hans-Peter Nilsson <hp@axis.com>Jeff Johnston2005-01-062-3/+7
| | | | * README: Fix typo of LGPL. Change "license" to "copyright".
* * fhandler_disk_file.cc (fhandler_base::open_fs): Don't allowCorinna Vinschen2005-01-062-0/+13
| | | | opening directories for writing.