gpt4 book ai didi

c++ - 使用 u_context 结构 - uc_stack.ss_flags 的用途是什么?

转载 作者:太空宇宙 更新时间:2023-11-04 09:29:49 28 4
gpt4 key购买 nike

我正在尝试使用 getContext() 和 setContext() 在 C++ 应用程序中操作线程。我注意到 ucontext_t 结构有这个字段,uc_stack.ss_flags。这些标志有什么用?我想知道如何将它们用于线程库中的垃圾收集。通常它们默认设置为零。

最佳答案

sigstack.h 中我看到:

/* Possible values for `ss_flags.'.  */
enum
{
SS_ONSTACK = 1,
#define SS_ONSTACK SS_ONSTACK
SS_DISABLE
#define SS_DISABLE SS_DISABLE
};

搜索这些会将我们带到这里: http://pubs.opengroup.org/onlinepubs/009695399/functions/sigaltstack.html

上面写着:

  • SS_ONSTACK The process is currently executing on the alternate signal stack. Attempts to modify the alternate signal stack while the process is executing on it fail. This flag shall not be modified by processes.
  • SS_DISABLE The alternate signal stack is currently disabled.

关于c++ - 使用 u_context 结构 - uc_stack.ss_flags 的用途是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32773360/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com