函数源码 |
Source File:kernel\signal.c |
Create Date:2022-07-27 10:17:46 |
首页 | Copyright©Brick |
4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 | int restore_altstack( const stack_t __user *uss) { stack_t new ; if (copy_from_user(& new , uss, sizeof (stack_t))) return -EFAULT; ( void )do_sigaltstack(& new , NULL, current_user_stack_pointer(), MINSIGSTKSZ); /* squash all but EFAULT for now */ return 0; } |