为什么我在Ubuntu上遇到了段错误而不是mac?

时间:2011-03-31 06:11:20

标签: c macos ubuntu segmentation-fault

我有一个程序可以检查文件的修改时间,并在文件发生变化时执行该文件。目前它可以在我的mac上运行它,但如果我在ubuntu上运行它会出现故障。请帮帮我。

注意:这是在c

#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <signal.h>
#include <errno.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>

#define CONTERROR(cond, statement) \
   if (cond) { \
      perror(statement); \
      continue; \
   }
#define FATALERROR(cond, statement) \
   if (cond) { \
      perror(statement); \
      exit(EXIT_FAILURE); \
   }

/**
 * Handler for the signals.
 */
static void handler(int signum) {
   ;
}

/**
 * Main.
 */
int main(int argc, char *argv[]) {
   struct sigaction sa;
   struct stat buf;
   struct itimerval tb;
   pid_t pid;
   int modTime;

   if (argc != 2) {
      fprintf(stderr, "usage: remote file\n");
      exit(EXIT_FAILURE);
   }

   FATALERROR(stat(argv[1], &buf) == -1, "stat");
   modTime = buf.st_mtime;

   tb.it_interval.tv_sec = 0;
   tb.it_interval.tv_usec = 50000;
   tb.it_value.tv_sec = 0;
   tb.it_value.tv_usec = 50000;

   setitimer(ITIMER_REAL, &tb, 0);

   sa.sa_handler = handler;
   FATALERROR(sigemptyset(&sa.sa_mask) == -1, "mask");
   FATALERROR(sigaction(SIGALRM, &sa, NULL) == -1, "sigaction");

   while (1) {
      pause();
      CONTERROR(stat(argv[1], &buf) == -1, "stat");
      if (modTime != buf.st_mtime) {
         modTime = buf.st_mtime;
         pid = fork();
         FATALERROR(pid == -1, "fork");
         if (!pid) {
            execlp("rexec", "rexec", NULL);
            fprintf(stderr, "exec\n");
         }
      }
   }
   exit(EXIT_SUCCESS);
}

1 个答案:

答案 0 :(得分:1)

您的大部分sigaction结构未初始化,因此可能包含随机数据。如果在这个未初始化的数据中意外设置了sa_flags.SA_SIGINFO,那么该信号将导致sa_sigaction而不是sa_handler被调用,这也是未初始化的,因此几乎肯定会崩溃。

如果初始化所有字段,您可能会发现调试更容易,包括确保以某种方式设置标记以确保信号按您希望的方式运行。