0

我有一个程序应该从命令行接收 3 个不同的参数。第三个参数是传递给警报函数的唯一参数。例如,如果我的程序名为 BuzzOff,它的工作方式如下:

$ BuzzOff 10 99999 1

第三个参数是 1,所以 1 将被传递给警报函数。我的程序应该每 arg3 秒打印一次变量 total 的值。在这种情况下,每 1 秒。然而,当我尝试使用 1 作为我的第三个参数时,警报需要的时间比 1 秒长得多。大约需要 14 秒。无论我使用什么作为我的 arg3,它似乎都以相同的速度打印。我是否正确实施了警报功能?

这是我的代码:

#include<stdio.h>
#include<signal.h>
#include<stdlib.h>

double arg1, arg2, arg3;
double total = 0;
int debug = 0;

void sigusr1_handler(int signo)
{
    if (signo == SIGUSR1)
      printf("total: %f\n", total);
}
void sigusr2_handler(int signo)
{
    if (signo == SIGUSR2)
      debug = ((debug == 1) ? 0 : 1);
}
void sigint_handler(int signo)
{
  if (signo == SIGINT)
    {
      printf("total: %f\n", total);
      exit(0);
    }
}
void sigalrm_handler(int signo)
{
  if (signo == SIGALRM)
    {
      printf("total: %f\n", total);
      signal(SIGALRM, sigalrm_handler);
      alarm(arg3);
    }
}

int main(int argc, char *argv[])
{
    if( argc!=4 ) {
        printf("need three arguments\n"); return(1);
    }
    arg1 = (double) atoi(argv[1]);
    arg2 = (double) atoi(argv[2]);
    arg3 = (double) atoi(argv[3]);

    double count;

    signal(SIGUSR1, sigusr1_handler);
    signal(SIGUSR2, sigusr2_handler);
    raise(SIGUSR2);
    if (debug == 1)
      {
    signal(SIGUSR1, SIG_IGN);
    signal(SIGALRM, sigalrm_handler);
    alarm(arg3);
      }
    else if (debug == 0)
      {
    signal(SIGUSR1, sigusr1_handler);
    signal(SIGINT, sigint_handler);
      }
    for (count = 0; count < arg2; count += 0.001)
      {
    total += count*arg1;
      }
    return 0;

}
4

1 回答 1

2

您将输入转换为 a double,但 alarm() 函数需要 a unsigned int。不知道 1.0 的下半部分(上半部分)的位模式是什么,但如果它显示为 14,我不会感到惊讶。

编译器不会抱怨传递double arg3intoalarm()吗?

于 2013-11-06T23:27:07.773 回答