Deleted Added
full compact
sysv_sem.c (112564) sysv_sem.c (116182)
1/* $FreeBSD: head/sys/kern/sysv_sem.c 112564 2003-03-24 21:15:35Z jhb $ */
2
3/*
4 * Implementation of SVID semaphores
5 *
6 * Author: Daniel Boulet
7 *
8 * This software is provided ``AS IS'' without any warranties of any kind.
9 */
10
1/*
2 * Implementation of SVID semaphores
3 *
4 * Author: Daniel Boulet
5 *
6 * This software is provided ``AS IS'' without any warranties of any kind.
7 */
8
9#include <sys/cdefs.h>
10__FBSDID("$FreeBSD: head/sys/kern/sysv_sem.c 116182 2003-06-11 00:56:59Z obrien $");
11
11#include "opt_sysvipc.h"
12
13#include <sys/param.h>
14#include <sys/systm.h>
15#include <sys/sysproto.h>
16#include <sys/eventhandler.h>
17#include <sys/kernel.h>
18#include <sys/proc.h>

--- 1210 unchanged lines hidden ---
12#include "opt_sysvipc.h"
13
14#include <sys/param.h>
15#include <sys/systm.h>
16#include <sys/sysproto.h>
17#include <sys/eventhandler.h>
18#include <sys/kernel.h>
19#include <sys/proc.h>

--- 1210 unchanged lines hidden ---