Changeset 9deb5b8b in rtems for c/src/lib/include


Ignore:
Timestamp:
08/01/97 18:12:11 (26 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
29a9e5d
Parents:
0074691a
Message:

Katsutoshi Shibuya (shibuya@…)of BU-Denken Co., Ltd.
(Sapporo, Japan) submitted the extended console driver for the
MVME162LX BSP and the POSIX tcsetattr() and tcgetattr() routines.
This device driver supports four serial ports, cooked IO, and
provides a portable base for Zilog 8530 based console drivers.

Location:
c/src/lib/include
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/include/Makefile.in

    r0074691a r9deb5b8b  
    1212H_FILES=$(H_PIECES:%=$(srcdir)/%.h)
    1313
     14SYS_H_PIECES=termios
     15SYS_H_FILES=$(SYS_H_PIECES:%=$(srcdir)/sys/%.h)
     16
    1417KA9Q_H_PIECES= arp asy ax25 ax25mail bootp cmdparse commands config \
    1518  daemon dialer domain enet ftp ftpcli global hardware icmp iface \
     
    2326RTEMSCPLUSPLUS_H_FILES=$(RTEMSCPLUSPLUS_H_PIECES:%=$(srcdir)/rtems++/%.h)
    2427
    25 SYS_H_FILES=
    26 
    27 SRCS=$(H_FILES) $(SYS_H_FILES)
     28SRCS=$(H_FILES) $(SYS_H_FILES) $(KA9Q_H_FILES) $(RTEMSCPLUSPLUS_H_FILES)
    2829
    2930include $(RTEMS_CUSTOM)
  • c/src/lib/include/rtems/libio.h

    r0074691a r9deb5b8b  
    122122#define rtems_file_descriptor_type_index(fd)    ((((fd) & 0xF000) >> 12) - 1)
    123123
     124/*
     125 *  IOCTL values
     126 */
     127
     128#define       RTEMS_IO_GET_ATTRIBUTES 1
     129#define       RTEMS_IO_SET_ATTRIBUTES 2
     130
    124131#endif /* _RTEMS_LIBIO_H */
Note: See TracChangeset for help on using the changeset viewer.