一些关于EXIT_FAILURE的描述

EXIT_FAILURE是C语言头文件库中定义的一个符号常量,在vc++6.0下头文件stdlib.h中定义如下: #define EXIT_FAILURE   1 

EXIT_FAILURE 可以作为exit()的参数来使用,表示没有成功地执行一个程序。

EXIT_SUCCESS 作为exit()的参数来使用,表示成功地执行一个程序。

 

例子:

 

#include <stdio.h>
#include <stdlib.h>	//用于EXIT_SUCCESSGN EXIT——FAILURE

int main()
{
	int a, b;

	printf("计算两个数的和\n");

	printf("请输入a = ");
	scanf("%d", &a);
	printf("请输入b = ");
	scanf("%d", &b);

	if(a + b > 100)
	{
		printf("成功!\n");
		return EXIT_SUCCESS;
	}
	else
	{
		printf("失败!\n");
		return EXIT_FAILURE;
	}


	return 0;
}


 

 

 

按每一行解释如下代码:#include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <sys/types.h> #include <sys/wait.h> #include <sys/ipc.h> #include <sys/sem.h> #include <time.h> #define MSG_SIZE 100 struct sembuf sem_wait = {0, -1, SEM_UNDO}; struct sembuf sem_signal = {0, 1, SEM_UNDO}; int pfd[2]; int semid; void send_msg(int id) { srand(time(NULL) + id); int len = rand() % MSG_SIZE + 1; char msg[len]; for (int i = 0; i < len; i++) { msg[i] = 'A' + rand() % 26; } msg[len - 1] = '\0'; printf("Child %d sends message: %s\n", id, msg); semop(semid, &sem_wait, 1); write(pfd[1], msg, strlen(msg) + 1); semop(semid, &sem_signal, 1); } int main() { if (pipe(pfd) == -1) { perror("pipe"); exit(EXIT_FAILURE); } semid = semget(IPC_PRIVATE, 1, IPC_CREAT | 0666); if (semid == -1) { perror("semget"); exit(EXIT_FAILURE); } if (semctl(semid, 0, SETVAL, 1) == -1) { perror("semctl"); exit(EXIT_FAILURE); } for (int i = 0; i < 3; i++) { pid_t pid = fork(); if (pid == -1) { perror("fork"); exit(EXIT_FAILURE); } else if (pid == 0) { send_msg(i); exit(EXIT_SUCCESS); } } for (int i = 0; i < 3; i++) { wait(NULL); } char msg[MSG_SIZE]; int total_bytes = 0; while (total_bytes < MSG_SIZE * 3) { semop(semid, &sem_wait, 1); int n_bytes = read(pfd[0], msg + total_bytes, MSG_SIZE * 3 - total_bytes); if (n_bytes == -1) { perror("read"); exit(EXIT_FAILURE); } total_bytes += n_bytes; semop(semid, &sem_signal, 1); } printf("Parent receives message: %s\n", msg); close(pfd[0]); close(pfd[1]); if (semctl(semid, 0, IPC_RMID) == -1) { perror("semctl"); exit(EXIT_FAILURE); } return 0; }
05-24
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值