diff options
| author | David Greenman <dg@FreeBSD.org> | 1994-09-01 05:12:53 +0000 |
|---|---|---|
| committer | David Greenman <dg@FreeBSD.org> | 1994-09-01 05:12:53 +0000 |
| commit | e8fb0b2c179878d073b39abe87a578ac4c8248fe (patch) | |
| tree | 9d05b088a74d8108c8f5219d91fa24183ccc01e4 /sys/kern/kern_fork.c | |
| parent | 431be400a733c39adf0a1751788babf7eacdee69 (diff) | |
Notes
Diffstat (limited to 'sys/kern/kern_fork.c')
| -rw-r--r-- | sys/kern/kern_fork.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/kern/kern_fork.c b/sys/kern/kern_fork.c index ce5d6aa5ef20..61e2f50d7a0f 100644 --- a/sys/kern/kern_fork.c +++ b/sys/kern/kern_fork.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)kern_fork.c 8.6 (Berkeley) 4/8/94 - * $Id: kern_fork.c,v 1.4 1994/08/06 07:15:04 davidg Exp $ + * $Id: kern_fork.c,v 1.5 1994/08/18 22:35:00 wollman Exp $ */ #include <sys/param.h> @@ -269,6 +269,11 @@ again: p2->p_estcpu = p1->p_estcpu; /* + * copy the realtime attibute + */ + p2->p_rtprio = p1->p_rtprio; + + /* * This begins the section where we must prevent the parent * from being swapped. */ |
