2000-02-17 11: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 05:50:13 -08:00
|
|
|
Copyright 2000, 2001, 2002 Red Hat, Inc.
|
2000-02-17 11: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-02 09:28:18 -07:00
|
|
|
#include <errno.h>
|
2001-07-26 12:22:24 -07:00
|
|
|
#include "security.h"
|
2000-08-21 22:10:20 -07:00
|
|
|
#include "fhandler.h"
|
2000-02-17 11:38:33 -08:00
|
|
|
|
2001-10-13 10:23:35 -07:00
|
|
|
fhandler_dev_zero::fhandler_dev_zero ()
|
|
|
|
: fhandler_base (FH_ZERO)
|
2000-02-17 11:38:33 -08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2001-10-03 19:34:20 -07:00
|
|
|
fhandler_dev_zero::open (path_conv *, int flags, mode_t)
|
2000-02-17 11:38:33 -08:00
|
|
|
{
|
2002-07-01 12:03:26 -07:00
|
|
|
set_flags ((flags & ~O_TEXT) | O_BINARY);
|
2002-09-18 20:30:20 -07:00
|
|
|
set_nohandle (true);
|
2001-04-23 19:07:58 -07:00
|
|
|
set_open_status ();
|
2000-02-17 11:38:33 -08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-02-20 21:20:38 -08:00
|
|
|
fhandler_dev_zero::write (const void *, size_t len)
|
2000-02-17 11:38:33 -08:00
|
|
|
{
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
2002-12-13 20:01:32 -08:00
|
|
|
void __stdcall
|
|
|
|
fhandler_dev_zero::read (void *ptr, size_t& len)
|
2000-02-17 11:38:33 -08:00
|
|
|
{
|
2002-09-21 20:38:57 -07:00
|
|
|
memset (ptr, 0, len);
|
2002-12-13 20:01:32 -08:00
|
|
|
return;
|
2000-02-17 11:38:33 -08:00
|
|
|
}
|
|
|
|
|
2002-02-25 09:47:51 -08:00
|
|
|
__off64_t
|
|
|
|
fhandler_dev_zero::lseek (__off64_t, int)
|
2000-02-17 11:38:33 -08:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
fhandler_dev_zero::dump ()
|
|
|
|
{
|
2002-09-21 20:38:57 -07:00
|
|
|
paranoid_printf ("here, fhandler_dev_zero");
|
2000-02-17 11:38:33 -08:00
|
|
|
}
|