diff options
author | Christopher Faylor <me@cgf.cx> | 2012-06-17 20:50:24 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2012-06-17 20:50:24 +0000 |
commit | 4ae63783821bd2114246166957d25b2acd26c875 (patch) | |
tree | 0b7972e9330fa3a3f863621afd18643e485a151f /winsup/cygwin/Makefile.in | |
parent | d66ef282c2473d7df911e6d7d6ef1fc778777097 (diff) | |
download | newlib-4ae63783821bd2114246166957d25b2acd26c875.zip newlib-4ae63783821bd2114246166957d25b2acd26c875.tar.gz newlib-4ae63783821bd2114246166957d25b2acd26c875.tar.bz2 |
Add '#include "cygwait.h"' throughout, where appropriate.
* DevNotes: Add entry cgf-000012.
* Makefile.in (DLL_OFILES): Add cygwait.o.
* sigproc.h: Remove cygwait definitions.
* cygwait.h: New file. Define/declare Cygwin waitfor functions.
* cygwait.cc: Ditto.
* exceptions.cc: Include cygwait.h.
(handle_sigsuspend): Accommodate change in cancelable_wait arguments.
(sigpacket::process): Display thread tls in debugging output.
* fhandler.cc (fhandler_base_overlapped::wait_overlapped): Use symbolic names
for signal and cancel return.
* fhandler_console.cc (fhandler_console::read): Ditto.
(fhandler_dev_dsp::Audio_out::waitforspace): Ditto.
fhandler_dev_dsp::Audio_in::waitfordata): Ditto.
* fhandler_fifo.cc (fhandler_fifo::wait): Ditto.
* fhandler_serial.cc (fhandler_serial::raw_read): Ditto.
* fhandler_tty.cc (fhandler_pty_slave::read): Ditto.
* select.cc (cygwin_select): Ditto.
* wait.cc (wait4): Ditto.
* thread.cc (cancelable_wait): Move definition to cygwait.h.
(pthread_cond::wait): Accommodate change in cancelable_wait arguments.
(pthread_mutex::lock): Ditto.
(pthread_spinlock::lock): Ditto.
(pthread::join): Ditto.
(pthread::thread_init_wrapper): Display tls in debugging output.
(semaphore::_timedwait): Ditto.
* thread.h (cw_sig_wait): Move to cygwait.h.
(cw_cancel_action): Delete.
(cancelable_wait): Move declaration to cygwait.h.
Diffstat (limited to 'winsup/cygwin/Makefile.in')
-rw-r--r-- | winsup/cygwin/Makefile.in | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/winsup/cygwin/Makefile.in b/winsup/cygwin/Makefile.in index e65b440..2aedb1c 100644 --- a/winsup/cygwin/Makefile.in +++ b/winsup/cygwin/Makefile.in @@ -133,16 +133,16 @@ MALLOC_OFILES:=@MALLOC_OFILES@ DLL_IMPORTS:=$(w32api_lib)/libkernel32.a $(w32api_lib)/libntdll.a MT_SAFE_OBJECTS:= -# Please maintain this list in sorted order, with maximum files per 86 col line # DLL_OFILES:=advapi32.o assert.o autoload.o bsdlib.o ctype.o cxx.o cygheap.o \ - cygthread.o cygtls.o cygxdr.o dcrt0.o debug.o devices.o dir.o dlfcn.o \ - dll_init.o dtable.o environ.o errno.o exceptions.o exec.o external.o \ - fcntl.o fenv.o fhandler.o fhandler_clipboard.o fhandler_console.o \ - fhandler_dev.o fhandler_disk_file.o fhandler_dsp.o fhandler_fifo.o \ - fhandler_floppy.o fhandler_mailslot.o fhandler_mem.o fhandler_netdrive.o \ - fhandler_nodevice.o fhandler_proc.o fhandler_process.o fhandler_procnet.o \ - fhandler_procsys.o fhandler_procsysvipc.o fhandler_random.o fhandler_raw.o \ + cygthread.o cygtls.o cygwait.o cygxdr.o dcrt0.o debug.o devices.o \ + dir.o dlfcn.o dll_init.o dtable.o environ.o errno.o exceptions.o \ + exec.o external.o fcntl.o fenv.o fhandler.o fhandler_clipboard.o \ + fhandler_console.o fhandler_dev.o fhandler_disk_file.o fhandler_dsp.o \ + fhandler_fifo.o fhandler_floppy.o fhandler_mailslot.o fhandler_mem.o \ + fhandler_netdrive.o fhandler_nodevice.o fhandler_proc.o \ + fhandler_process.o fhandler_procnet.o fhandler_procsys.o \ + fhandler_procsysvipc.o fhandler_random.o fhandler_raw.o \ fhandler_registry.o fhandler_serial.o fhandler_socket.o fhandler_tape.o \ fhandler_termios.o fhandler_tty.o fhandler_virtual.o fhandler_windows.o \ fhandler_zero.o flock.o fnmatch.o fork.o fts.o ftw.o getopt.o glob.o \ |