source: rtems-libbsd/rtemsbsd/src/rtems-bsd-signal.c @ 29c954f

4.1155-freebsd-126-freebsd-12freebsd-9.3
Last change on this file since 29c954f was 29c954f, checked in by Jennifer Averett <jennifer.averett@…>, on 04/18/12 at 15:30:25

Added empty method for pgsigio.

  • Property mode set to 100644
File size: 736 bytes
Line 
1/**
2 * @file
3 *
4 * @ingroup rtems_bsd_rtems
5 *
6 * @brief TODO.
7 */
8
9/*
10 * Copyright (c) 2009, 2010 embedded brains GmbH.  All rights reserved.
11 *
12 *  embedded brains GmbH
13 *  Obere Lagerstr. 30
14 *  82178 Puchheim
15 *  Germany
16 *  <rtems@embedded-brains.de>
17 *
18 * The license and distribution terms for this file may be
19 * found in the file LICENSE in this distribution or at
20 * http://www.rtems.com/license/LICENSE.
21 */
22
23#include <freebsd/machine/rtems-bsd-config.h>
24
25#include <freebsd/sys/types.h>
26#include <freebsd/sys/systm.h>
27#include <freebsd/sys/signalvar.h>
28
29void
30psignal(struct proc *p, int sig)
31{
32        BSD_PANIC("not implemented");
33}
34
35void pgsigio(struct sigio **sigiop, int sig, int checkctty)
36{
37 
38        BSD_PANIC("not implemented");
39}
Note: See TracBrowser for help on using the repository browser.