Re: Kernel editing tools.

2001-02-07 Thread awr
VI FOR LIFE On Wed, 7 Feb 2001, Kevin Brunelle wrote: > Hey everyone, > > Sorry if you have heard this before, or if it is annoying. I just can't > seem to find any information on this. > > I have been poking around my kernel for quite some time now, and I have > been doing it with various te

Regarding kldunload / open /dev/ panic

2000-09-09 Thread awr
Also, shouldn't /usr/src/sys/dev/vn/vn.c use make_dev() and destroy_dev() calls instead of cdevsw_add()?? Andrew To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: Q: System call interception

2000-09-03 Thread awr
... MOD_UNLOAD sysent[SYS_open].sy_call = (sy_call_t *)open; /* put back old */ } Then, all you'ld have to do is load the kld and your calls would be intercepted by the wrapping syscall. For more details: http://subterrain.net/~awr/KLD-Tutorial/ Introduction to writing KLDs & a