newlib/winsup/cygwin/ioctl.cc
Christopher Faylor 9e2baf8dfa * cygerrno.h: New file. Use this throughout whenever errno manipulation is
required.
* errno.cc: Use DWORD to hold Windows errors.
(geterrno_from_win_error): New function.
(seterrno_from_win_error): Use geterrno_from_win_error to convert supplied
windows error (suggested by Corinna Vinschen).
* path.cc (symlink_info): Add error element.
* path.cc (path_conv::check): Remove errno setting.  Use new symlink_info errno
element to set path_conv error, where appropriate.
(symlink_info::check): Set error element rather than attempting to manipulate
errno.  Add more checks for trailing / and /..  even though they are currently
useless.  Avoid setting EINVAL.
* path.cc (normalize_posix_path): Correct check for trailing /.
2000-08-22 03:58:47 +00:00

47 lines
1.0 KiB
C++

/* ioctl.cc: ioctl routines.
Copyright 1996, 1998 Cygnus Solutions.
Written by Doug Evans of Cygnus Support
dje@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 <sys/ioctl.h>
#include <errno.h>
#include "dtable.h"
#include "cygerrno.h"
extern "C"
int
ioctl (int fd, int cmd, void *buf)
{
if (fdtab.not_open (fd))
{
set_errno (EBADF);
return -1;
}
debug_printf ("fd %d, cmd %x\n", fd, cmd);
fhandler_base *fh = fdtab[fd];
if (fh->is_tty () && fh->get_device () != FH_PTYM)
switch (cmd)
{
case TCGETA:
return tcgetattr (fd, (struct termios *) buf);
case TCSETA:
return tcsetattr (fd, TCSANOW, (struct termios *) buf);
case TCSETAW:
return tcsetattr (fd, TCSADRAIN, (struct termios *) buf);
case TCSETAF:
return tcsetattr (fd, TCSAFLUSH, (struct termios *) buf);
}
return fh->ioctl (cmd, buf);
}