OpenCores
URL https://opencores.org/ocsvn/scarts/scarts/trunk

Subversion Repositories scarts

[/] [scarts/] [trunk/] [toolchain/] [scarts-newlib/] [newlib-1.17.0/] [newlib/] [libc/] [unix/] [ttyname.c] - Blame information for rev 9

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 9 jlechner
#ifndef _NO_TTYNAME
2
/*
3
 * Copyright (c) 1988 The Regents of the University of California.
4
 * All rights reserved.
5
 *
6
 * Redistribution and use in source and binary forms, with or without
7
 * modification, are permitted provided that the following conditions
8
 * are met:
9
 * 1. Redistributions of source code must retain the above copyright
10
 *    notice, this list of conditions and the following disclaimer.
11
 * 2. Redistributions in binary form must reproduce the above copyright
12
 *    notice, this list of conditions and the following disclaimer in the
13
 *    documentation and/or other materials provided with the distribution.
14
 * 4. Neither the name of the University nor the names of its contributors
15
 *    may be used to endorse or promote products derived from this software
16
 *    without specific prior written permission.
17
 *
18
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
19
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
22
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28
 * SUCH DAMAGE.
29
 */
30
 
31
#include <sys/types.h>
32
#include <sys/stat.h>
33
#include <fcntl.h>
34
#include <dirent.h>
35
#include <unistd.h>
36
#include <string.h>
37
#include <paths.h>
38
#include <_syslist.h>
39
#include <errno.h>
40
 
41
static char ttyname_buf[sizeof (_PATH_DEV) + MAXNAMLEN] = _PATH_DEV;
42
 
43
/*
44
 *  ttyname_r() - POSIX 1003.1b 4.7.2 - Determine Terminal Device Name
45
 */
46
int
47
_DEFUN( ttyname_r,(fd, name, namesize),
48
        int fd _AND
49
        char   *name _AND
50
        size_t  namesize)
51
{
52
  struct stat sb;
53
  struct dirent *dirp;
54
  DIR *dp;
55
  struct stat dsb;
56
  char buf[sizeof(ttyname_buf)];
57
 
58
  /* Must be a terminal. */
59
  if (!isatty(fd))
60
    return ENOTTY;
61
 
62
  /* Must be a character device. */
63
  if (fstat (fd, &sb) || !S_ISCHR (sb.st_mode))
64
    return ENOTTY;
65
 
66
  if ((dp = opendir (_PATH_DEV)) == NULL)
67
    return EBADF;
68
 
69
  strcpy(buf, _PATH_DEV);
70
  while ((dirp = readdir (dp)) != NULL)
71
    {
72
      if (dirp->d_ino != sb.st_ino)
73
        continue;
74
      strcpy (buf + sizeof (_PATH_DEV) - 1, dirp->d_name);
75
      if (stat (buf, &dsb) || sb.st_dev != dsb.st_dev ||
76
          sb.st_ino != dsb.st_ino)
77
        continue;
78
      (void) closedir (dp);
79
      if(strlen(buf) < namesize)  /* < to account for terminating null */
80
        {
81
        strcpy(name, buf);
82
        return 0;
83
        }
84
      else
85
        {
86
        return ERANGE;
87
        }
88
    }
89
  (void) closedir (dp);
90
  return EBADF;
91
}
92
 
93
/*
94
 *  ttyname() - POSIX 1003.1b 4.7.2 - Determine Terminal Device Name
95
 */
96
char *
97
_DEFUN( ttyname,(fd),
98
        int fd)
99
{
100
  register int  fail;
101
  register char *ret=NULL;
102
  fail = ttyname_r( fd, ttyname_buf, sizeof(ttyname_buf) );
103
  if ( fail )  errno = fail;
104
   else  ret = ttyname_buf;
105
  return ret;
106
}
107
#endif /* !_NO_TTYNAME  */

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.