summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/termios_posix_isig_handler.c
blob: 5be2d10aa241a2c9563fcce446c4ec32f088d4b0 (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
/**
 * @file
 * TERMIOS POSIX behavior on INTR and QUIT characters
 */

/*
 *  COPYRIGHT (c) 1989-2012,2019.
 *  On-Line Applications Research Corporation (OAR).
 *
 *  SPDX-License-Identifier: BSD-2-Clause
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <rtems.h>
#include <rtems/libio.h>
#include <rtems/termiostypes.h>

#include <signal.h>

rtems_termios_isig_status_code rtems_termios_posix_isig_handler(
  unsigned char             c,
  struct rtems_termios_tty *tty
)
{
  if (c == tty->termios.c_cc[VINTR]) {
    raise(SIGINT);
    return RTEMS_TERMIOS_ISIG_INTERRUPT_READ;
  }

  if (c == tty->termios.c_cc[VQUIT]) {
    raise(SIGQUIT);
    return RTEMS_TERMIOS_ISIG_INTERRUPT_READ;
  }

  return RTEMS_TERMIOS_ISIG_WAS_NOT_PROCESSED;
}