* select.cc (select_read): Add setting read_ready flag.
(select_write): Add setting write_ready flag.
This commit is contained in:
		@@ -1,3 +1,8 @@
 | 
			
		||||
Thu Aug 30 10:19:00 2001  Christopher Faylor <cgf@cygnus.com>
 | 
			
		||||
 | 
			
		||||
	* select.cc (select_read): Add setting read_ready flag.
 | 
			
		||||
	(select_write): Add setting write_ready flag.
 | 
			
		||||
 | 
			
		||||
Wed Aug 29 00:40:42 2001  Christopher Faylor <cgf@cygnus.com>
 | 
			
		||||
 | 
			
		||||
	* path.cc (path_conv::check): Avoid splitting off leading '/' in path
 | 
			
		||||
 
 | 
			
		||||
@@ -806,6 +806,7 @@ fhandler_dev_null::select_read (select_record *s)
 | 
			
		||||
    }
 | 
			
		||||
  s->h = get_handle ();
 | 
			
		||||
  s->read_selected = TRUE;
 | 
			
		||||
  s->read_ready = TRUE;
 | 
			
		||||
  return s;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@@ -821,6 +822,7 @@ fhandler_dev_null::select_write (select_record *s)
 | 
			
		||||
    }
 | 
			
		||||
  s->h = get_handle ();
 | 
			
		||||
  s->write_selected = TRUE;
 | 
			
		||||
  s->write_ready = TRUE;
 | 
			
		||||
  return s;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user