incr_pxsem6.c

来自「《UNIX进程间通信》中的代码」· C语言 代码 · 共 72 行

C
72
字号
/* include main */#include	"unpipc.h"#define	MAXNPROC	100#define	NAME	"incr_pxsem6"int		nloop;struct shared {  sem_t	*mutex;  long	counter;} *shared;		/* actual structure is stored in shared memory */void	*incr(void *);intmain(int argc, char **argv){	int		i, nprocs;	pid_t	childpid[MAXNPROC];	if (argc != 3)		err_quit("usage: incr_pxsem6 <#loops> <#processes>");	nloop = atoi(argv[1]);	nprocs = min(atoi(argv[2]), MAXNPROC);		/* 4get shared memory for parent and children */	shared = My_shm(sizeof(struct shared));		/* 4initialize named semaphore to 0 */	sem_unlink(Px_ipc_name(NAME));		/* error OK */	shared->mutex = Sem_open(Px_ipc_name(NAME), O_CREAT | O_EXCL, FILE_MODE, 0);		/* 4create all the children */	for (i = 0; i < nprocs; i++) {		if ( (childpid[i] = Fork()) == 0) {			incr(NULL);			exit(0);		}	}		/* 4parent: start the timer and release the semaphore */	Start_time();	Sem_post(shared->mutex);		/* 4wait for all the children */	for (i = 0; i < nprocs; i++) {		Waitpid(childpid[i], NULL, 0);	}	printf("microseconds: %.0f usec\n", Stop_time());	if (shared->counter != nloop * nprocs)		printf("error: counter = %ld\n", shared->counter);	Sem_unlink(Px_ipc_name(NAME));	exit(0);}/* end main *//* include incr */void *incr(void *arg){	int		i;	for (i = 0; i < nloop; i++) {		Sem_wait(shared->mutex);		shared->counter++;		Sem_post(shared->mutex);	}	return(NULL);}/* end incr */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?