newlib/winsup/cygwin/fhandler_zero.cc
Christopher Faylor 8bce0d723c Throughout, change fhandler_*::read and fhandler_*::raw_read to void functions
whose second arguments are both the lenght and the return value.
* fhandler.cc (fhandler_base::read): Rework slightly to use second argument as
input/output.  Tweak CRLF stuff.
(fhandler_base::readv): Accommodate fhandler_*::read changes.
* cygthread.h (cygthread::detach): Declare as taking optional handle argument.
(cygthread::detach): When given a handle argument, wait for the handle to be
signalled before waiting for thread to detach.  Return true when signal
detected.
2002-12-14 04:01:32 +00:00

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;
}
void __stdcall
fhandler_dev_zero::read (void *ptr, size_t& len)
{
memset (ptr, 0, len);
return;
}
__off64_t
fhandler_dev_zero::lseek (__off64_t, int)
{
return 0;
}
void
fhandler_dev_zero::dump ()
{
paranoid_printf ("here, fhandler_dev_zero");
}