📄 incr_pxsem8.c
字号:
/* Same as incr_pxsem7, but with each child calling sem_open() to open * the names semaphore *//* include main */#include "unpipc.h"#define MAXNPROC 100#define NAME "incr_pxsem8"int nloop;struct shared { long counter;} *shared; /* actual structure is stored in shared memory */sem_t *pmutex, *cmutex;void *incr(void *);intmain(int argc, char **argv){ int i, nprocs; pid_t childpid[MAXNPROC]; if (argc != 3) err_quit("usage: incr_pxsem8 <#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 */ pmutex = 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) { Sem_close(pmutex); /* the one kept open by fork() */ cmutex = Sem_open(Px_ipc_name(NAME), 0); incr(NULL); exit(0); } } /* 4parent: start the timer and release the semaphore */ Start_time(); Sem_post(pmutex); /* 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(cmutex); shared->counter++; Sem_post(cmutex); } return(NULL);}/* end incr */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -