mirror of
https://git.rtems.org/rtems-libbsd/
synced 2025-06-28 05:37:59 +08:00
Added stubs for funsetown() and fsetown()
This commit is contained in:
parent
73a8881268
commit
be8032d2b6
1
Makefile
1
Makefile
@ -56,6 +56,7 @@ C_FILES += rtemsbsd/src/rtems-bsd-timesupport.c
|
||||
C_FILES += rtemsbsd/src/rtems-bsd-newproc.c
|
||||
C_FILES += rtemsbsd/src/rtems-bsd-vm_glue.c
|
||||
C_FILES += rtemsbsd/src/rtems-bsd-copyinout.c
|
||||
C_FILES += rtemsbsd/src/rtems-bsd-descrip.c
|
||||
C_FILES += freebsd/kern/subr_eventhandler.c
|
||||
C_FILES += freebsd/kern/kern_subr.c
|
||||
C_FILES += freebsd/kern/kern_tc.c
|
||||
|
@ -551,6 +551,7 @@ rtems.addRTEMSSourceFiles(
|
||||
'src/rtems-bsd-newproc.c',
|
||||
'src/rtems-bsd-vm_glue.c',
|
||||
'src/rtems-bsd-copyinout.c',
|
||||
'src/rtems-bsd-descrip.c',
|
||||
]
|
||||
)
|
||||
rtems.addEmptyHeaderFiles(
|
||||
|
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;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user