kld problem

2005-06-22 Thread Mauser
Unloading syscall kernel module can cause a system crash. It occurs when we unload the module while a process is executing our syscall. Example: $ cat kldtest.c #include #include #include #include #include #include #include #include #include static int test_nw; static int test_syscall

Re: kld problem

2005-06-22 Thread Mauser
On Wed, 22 Jun 2005 16:52:58 -0500 Dan Nelson <[EMAIL PROTECTED]> wrote: > In the last episode (Jun 22), Mauser said: > > Unloading syscall kernel module can cause a system crash. It occurs > > when we unload the module while a process is executing our syscall. > &