📄 sys_machdep.c
字号:
/* * Copyright (c) 1982, 1986 Regents of the University of California. * All rights reserved. The Berkeley software License Agreement * specifies the terms and conditions for redistribution. * * @(#)sys_machdep.c 7.1 (Berkeley) 6/5/86 */#include "../h/param.h"#include "../h/systm.h"#include "../h/dir.h"#include "../h/user.h"#include "../h/ioctl.h"#include "../h/file.h"#include "../h/proc.h"#include "../h/uio.h"#include "../h/kernel.h"#include "../h/mtio.h"#include "../h/buf.h"#include "../h/trace.h"#include "../machine/pte.h"#ifdef vax#include "../io/uba/ubareg.h"#include "../io/uba/ubavar.h"#endif vax#ifdef vaxresuba(){ if (suser()) if (u.u_arg[0] < numuba) ubareset(u.u_arg[0]);}#endif vax#ifdef TRACEint nvualarm;vtrace(){ register struct a { int request; int value; } *uap; int vdoualarm(); uap = (struct a *)u.u_ap; switch (uap->request) { case VTR_DISABLE: /* disable a trace point */ case VTR_ENABLE: /* enable a trace point */ if (uap->value < 0 || uap->value >= TR_NFLAGS) u.u_error = EINVAL; else { u.u_r.r_val1 = traceflags[uap->value]; traceflags[uap->value] = uap->request; } break; case VTR_VALUE: /* return a trace point setting */ if (uap->value < 0 || uap->value >= TR_NFLAGS) u.u_error = EINVAL; else u.u_r.r_val1 = traceflags[uap->value]; break; case VTR_UALARM: /* set a real-time ualarm, less than 1 min */ if (uap->value <= 0 || uap->value > 60 * hz || nvualarm > 5) u.u_error = EINVAL; else { nvualarm++; timeout(vdoualarm, (caddr_t)u.u_procp->p_pid, uap->value); } break; case VTR_STAMP: trace(TR_STAMP, uap->value, u.u_procp->p_pid); break; }}vdoualarm(arg) int arg;{ register struct proc *p; p = pfind(arg); if (p) psignal(p, 16); nvualarm--;}#endif TRACE#ifdef COMPAT/* * Note: these tables are sorted by * ioctl "code" (in ascending order). */int dctls[] = { DKIOCHDR, 0 };int fctls[] = { FIOCLEX, FIONCLEX, FIOASYNC, FIONBIO, FIONREAD, 0 };int mctls[] = { MTIOCTOP, MTIOCGET, 0 };int tctls[] = { TIOCGETD, TIOCSETD, TIOCHPCL, TIOCMODG, TIOCMODS, TIOCGETP, TIOCSETP, TIOCSETN, TIOCEXCL, TIOCNXCL, TIOCFLUSH,TIOCSETC, TIOCGETC, TIOCREMOTE,TIOCMGET, TIOCMBIC, TIOCMBIS, TIOCMSET, TIOCSTART,TIOCSTOP, TIOCPKT, TIOCNOTTY,TIOCSTI, TIOCOUTQ, TIOCGLTC, TIOCSLTC, TIOCSPGRP,TIOCGPGRP,TIOCCDTR, TIOCSDTR, TIOCCBRK, TIOCSBRK, TIOCLGET, TIOCLSET, TIOCLBIC, TIOCLBIS, 0};/* * Map an old style ioctl command to new. */mapioctl(cmd) int cmd;{ register int *map, c; switch ((cmd >> 8) & 0xff) { case 'd': map = dctls; break; case 'f': map = fctls; break; case 'm': map = mctls; break; case 't': map = tctls; break; default: return (0); } while ((c = *map) && (c&0xff) < (cmd&0xff)) map++; if (c && (c&0xff) == (cmd&0xff)) return (c); return (0);}#endif COMPAT
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -