summaryrefslogtreecommitdiffstats
path: root/winsup
Commit message (Collapse)AuthorAgeFilesLines
...
* * fhandler_dsp.cc (fhandler_dev_dsp::Audio_out::write): SetCorinna Vinschen2012-02-092-1/+8
| | | | | bytes_to_write to 0 in case it fits into the buffer, otherwise suffer early EOF in caller.
* * dll_init.h (struct dll): Re-add modname.Corinna Vinschen2012-02-093-28/+36
| | | | | | | | * dll_init.cc: Throughout, use modname where it was used before. (dll_list::operator[]): Use modname. Move comment from dll_list::alloc here and remove hint about GetModuleBaseNameW. (dll_list::alloc): Store full path in name, pointer to basename in modname. Search dll using modname.
* * passwd.cc: Add -v option to print version information as well, sinceCorinna Vinschen2012-02-092-2/+9
| | | | it's used in older csih.
* *** empty log message ***Corinna Vinschen2012-02-092-2/+2
|
* * dtable.cc (dtable::init_std_file_from_handle): Reinstate opening tty handlesChristopher Faylor2012-02-093-2/+7
| | | | with O_RDWR permissions.
* * thread.cc (__pthread_cond_wait_init): New static function replacingCorinna Vinschen2012-02-082-5/+21
| | | | | | | | | __pthread_cond_dowait. Only check and potentially initialize cond and mutex, drop call to (*cond)->wait. (pthread_cond_timedwait): Replace call to __pthread_cond_dowait with separate calls to __pthread_cond_wait_init and (*cond)->wait to be able to initialize cond before accessing its clock_id member. (pthread_cond_wait): Ditto (more or less).
* * include/sys/wait.h: Remove C++ inline functions for `union wait'. For C++Christopher Faylor2012-02-082-16/+16
| | | | | use `void *' as __wait_status_ptr_t instead. This is less type safe but fixes compile error on `wait(NULL)'. Remove extra `;'.
* * sigproc.cc (child_info_fork::abort): Call TerminateProcess ratherCorinna Vinschen2012-02-082-2/+7
| | | | than ExitProcess.
* * uinfo.cc (cygheap_user::env_userprofile): Simplify since networkCorinna Vinschen2012-02-082-9/+6
| | | | drives are not supported here.
* * uinfo.cc (cygheap_user::env_userprofile): Convert nativeCorinna Vinschen2012-02-082-1/+14
| | | | userprofile path returned from get_registry_hive_path to Win32 path.
* * dll_init.cc: Throughout, drop usage of modname in favor of name.Corinna Vinschen2012-02-083-50/+37
| | | | | | | (dll_list::find_by_modname): Remove. (dll_list::alloc): Only store module basename in name. Add comment to explain why. Simplify address check. Fix formatting in comment. * dll_init.h (struct dll): Drop modname and find_by_modname.
* * dll_init.cc (dll_list::alloc): Add DLL name to fabort output. FixCorinna Vinschen2012-02-082-8/+13
| | | | fabort string in case of bss start.
* * include/sys/sysmacros.h: Include sys/types.h.Corinna Vinschen2012-02-082-1/+7
|
* * faq-using.xml (faq.using.sshd-in-domain): Document autoload errorCorinna Vinschen2012-02-082-2/+18
| | | | | 1114 when loading user32.dll as potential problem when not using a domain service account.
* * mount.cc (mount_info::create_root_entry): Fix format specifier inCorinna Vinschen2012-02-072-2/+7
| | | | api_fatal message.
* * include/process.h: Move here from include/cygwin subdir.Corinna Vinschen2012-02-075-3/+11
| | | | | | | * exec.cc: Change include of process.h to reflect the fact that it's now back in include. * spawn.cc: Ditto. * syscalls.cc: Ditto.
* * cygheap.cc (init_cygheap::manage_console_count): Delete.Christopher Faylor2012-02-079-35/+49
| | | | | | | | | | | | | | | | | | | * cygheap.h (init_cygheap::manage_console_count): Ditto. (init_cygheap::console_count): Ditto. * fhandler.h (fhandler_console::has_a): Ditto. (fhandler_console::free_console): Declare new function. * fhandler_console.cc (fhandler_console::free_console): Define new function. (fhandler_console::open_setup): Delete call to manage_console_count. (fhandler_console::close): Ditto. Replace with call to free_console(). * fhandler_tty.cc (fhandler_pty_slave::open): Delete call to manage_console_count. (fhandler_pty_slave::cleanup): Ditto. (fhandler_pty_slave::close): Call fhandler_console::free_console() if this is our controlling tty. * pinfo.cc (_pinfo::set_ctty): Skip function if tty in question == our ctty. Delete call to manage_console_count. * syscalls.cc (close_all_files): Avoid locking and avoid setting errno when iterating over fds.
* * include/cygwin/version.h: Bump CYGWIN_VERSION_DLL_MINOR to 11.Christopher Faylor2012-02-072-1/+5
|
* * new-features.sgml (ov-new1.7.10): Fix typo.Corinna Vinschen2012-02-052-1/+5
|
* * legal.sgml: Fix copyright.Corinna Vinschen2012-02-052-1/+5
|
* *** empty log message ***Corinna Vinschen2012-02-051-17/+12
|
* * setup2.sgml: Fix more typos.Corinna Vinschen2012-02-043-2/+7
| | | | * setup-net.sgml: Ditto.
* * utils.sgml: Fix typos.Corinna Vinschen2012-02-042-7/+11
|
* * faq-using.xml: Fix typos.Corinna Vinschen2012-02-046-17/+20
| | | | | | | | * ntsec.sgml: Ditto. * pathnames.sgml: Ditto. * setup2.sgml: Ditto. * setup-net.sgml: Ditto. (setup-dir): Drop paragraph on Unix/DOS file mode.
* * grp.cc (pwdgrp::parse_group): Convert grp from macro to reference.Corinna Vinschen2012-02-033-6/+10
| | | | * passwd.cc (pwdgrp::parse_passwd): Ditto for res.
* * syscalls.cc (close_all_files): Use cygheap_fdget to manipulate fhandler. UseChristopher Faylor2012-02-022-14/+19
| | | | debug_only_printf.
* Fix memory and handle leaks due to fdopendir:Corinna Vinschen2012-02-025-24/+112
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * dir.cc (closedir): Call global close instead of just releasing the fhandler. * fhandler_disk_file.cc (fhandler_disk_file::closedir): Don't close fhandler handle here, rely on global closedir doing the right thing. * fhandler_registry.cc (fhandler_registry::readdir): Also delete d_hash when closing registry key. (fhandler_registry::rewinddir): Ditto. Avoid infinite recursion in VirtualStore under UAC: * fhandler_registry.cc (VIRT_CLASSES_KEY_PREFIX): Define. (VIRT_CLASSES_KEY_SUFFIX): Ditto. (VIRT_CLASSES_KEY): Ditto. (VIRT_CLASSES_LINKTGT): Ditto. (fhandler_registry::exists): Return virt_symlink as file type if this is a Classes key under the VirtualStore. (fhandler_registry::fstat): Handle virt_symlink. (fhandler_registry::readdir): Return DT_LNK as d_type if this is a Classes key under the VirtualStore. (fhandler_registry::fill_filebuf): Handle Classes symlink. Handle user impersonation in /proc/registry access: * autoload.cc (RegOpenUserClassesRoot): Define. (RegOpenCurrentUser): Define. * fhandler_registry.cc (RegOpenUserClassesRoot): Declare function missing in w32api. (RegOpenCurrentUser): Ditto. (fetch_hkey): New function. (fhandler_registry::open): Call fetch_hkey to get root registry key. (open_key): Ditto.
* More performance enhancements and POSIX compliance corrections.Keith Marshall2012-02-012-221/+260
|
* Grr. Fix another typo.Christopher Faylor2012-02-011-1/+1
|
* * fcntl.cc (fcntl64): Add introductory debug statement. Call dup3 directoryChristopher Faylor2012-02-012-3/+12
| | | | via dtable method to avoid over-incrementing refcnt.
* * dtable.cc (dtable::dup_worker): Add comment explaining why refcnt isn'tChristopher Faylor2012-02-013-5/+17
| | | | | | incremented here. (dtable::dup3): Simplify slightly. Add comment. * syscalls.cc (dup3): Increment refcnt here, similarly to dup2.
* fix typoChristopher Faylor2012-02-011-1/+1
|
* * fhandler.cc (fhandler_base_overlapped::has_ongoing_io): Don't blockChristopher Faylor2012-02-013-48/+46
| | | | | | | GetOverlappedResult since previous IsEventSignalled will have reset the handle. * select.cc (cygwin_select): Remove space before parentheses in syscall debugging output. (pipe_data_available): Streamline if block.
* * syscalls.cc (dup3): Fix debug typo.Christopher Faylor2012-01-313-8/+19
| | | | | | | * fhandler.cc (flush_async_io): Assume only called for writer. Call GetOverlappedResult directly rather than kluding call to has_ongoing_io. (fhandler_base_overlapped::close): Only start flush thread when closing write handle. Only cancel I/O when reading.
* * strace.cc (proc_child): Don't right-shift exit value.Christopher Faylor2012-01-312-4/+9
| | | | (main): Call ExitProcess() to exit exactly the same way as any straced child.
* * tzset.c: Throughout use wide characters to be locale agnostic.Corinna Vinschen2012-01-292-470/+475
| | | | (main): Call setlocale.
* * Makefile.in (CYGWIN_BINS): Add tzset.Corinna Vinschen2012-01-297-1/+765
| | | | | | | | | * tzset.c: New tool, new file. * utils.sgml (tzset): New section. * new-features.sgml (ov-new1.7.10): Add tzset. * release/1.7.10: Add tzset.
* * cygwin.din: Fix order (DATA first).Corinna Vinschen2012-01-282-4/+8
|
* * dcrt0.cc (is_dos_path): New macro to recognize drive letter and UNCCorinna Vinschen2012-01-272-5/+14
| | | | | DOS paths. (globify): Call is_dos_path instead of isdrive.
* * sigproc.cc (child_info::retry_count): Actually that should have been 0.Christopher Faylor2012-01-262-1/+6
|
* * sigproc.cc (child_info::retry_count): Default to 1.Christopher Faylor2012-01-262-1/+5
|
* * pathnames.sgml (mount-table): Rephrase a few expressions forCorinna Vinschen2012-01-242-7/+17
| | | | clearness.
* * ldd.cc (start_process): Handle .oct and .so as DLLs.Yaakov Selkowitz2012-01-242-1/+9
|
* * syscalls.cc (gethostid): Simplify. Just fetch MachineGuid andCorinna Vinschen2012-01-232-114/+24
| | | | create hash from there.
* * fhandler.h (fhandler_fifo::arm): Declare new function.Christopher Faylor2012-01-224-20/+49
| | | | | | | | | * fhandler_fifo.cc (fhandler_fifo::arm): Define new function. (fhandler_fifo::open): Fix handling of RDWR pipes to avoid opening a second handle. Use arm() function to set events. (fhandler_fifo::raw_read): Correctly go into "connect again logic" when we detect another writer is available. Use arm() function to set event. * pipe.cc (fhandler_pipe::create): Add more detail to debugging output.
* clarify wordingChristopher Faylor2012-01-221-1/+1
|
* * cygheap.h (cygheap_fdmanip::release): Simplify.Christopher Faylor2012-01-225-28/+19
| | | | | | | | * dtable.cc (dtable::release): Make void again. Skip not_open check since it is guaranteed to be open. Don't bother deleting here since actual deletion will be handled in cygheap_fdget::~cygheap_fdget. * dtable.h (dtable::release): Make void again. * syscalls.cc (dup2): Bump fhandler use count on successful dup.
* * cygheap.h (cygheap_fdget::~cygheap_fdget): Simplify now that refcnt reportsChristopher Faylor2012-01-227-16/+36
| | | | | | | | | | | reference count changes itself. * fhandler.cc (fhandler_base::reset): Set _refcnt to 0. * fhandler.h (fhandler_base::refcnt): Report refcnt when debugging. * select.cc (cygwin_select): Set return_on_signal to indicate when select should be interrupted. (select_stuff::wait): Keep looping unless return_on_signal is set. * select.h (select_stuff::return_on_signal): New variable. (select_stuff::select_stuff): Zero return_on_signal.
* * fhandler.h (fhandler_registry::opendir): Declare.Corinna Vinschen2012-01-203-0/+14
| | | | * fhandler_registry.cc (fhandler_registry::opendir): New function.
* Correct misused 'rm -r' command in uninstall rules.Keith Marshall2012-01-164-3/+11
|