mirror of
https://git.rtems.org/rtems-libbsd/
synced 2025-10-16 00:12:00 +08:00
Added stubs for funsetown() and fsetown()
This commit is contained in:
51
rtemsbsd/src/rtems-bsd-descrip.c
Normal file
51
rtemsbsd/src/rtems-bsd-descrip.c
Normal file
@@ -0,0 +1,51 @@
|
||||
/**
|
||||
* @file
|
||||
*
|
||||
* @ingroup rtems_bsd_rtems
|
||||
*
|
||||
* @brief TODO.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT (c) 1989-2012.
|
||||
* XXX
|
||||
*/
|
||||
|
||||
#include <freebsd/machine/rtems-bsd-config.h>
|
||||
|
||||
#include <freebsd/sys/param.h>
|
||||
#include <freebsd/sys/systm.h>
|
||||
|
||||
#include <freebsd/sys/conf.h>
|
||||
#include <freebsd/sys/domain.h>
|
||||
#include <freebsd/sys/fcntl.h>
|
||||
#include <freebsd/sys/file.h>
|
||||
#include <freebsd/sys/filedesc.h>
|
||||
#include <freebsd/sys/filio.h>
|
||||
#include <freebsd/sys/jail.h>
|
||||
#include <freebsd/sys/kernel.h>
|
||||
#include <freebsd/sys/limits.h>
|
||||
#include <freebsd/sys/lock.h>
|
||||
#include <freebsd/sys/malloc.h>
|
||||
#include <freebsd/sys/mount.h>
|
||||
#include <freebsd/sys/mutex.h>
|
||||
#include <freebsd/sys/namei.h>
|
||||
#include <freebsd/sys/priv.h>
|
||||
#include <freebsd/sys/proc.h>
|
||||
|
||||
/*
|
||||
* This routine is not supported in the RTEMS interface
|
||||
*/
|
||||
void
|
||||
funsetown(struct sigio **sigiop)
|
||||
{
|
||||
}
|
||||
|
||||
/*
|
||||
* This routine is not supported in the RTEMS interface
|
||||
*/
|
||||
int
|
||||
fsetown(pid_t pgid, struct sigio **sigiop)
|
||||
{
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user