summaryrefslogtreecommitdiffstats
path: root/sys/kern/subr_xxx.c
diff options
context:
space:
mode:
authorjulian <julian@FreeBSD.org>2001-09-12 08:38:13 +0000
committerjulian <julian@FreeBSD.org>2001-09-12 08:38:13 +0000
commit5596676e6c6c1e81e899cd0531f9b1c28a292669 (patch)
treeb1a19fcdf05759281fab0d89efb13f0fdf42102e /sys/kern/subr_xxx.c
parent83e00d4274950d2b531c24692cd123538ffbddb9 (diff)
downloadFreeBSD-src-5596676e6c6c1e81e899cd0531f9b1c28a292669.zip
FreeBSD-src-5596676e6c6c1e81e899cd0531f9b1c28a292669.tar.gz
KSE Milestone 2
Note ALL MODULES MUST BE RECOMPILED make the kernel aware that there are smaller units of scheduling than the process. (but only allow one thread per process at this time). This is functionally equivalent to teh previousl -current except that there is a thread associated with each process. Sorry john! (your next MFC will be a doosie!) Reviewed by: peter@freebsd.org, dillon@freebsd.org X-MFC after: ha ha ha ha
Diffstat (limited to 'sys/kern/subr_xxx.c')
-rw-r--r--sys/kern/subr_xxx.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/sys/kern/subr_xxx.c b/sys/kern/subr_xxx.c
index f3fd2ed..094b67c 100644
--- a/sys/kern/subr_xxx.c
+++ b/sys/kern/subr_xxx.c
@@ -80,22 +80,22 @@ nullop()
*/
int
-noopen(dev, flags, fmt, p)
+noopen(dev, flags, fmt, td)
dev_t dev;
int flags;
int fmt;
- struct proc *p;
+ struct thread *td;
{
return (ENODEV);
}
int
-noclose(dev, flags, fmt, p)
+noclose(dev, flags, fmt, td)
dev_t dev;
int flags;
int fmt;
- struct proc *p;
+ struct thread *td;
{
return (ENODEV);
@@ -122,12 +122,12 @@ nowrite(dev, uio, ioflag)
}
int
-noioctl(dev, cmd, data, flags, p)
+noioctl(dev, cmd, data, flags, td)
dev_t dev;
u_long cmd;
caddr_t data;
int flags;
- struct proc *p;
+ struct thread *td;
{
return (ENODEV);
@@ -172,22 +172,22 @@ nodump(dev)
* minor number.
*/
int
-nullopen(dev, flags, fmt, p)
+nullopen(dev, flags, fmt, td)
dev_t dev;
int flags;
int fmt;
- struct proc *p;
+ struct thread *td;
{
return (0);
}
int
-nullclose(dev, flags, fmt, p)
+nullclose(dev, flags, fmt, td)
dev_t dev;
int flags;
int fmt;
- struct proc *p;
+ struct thread *td;
{
return (0);
OpenPOWER on IntegriCloud