context linux,Unix_Linux

Unix_Linux 的 getcontext

getcontext, setcontext -获取或设置用户环境

内容简介

#include

int getcontext(ucontext_t *ucp);  int setcontext(const ucontext_t *ucp);

where:

标签

描述

ucp

points to a structure defined in containing the signal mask, execution stack, and machine registers.

描述

getcontext(2) gets the current context of the calling process, storing it in the ucontext struct pointed to byucp.

setcontext(2) sets the context of the calling process to the state stored in the ucontext struct pointed to by ucp. The struct must either have been created by getcontext(2) or have been passed as the third parameter of the sigaction(2) signal handler.

The ucontext struct created by getcontext(2) is defined in as follows:

typedef struct ucontext

{

unsigned long int uc_flags;

struct ucontext *uc_link;

stack_t uc_stack;

mcontext_t uc_mcontext;

__sigset_t uc_sigmask;

struct _fpstate __fpregs_mem;

} ucontext_t;

RETURN VALUES

getcontext(2) returns 0 on success and -1 on failure.setcontext(2) does not return a value on success and returns -1 on failure.

STANDARDS

These functions comform to: XPG4-UNIX.

注意

When a signal handler executes, the current user context is saved and a new context is created by the kernel. If the calling process leaves the signal handler usinglongjmp(2), the original context cannot be restored, and the result of future calls togetcontext(2) are unpredictable. To avoid this problem, usesiglongjmp(2) orsetcontext(2) in signal handlers instead oflongjmp(2).

另请参阅

sigaltstack(2), sigprocmask(2), sigsetjmp(3), setjmp(3).

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值