1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-18 10:35:55 +00:00

1. Cleanup including.

2. Set configuration value for CTL_P1003_1B_MESSAGE_PASSING.
This commit is contained in:
David Xu 2005-12-02 14:09:32 +00:00
parent 0e6a74358e
commit 5ee2d4ac5a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=153019

View File

@ -54,8 +54,8 @@ __FBSDID("$FreeBSD$");
#include <sys/event.h>
#include <sys/eventhandler.h>
#include <sys/fcntl.h>
#include <sys/filedesc.h>
#include <sys/file.h>
#include <sys/filedesc.h>
#include <sys/limits.h>
#include <sys/lock.h>
#include <sys/malloc.h>
@ -69,18 +69,16 @@ __FBSDID("$FreeBSD$");
#include <sys/queue.h>
#include <sys/sysproto.h>
#include <sys/stat.h>
#include <sys/sysent.h>
#include <sys/syscall.h>
#include <sys/syscallsubr.h>
#include <sys/sysent.h>
#include <sys/sx.h>
#include <sys/sysctl.h>
#include <sys/sysctl.h>
#include <sys/vnode.h>
#include <sys/sysctl.h>
#include <sys/taskqueue.h>
#include <sys/unistd.h>
#include <sys/vnode.h>
#include <machine/atomic.h>
#include <posix4/posix4.h>
/*
* Limits and constants
@ -639,6 +637,7 @@ mqfs_init(struct vfsconf *vfc)
exit_tag = EVENTHANDLER_REGISTER(process_exit, mq_proc_exit, NULL,
EVENTHANDLER_PRI_ANY);
mq_fdclose = mqueue_fdclose;
p31b_setcfg(CTL_P1003_1B_MESSAGE_PASSING, _POSIX_MESSAGE_PASSING);
return (0);
}