Ubuntu 信号量:分段错误(核心已转储)

Ubuntu Semaphore: Segmentation fault (core dumped)

我现在正在使用 Ubuntu 学习 C 中的信号量。教授就是丢给我们这个代码,让我们去研究观察。当我编译时,我得到一个警告 ctime(&sem_buf.sem_ctime) returns 一个 int,而不是 char * 但没什么大不了的。当我 运行 时,输出只是:Semaphore identifier: 0 Segmentation fault (core dumped)。我对出了什么问题感到非常困惑,我不知道这段代码中发生了什么。非常感谢您的帮助。

代码如下:

#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/sem.h>
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <unistd.h>
#include <semaphore.h> 
# define NS 3
union semun { 
   int val; 
   struct semid_ds *buf; 
   ushort *array; // Unsigned short integer.
}; 

int main(void) 
{ 
   int sem_id, sem_value, i; 
   key_t ipc_key; 
   struct semid_ds sem_buf; 
   static ushort sem_array[NS] = {3, 1, 4}; 
   union semun arg; 
   ipc_key = ftok(".", 'S'); // Creating the key.
   /* Create semaphore */ 
   if ((sem_id = semget(ipc_key, NS, IPC_CREAT | 0666)) == -1) { 
      perror ("semget: IPC | 0666"); 
      exit(1); 
   } 
   printf ("Semaphore identifier %d\n", sem_id); 
   /* Set arg (the union) to the address of the storage location for */ 
   /* returned semid_ds value */ 
   arg.buf = &sem_buf; 
   if (semctl(sem_id, 0, IPC_STAT, arg) == -1) { 
      perror ("semctl: IPC_STAT"); 
      exit(2); 
   } 
   printf ("Create %s", ctime(&sem_buf.sem_ctime)); 
   /* Set arg (the union) to the address of the initializing vector */ 
   arg.array = sem_array; 
   if (semctl(sem_id, 0, SETALL, arg) == -1) { 
      perror("semctl: SETALL"); 
      exit(3); 
   } 
   for (i=0; i<NS; ++i) { 
      if ((sem_value = semctl(sem_id, i, GETVAL, 0)) == -1) { 
         perror("semctl : GETVAL"); 
         exit(4); 
      } 
      printf ("Semaphore %d has value of %d\n",i, sem_value); 
   } 
   /*remove semaphore */ 
   if (semctl(sem_id, 0, IPC_RMID, 0) == -1) { 
      perror ("semctl: IPC_RMID"); 
      exit(5); 
   } 
} 

您需要包含 time.h 以便编译器识别 ctime 函数。警告是因为编译器不知道 ctime 是一个函数,而 returns 是 char*。默认情况下,GCC 假定未知函数 returns 和 int.