p1003_1b.c (33a9ed9d0e26ec60b5237d33dc09026841b9bf67) | p1003_1b.c (fb919e4d5a2c1baca52ac70d1064f140fffdda71) |
---|---|
1/* 2 * Copyright (c) 1996, 1997, 1998 3 * HD Associates, Inc. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 24 unchanged lines hidden (view full) --- 33 */ 34 35/* p1003_1b: Real Time common code. 36 */ 37 38#include <sys/param.h> 39#include <sys/systm.h> 40#include <sys/kernel.h> | 1/* 2 * Copyright (c) 1996, 1997, 1998 3 * HD Associates, Inc. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 24 unchanged lines hidden (view full) --- 33 */ 34 35/* p1003_1b: Real Time common code. 36 */ 37 38#include <sys/param.h> 39#include <sys/systm.h> 40#include <sys/kernel.h> |
41#include <sys/sysent.h> | 41#include <sys/lock.h> 42#include <sys/module.h> 43#include <sys/mutex.h> |
42#include <sys/proc.h> | 44#include <sys/proc.h> |
45#include <sys/sysctl.h> 46#include <sys/sysent.h> |
|
43#include <sys/syslog.h> | 47#include <sys/syslog.h> |
44#include <sys/module.h> | |
45#include <sys/sysproto.h> | 48#include <sys/sysproto.h> |
46#include <sys/sysctl.h> | |
47 48#include <posix4/posix4.h> 49 50MALLOC_DEFINE(M_P31B, "p1003.1b", "Posix 1003.1B"); 51 52/* p31b_proc: Return a proc struct corresponding to a pid to operate on. 53 * 54 * Enforce permission policy. --- 209 unchanged lines hidden --- | 49 50#include <posix4/posix4.h> 51 52MALLOC_DEFINE(M_P31B, "p1003.1b", "Posix 1003.1B"); 53 54/* p31b_proc: Return a proc struct corresponding to a pid to operate on. 55 * 56 * Enforce permission policy. --- 209 unchanged lines hidden --- |