newlib/winsup/cygwin/fhandler_zero.cc
DJ Delorie 4c8d72ded5 * winsup.h: take out protections of environ, errno, allow C use
* *.cc: put winsup.h before other headers (for __INSIDE_CYGWIN__);
use cur_environ() instead of just environ
* times.cc: remove import protections
* glob.c: add winsup.h
* localtime.c: ditto
* smallprint.c: ditto
* Makefile.in: don't __INSIDE_CYGWIN__ as it messes up profiling.
2000-08-02 16:28:18 +00:00

59 lines
928 B
C++

/* fhandler_dev_zero.cc: code to access /dev/zero
Copyright 2000 Cygnus Solutions.
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>
fhandler_dev_zero::fhandler_dev_zero (const char *name)
: fhandler_base (FH_ZERO, name)
{
set_cb (sizeof *this);
}
int
fhandler_dev_zero::open (const char *, int flags, mode_t)
{
set_flags (flags);
return 1;
}
int
fhandler_dev_zero::write (const void *, size_t len)
{
return len;
}
int
fhandler_dev_zero::read (void *ptr, size_t len)
{
memset(ptr, 0, len);
return len;
}
off_t
fhandler_dev_zero::lseek (off_t, int)
{
return 0;
}
int
fhandler_dev_zero::close (void)
{
return 0;
}
void
fhandler_dev_zero::dump ()
{
paranoid_printf("here, fhandler_dev_zero");
}