예제 #1
0
파일: hookrw.c 프로젝트: Kolaris/suterusu-1
void hookrw_exit ( void )
{
    DEBUG("Unhooking sys_read and sys_write\n");

    hijack_stop(sys_read);
    hijack_stop(sys_write);
}
예제 #2
0
파일: hookrw.c 프로젝트: clflush/suterusu
void hookrw_exit ( void )
{
    #if __DEBUG__
    printk("Unhooking sys_read and sys_write\n");
    #endif

    hijack_stop(sys_read);
    hijack_stop(sys_write);
}