2000-02-18 03:38:33 +08:00
|
|
|
/* fhandler_dev_zero.cc: code to access /dev/zero
|
|
|
|
|
* child_info.h, cygheap.h, fhandler_clipboard.cc, fhandler_dsp.cc,
fhandler_floppy.cc, fhandler_mem.cc, fhandler_random.cc,
fhandler_tape.cc, fhandler_zero.cc, grp.cc, mmap.cc, passwd.cc,
pinfo.cc, pinfo.h, pipe.cc, sec_acl.cc, sec_helper.cc, security.cc,
security.h, thread.h, uinfo.cc, include/cygwin/acl.h: Fix copyright.
2002-02-10 21:50:13 +08:00
|
|
|
Copyright 2000, 2001, 2002 Red Hat, Inc.
|
2000-02-18 03:38:33 +08:00
|
|
|
|
|
|
|
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"
|
2000-08-03 00:28:18 +08:00
|
|
|
#include <errno.h>
|
2001-07-27 03:22:24 +08:00
|
|
|
#include "security.h"
|
2000-08-22 13:10:20 +08:00
|
|
|
#include "fhandler.h"
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2001-10-14 01:23:35 +08:00
|
|
|
fhandler_dev_zero::fhandler_dev_zero ()
|
|
|
|
: fhandler_base (FH_ZERO)
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2001-10-04 10:34:20 +08:00
|
|
|
fhandler_dev_zero::open (path_conv *, int flags, mode_t)
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
2002-07-02 03:03:26 +08:00
|
|
|
set_flags ((flags & ~O_TEXT) | O_BINARY);
|
2002-09-19 11:30:20 +08:00
|
|
|
set_nohandle (true);
|
2001-04-24 10:07:58 +08:00
|
|
|
set_open_status ();
|
2000-02-18 03:38:33 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-02-21 13:20:38 +08:00
|
|
|
fhandler_dev_zero::write (const void *, size_t len)
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
2002-12-14 12:01:32 +08:00
|
|
|
void __stdcall
|
|
|
|
fhandler_dev_zero::read (void *ptr, size_t& len)
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
2002-09-22 11:38:57 +08:00
|
|
|
memset (ptr, 0, len);
|
2002-12-14 12:01:32 +08:00
|
|
|
return;
|
2000-02-18 03:38:33 +08:00
|
|
|
}
|
|
|
|
|
2003-04-02 00:11:41 +08:00
|
|
|
_off64_t
|
|
|
|
fhandler_dev_zero::lseek (_off64_t, int)
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
fhandler_dev_zero::dump ()
|
|
|
|
{
|
2002-09-22 11:38:57 +08:00
|
|
|
paranoid_printf ("here, fhandler_dev_zero");
|
2000-02-18 03:38:33 +08:00
|
|
|
}
|