#include <stdio.h>
#include <sys/types.h>
#include <iostream>
#include <unistd.h>
#include <fstream>
#include <string>
#include <semaphore.h>
using namespace std;
int main(int argc, char *argv[]){
int pshared = 1;
unsigned int value = 0;
sem_t sem_name;
sem_init(&sem_name, pshared, value);
int parentpid = getpid();
pid_t pid = fork();
if (parentpid == getpid()){
cout << "parent id= " << getpid() << endl;
sem_wait(&sem_name);
cout << "child is done." << endl;
}
if (parentpid != getpid()){
cout << "child id= " << getpid() << endl;
for (int i = 0; i < 10; i++)
cout << i << endl;
sem_post(&sem_name);
}
sleep(4);
return 0;
}
的結果應該是:信號量爲什麼不起作用?
parent id 123456.
child id 123457.
0
1
2
3
4
5
6
7
8
9
child is done.
程序退出,而是它從來沒有信號的信號。
歡迎摘自至U&L!我們有你的代碼和結果應該是什麼......實際結果是什麼?你怎麼確定信號量從未被髮信號?你能編輯你的問題來添加它嗎?到目前爲止,我的代碼中似乎沒有發現任何錯誤 –