summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/a29k/portsw/startup/iface.c
blob: 90ab480037f8cdc9bd4c32fd0dceec4c9751ae28 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*
 * glue.c -- all the code to make GCC and the libraries run on
 *           a target board running RTEMS. These should work with 
 *           any target which conforms to the RTEMS BSP.
 *
 *  $Id$
 */

#ifndef lint
static char _sccsid[] = "@(#)iface.c 04/12/96     1.1\n";
#endif

#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>

int
read(int fd,
     char *buf,
     int nbytes)
{
    return __rtems_read(fd, buf, nbytes);
}

int
write(int fd,
      char *buf,
      int nbytes)
{
    return __rtems_write(fd, buf, nbytes);
}

int
open(char *buf,
     int flags,
     int mode)
{
    return __rtems_open(buf, flags, mode);
}

int
close(int fd)
{
    return __rtems_close(fd);
}

/*
 * isatty -- returns 1 if connected to a terminal device,
 *           returns 0 if not.
 */
int
isatty(int fd)
{
    return __rtems_isatty(fd);
}

/*
 * lseek -- move read/write pointer. Since a serial port
 *          is non-seekable, we return an error.
 */
off_t
lseek(int fd,
      off_t offset,
      int whence)
{
    return __rtems_lseek(fd, offset, whence);
}

/*
 * fstat -- get status of a file. Since we have no file
 *          system, we just return an error.
 */
int
fstat(int fd,
      struct stat *buf)
{
    return __rtems_fstat(fd, buf);
}

int
getpid()
{
  return __rtems_getpid();
}

/*
 * kill -- go out via exit...
 */
int
kill(int pid,
     int sig)
{
    return __rtems_kill(pid, sig);
}