source: rtems-libbsd/rtemsbsd/src/rtems-bsd-descrip.c @ be8032d

4.1155-freebsd-126-freebsd-12freebsd-9.3
Last change on this file since be8032d was be8032d, checked in by Jennifer Averett <jennifer.averett@…>, on 05/02/12 at 15:27:59

Added stubs for funsetown() and fsetown()

  • Property mode set to 100644
File size: 953 bytes
RevLine 
[be8032d]1/**
2 * @file
3 *
4 * @ingroup rtems_bsd_rtems
5 *
6 * @brief TODO.
7 */
8
9/*
10 *  COPYRIGHT (c) 1989-2012.
11 *  XXX
12 */
13
14#include <freebsd/machine/rtems-bsd-config.h>
15
16#include <freebsd/sys/param.h>
17#include <freebsd/sys/systm.h>
18
19#include <freebsd/sys/conf.h>
20#include <freebsd/sys/domain.h>
21#include <freebsd/sys/fcntl.h>
22#include <freebsd/sys/file.h>
23#include <freebsd/sys/filedesc.h>
24#include <freebsd/sys/filio.h>
25#include <freebsd/sys/jail.h>
26#include <freebsd/sys/kernel.h>
27#include <freebsd/sys/limits.h>
28#include <freebsd/sys/lock.h>
29#include <freebsd/sys/malloc.h>
30#include <freebsd/sys/mount.h>
31#include <freebsd/sys/mutex.h>
32#include <freebsd/sys/namei.h>
33#include <freebsd/sys/priv.h>
34#include <freebsd/sys/proc.h>
35
36/*
37 * This routine is not supported in the RTEMS interface
38 */
39void
40funsetown(struct sigio **sigiop)
41{
42}
43
44/*
45 * This routine is not supported in the RTEMS interface
46 */
47int
48fsetown(pid_t pgid, struct sigio **sigiop)
49{
50  return 0;
51}
Note: See TracBrowser for help on using the repository browser.