diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2005-05-10 20:56:07 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2005-05-10 20:56:07 +0000 |
commit | 13505ca8fce1c22a7f124314a07b4ecbb62bee22 (patch) | |
tree | b106d7bea11ff8519a23d3955c7d4faa20c75f3c /winsup/cygwin/Makefile.in | |
parent | a586e5b6ae64fc46496249b2fd35bec613e3a724 (diff) | |
download | cygnal-13505ca8fce1c22a7f124314a07b4ecbb62bee22.tar.gz cygnal-13505ca8fce1c22a7f124314a07b4ecbb62bee22.tar.bz2 cygnal-13505ca8fce1c22a7f124314a07b4ecbb62bee22.zip |
* Makefile.in (DLL_OFILES): Add fhandler_mailslot.o.
* devices.h (FH_KMSG): Define new device.
* devices.in: Add "/dev/kmsg" entry.
* devices.cc: Regenerate.
* dtable.cc (build_fh_pc): Handle case FH_KMSG.
* fhandler.h (class fhandler_mailslot): New class.
(class select_stuff): Add device_specific_mailslot pointer.
* fhandler_mailslot.cc: New file.
* select.cc (peek_mailslot): New function.
(verify_mailslot): Ditto.
(struct mailslotinf): New stuct to handle select on mailslots.
(thread_mailslot): New function.
(start_thread_mailslot): Ditto.
(mailslot_cleanup): Ditto.
(fhandler_mailslot::select_read): New method.
* syslog.cc (klog_guard): New muto.
(dev_kmsg): Local mailslot for kernel message device.
(vklog): New function.
(klog): Ditto.
* winsup.h (vklog): Declare.
(klog): Ditto.
* include/sys/syslog.h: Define _PATH_KLOG.
Diffstat (limited to 'winsup/cygwin/Makefile.in')
-rw-r--r-- | winsup/cygwin/Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/winsup/cygwin/Makefile.in b/winsup/cygwin/Makefile.in index 031f3149a..7e788cec8 100644 --- a/winsup/cygwin/Makefile.in +++ b/winsup/cygwin/Makefile.in @@ -123,10 +123,10 @@ DLL_OFILES:=assert.o autoload.o bsdlib.o ctype.o cxx.o cygheap.o cygthread.o \ cygtls.o dcrt0.o debug.o delqueue.o devices.o dir.o dlfcn.o dll_init.o \ dtable.o environ.o errno.o exceptions.o exec.o external.o fcntl.o \ fhandler.o fhandler_clipboard.o fhandler_console.o fhandler_disk_file.o \ - fhandler_dsp.o fhandler_fifo.o fhandler_floppy.o fhandler_mem.o \ - fhandler_netdrive.o fhandler_nodevice.o fhandler_proc.o fhandler_process.o \ - fhandler_random.o fhandler_raw.o fhandler_registry.o fhandler_serial.o \ - fhandler_socket.o fhandler_tape.o fhandler_termios.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_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 getopt.o glob.o grp.o heap.o hookapi.o \ init.o ioctl.o ipc.o iruserok.o localtime.o lsearch.o malloc_wrapper.o \ |