may not end up in the pool. (cygthread::new): Avoid race when checking for initialized. Add debugging code. * fhandler.cc (fhandler_base::raw_read): Add case for ERROR_INVALID_HANDLE due to Win95 directories. (fhandler_base::open): Handle errors due to Win95 directories. (fhandler_base::close): Add get_nohandle () test. (fhandler_base::set_close_on_exec): Ditto. (fhandler_base::fork_fixup): Ditto. (fhandler_base::lock): Change error code to Posix EINVAL. (fhandler_base::dup): If get_nohandle (), set new value to INVALID_HANDLE_VALUE instead of NULL. * fhandler_disk_file.cc (fhandler_disk_file::fstat): Call fstat_by_name if get_nohandle (). Remove extraneous element from strpbrk. (fhandler_disk_file::open): Remove test for Win95 directory. * fhandler_random.cc (fhandler_dev_random::open): Add set_nohandle (). * fhandler_clipboard.cc (fhandler_dev_clipboard::open): Ditto. * fhandler_zero.cc (fhandler_dev_zero::open): Ditto. (fhandler_dev_zero::close): Delete. * fhandler.h (class fhandler_dev_zero): Ditto.
		
			
				
	
	
		
			56 lines
		
	
	
		
			965 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			965 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /* fhandler_dev_zero.cc: code to access /dev/zero
 | |
| 
 | |
|    Copyright 2000, 2001, 2002 Red Hat, Inc.
 | |
| 
 | |
|    Written by DJ Delorie (dj@cygnus.com)
 | |
| 
 | |
| This file is part of Cygwin.
 | |
| 
 | |
| This software is a copyrighted work licensed under the terms of the
 | |
| Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
 | |
| details. */
 | |
| 
 | |
| #include "winsup.h"
 | |
| #include <errno.h>
 | |
| #include "security.h"
 | |
| #include "fhandler.h"
 | |
| 
 | |
| fhandler_dev_zero::fhandler_dev_zero ()
 | |
|   : fhandler_base (FH_ZERO)
 | |
| {
 | |
| }
 | |
| 
 | |
| int
 | |
| fhandler_dev_zero::open (path_conv *, int flags, mode_t)
 | |
| {
 | |
|   set_flags ((flags & ~O_TEXT) | O_BINARY);
 | |
|   set_nohandle (true);
 | |
|   set_open_status ();
 | |
|   return 1;
 | |
| }
 | |
| 
 | |
| int
 | |
| fhandler_dev_zero::write (const void *, size_t len)
 | |
| {
 | |
|   return len;
 | |
| }
 | |
| 
 | |
| int __stdcall
 | |
| fhandler_dev_zero::read (void *ptr, size_t len)
 | |
| {
 | |
|   memset(ptr, 0, len);
 | |
|   return len;
 | |
| }
 | |
| 
 | |
| __off64_t
 | |
| fhandler_dev_zero::lseek (__off64_t, int)
 | |
| {
 | |
|   return 0;
 | |
| }
 | |
| 
 | |
| void
 | |
| fhandler_dev_zero::dump ()
 | |
| {
 | |
|   paranoid_printf("here, fhandler_dev_zero");
 | |
| }
 |