ksched.c (6caa8a1501b8ea45c12cd4d4084d8cc15952f564) | ksched.c (fb919e4d5a2c1baca52ac70d1064f140fffdda71) |
---|---|
1/* 2 * Copyright (c) 1996, 1997 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 --- 23 unchanged lines hidden (view full) --- 32 * $FreeBSD$ 33 */ 34 35/* ksched: Soft real time scheduling based on "rtprio". 36 */ 37 38#include <sys/param.h> 39#include <sys/systm.h> | 1/* 2 * Copyright (c) 1996, 1997 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 --- 23 unchanged lines hidden (view full) --- 32 * $FreeBSD$ 33 */ 34 35/* ksched: Soft real time scheduling based on "rtprio". 36 */ 37 38#include <sys/param.h> 39#include <sys/systm.h> |
40#include <sys/proc.h> | 40#include <sys/lock.h> |
41#include <sys/mutex.h> | 41#include <sys/mutex.h> |
42#include <sys/proc.h> |
|
42#include <sys/resource.h> 43 44#include <posix4/posix4.h> 45 46/* ksched: Real-time extension to support POSIX priority scheduling. 47 */ 48 49struct ksched { --- 225 unchanged lines hidden --- | 43#include <sys/resource.h> 44 45#include <posix4/posix4.h> 46 47/* ksched: Real-time extension to support POSIX priority scheduling. 48 */ 49 50struct ksched { --- 225 unchanged lines hidden --- |