source: rtems/c/src/lib/libbsp/sparc/erc32/console/consolereserveresources.c @ 1d1b1507

4.104.114.84.95
Last change on this file since 1d1b1507 was 1d1b1507, checked in by Joel Sherrill <joel.sherrill@…>, on 05/27/99 at 16:08:40

Split out polled io, debug puts, and console reserve resources to
reduce dependencies and shrink minimum executable size.

  • Property mode set to 100644
File size: 664 bytes
Line 
1/*
2 *  This file contains the TTY driver for the serial ports on the erc32.
3 *
4 *  This driver uses the termios pseudo driver.
5 *
6 *  COPYRIGHT (c) 1989-1998.
7 *  On-Line Applications Research Corporation (OAR).
8 *  Copyright assigned to U.S. Government, 1994.
9 *
10 *  The license and distribution terms for this file may be
11 *  found in the file LICENSE in this distribution or at
12 *  http://www.OARcorp.com/rtems/license.html.
13 *
14 *  $Id$
15 */
16
17#include <bsp.h>
18#include <rtems/libio.h>
19#include <stdlib.h>
20#include <assert.h>
21
22void console_reserve_resources(
23  rtems_configuration_table *configuration
24)
25{
26  rtems_termios_reserve_resources( configuration, 2 );
27}
Note: See TracBrowser for help on using the repository browser.