- 论坛徽章:
- 0
|
小弟现在学习信号量,写了个简单函数,简单改遍书上的例子!
写了个简单的程序如下:
- typedef struct list{
-
- int semop;
- int buf[MAXITEM];
- int threadid[MAXITEM];
- int nput;
- int nval;
- }LOCK_LIST;
复制代码
就是 N个线程对 buf 填充数据! buf[0] 写0,buf[1]写1 ......,依次增加!
- #include <sys/types.h>
- #include <unistd.h>
- #include <signal.h>
- #include <string.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <sys/stat.h>
- #include <sys/ipc.h>
- #include <sys/sem.h>
- #include <stdarg.h>
- #include <time.h>
- #include <fcntl.h>
- #define MAXITEM 100000
- #define MAXTHRED 10
- #define NBUFF 10
- #define BASE_SEM 0X6001
- #define min(X,Y) (( X > Y )? Y : X)
- void * consume(void *arg);
- void * produce(void *arg);
- typedef struct list{
-
- int semop;
- int buf[MAXITEM];
- int threadid[MAXITEM];
- int nput;
- int nval;
- }LOCK_LIST;
- LOCK_LIST lock_list;
- LOCK_LIST lock_test[10];
- int nitems;
- int main(int argc, char **argv)
- {
- int nthreads;
- int i,count[MAXTHRED],ret;
- pthread_t tid_produce[MAXTHRED],tid_consume;
-
- nitems = min(atoi(argv[1]), MAXITEM);
- nthreads = min(atoi(argv[2]), MAXTHRED);
-
- pthread_setconcurrency();
-
- memset(&lock_list, 0, sizeof(LOCK_LIST));
-
- /*init sem*/
- lock_list.semop = init_sem(BASE_SEM,1);
- if(lock_list.semop < 0)
- {
- printf("init sem error[%d] .\n",lock_list.semop);
- return -2;
- }
-
- /*start produce thread*/
- for(i = 0; i < nthreads; i++)
- {
- count[i] = 0;
- pthread_create(&tid_produce[i], NULL, produce, &count[i]);
- }
-
- printf("thread create succefully.\n");
-
- /*wait produce thread*/
- for(i = 0; i < nthreads; i++)
- {
- pthread_join(tid_produce[i], NULL);
- printf("count[%d]=%d\n",i,count[i]);
- }
-
- printf("thread realease succefully.\n");
-
- /*start consume thread*/
- pthread_create(&tid_consume, NULL, consume, NULL);
- printf("consume start succefully.\n");
- pthread_join(tid_consume, NULL);
- printf("consume end succefully.\n");
-
- /*release sem*/
- remove_sem(lock_list.semop);
-
- return 0;
- }
- int init_sem(int key, int num)
- {
- int semid;
- int opt = 0;
- semid = semget(key, num, IPC_CREAT |0600);
- if(semid == -1)
- {
- printf("semget error.\n");
- return -1;
- }
-
- semctl(key, 0, SETVAL, opt);
-
- return semid;
- }
- int remove_sem(int semid)
- {
- if (semctl(semid, 0, IPC_RMID) < 0) {
- return -1;
- }
- return 0;
- }
- int lock_sem(int semid, int num)
- {
- struct sembuf ops[2];
-
- ops[0].sem_num = num;
- ops[0].sem_op = 0;
- ops[0].sem_flg = 0;
-
- ops[1].sem_num = num;
- ops[1].sem_op = 1;
- ops[0].sem_flg = SEM_UNDO;
-
- return semop(semid, ops, 2);
- }
- int unlock_sem(int semid, int num)
- {
- struct sembuf ops;
-
- ops.sem_num = num;
- ops.sem_op = -1;
- ops.sem_flg = SEM_UNDO;
-
- return semop(semid, &ops, 1);
-
- }
- void * produce(void *arg)
- {
- for( ; ; )
- {
- lock_sem(lock_list.semop, 1);
-
- if(lock_list.nput >= nitems)
- {
- unlock_sem(lock_list.semop, 1);
- return NULL;
- }
-
- lock_list.buf[lock_list.nput] = lock_list.nval;
- lock_list.threadid[lock_list.nput] = pthread_self();
- lock_list.nput ++ ;
- lock_list.nval ++ ;
-
-
- unlock_sem(lock_list.semop, 1);
-
- *((int *) arg) += 1 ;
- }
- }
- void *consume(void *arg)
- {
- int i;
- char file[1023];
- FILE *fp;
- int flag = 0;
- char temp[1024];
- for ( i = 0; i < nitems; i++)
- {
- if(lock_list.buf[i] != i)
- {
- flag = 1;
- printf("something error,id = %d ,num = %d.\n",i,lock_list.buf[i]);
- break;
- }
- }
-
- if(flag)
- {
- sprintf(file,"%s","2.log");
- if((fp = fopen(file,"w+")) == NULL)
- {
- printf("open file error %s \n",file);
- }
- for ( i = 0; i < nitems; i++)
- {
- memset(temp, 0, sizeof(temp));
- sprintf(temp,"%04d,%04d,pthread=%d\n",lock_list.buf[i],i,lock_list.threadid[i]);
- fputs(temp,fp);
- }
- }
-
- return(NULL);
- }
复制代码
==================================================================================
编译 aix5)
cc -o locklist locklist.c -lpthread
运行:
thread create succefully.
count[0]=2412
count[1]=2805
count[2]=1420
count[3]=596
count[4]=2817
thread realease succefully.
consume start succefully.
something error,id = 137 ,num = 0.
consume end succefully.
2.log 中的记录:
0134,0134,pthread=772
0135,0135,pthread=258
0136,0136,pthread=772
0000,0137,pthread=258 /////////////////error/////////////////?????why???????
0138,0138,pthread=258
0139,0139,pthread=772
0140,0140,pthread=258
0141,0141,pthread=772
0142,0142,pthread=258
0143,0143,pthread=772
0144,0144,pthread=258
为什么总有不对的数据呢??而且频率很高,几乎每隔一次都产生...程序那有问题,请指点!!!!!
代码附: |
|