gpt4 book ai didi

报警时多次调用无限循环代码

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:09:55 26 4
gpt4 key购买 nike

我目前正在使用警报信号 SIGALRM退出无限循环。

我的代码结构如下

main_loop() {
set_alarm();
while(1)
counter++;
}

逻辑是
- 设置闹钟
- 输入 while 循环
- 当我们得到 SIGALRM 时读取计数器

SIGALRM 上运行的代码如下所示:

VERBOSE("Cycles :%u\n", counter);
iteration_index++;
if(iteration_index == iterations)
exit(0);
counter = 0;
main_loop();

我现在想给用户一个选项来指定警报应该响起的次数 ( iterations )。总之,将上述逻辑修改为:
- 设置闹钟
- 输入 while 循环
- 当我们得到 SIGALRM 时读取计数器
- 增量 iteration_index
- If iteration_index < iterations : 调用 main_loop
- 否则退出

我实现了上面的逻辑,发现它在几千次迭代后出现了段错误。我认为这是因为:
当警报触发并重新调用 main_loop 时, 原文main_loop框架仍然存在。这会不断重复发生,直到空间不足并引发段错误。

我尝试想出一些符合我要求的设计,但我无法在信号触发后可视化代码流。
实现我所描述的内容的正确方法是什么?

最佳答案

重新对您列出的修改进行评级:

- Set an alarm
- Enter while loop
- Read counter when we get SIGALRM
- Increment iteration_index
- If iteration_index < iterations: call main_loop
- Else exit

您可以提供一系列击键(例如 <ctrl> - 1 以允许用户指定次数(仅一次)。此示例运行(延迟以允许 GetAsyncKeys() 有一些时间。直到用户按下 <ctrl> 1 ,循环将永远运行。当按下 <ctrl> 1 时,程序会提示他们让警报响起多少次,然后程序会运行那么多次迭代,然后退出。

#include <stdio.h>
#include <windows.h>

void set_alarm(void);

int main(void) {
int iterations=-1, counter=0;
while (iterations != counter)
{
if(iterations == -1)//code will run forever if iteration is not set by user
{

set_alarm();
counter++;
if (GetAsyncKeyState(VK_CONTROL)<0)
{

if (GetAsyncKeyState('1')<0)
{
printf("Enter how many time alarm should activate:\n");
scanf("%d", &iterations);
counter = 0;
Sleep(10);
}
}
}
else//this block will monitor alarm count, program quits when limit reached.
{
if(counter < iterations)
{
set_alarm();
counter++;
}

}
Sleep(10);//changed here for my test, you might need to change again
}

return 0;
}

void set_alarm(void)
{
//do something;
}

关于报警时多次调用无限循环代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19733458/

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