Chinaunix首页 | 论坛 | 博客
  • 博客访问: 280283
  • 博文数量: 76
  • 博客积分: 1500
  • 博客等级: 上尉
  • 技术积分: 594
  • 用 户 组: 普通用户
  • 注册时间: 2011-08-05 23:43
文章分类

全部博文(76)

文章存档

2014年(4)

2013年(3)

2012年(20)

2011年(49)

分类: LINUX

2011-09-21 12:09:03

转载于 http://hi.baidu.com/feng2211/blog/item/a44841ca6b8d138bc91768cf.html

讲解1......................................................
 
2010-07-26 10:31

信号量的数据类型为结构sem_t,它本质上是一个长整型的数。函数sem_init()用来初始化一个信号量。它的原型为:  

extern int sem_init __P ((sem_t *__sem, int __pshared, unsigned int __value));  

sem为指向信号量结构的一个指针;pshared不为0时此信号量在进程间共享,否则只能为当前进程的所有线程共享;value给出了信号量的初始值。  

函数sem_post( sem_t *sem )用来增加信号量的值。当有线程阻塞在这个信号量上时,调用这个函数会使其中的一个线程不在阻塞,选择机制同样是由线程的调度策略决定的。  

函数sem_wait( sem_t *sem )被用来阻塞当前线程直到信号量sem的值大于0,解除阻塞后将sem的值减一,表明公共资源经使用后减少。函数sem_trywait ( sem_t *sem )是函数sem_wait()的非阻塞版本,它直接将信号量sem的值减一。  

函数sem_destroy(sem_t *sem)用来释放信号量sem。 

信号量用sem_init函数创建的,下面是它的说明:
  #include
 int sem_init (sem_t *sem, int pshared, unsigned int value);

 这个函数的作用是对由sem指定的信号量进行初始化,设置好它的共享选项,并指定一个整数类型的初始值。pshared参数控制着信号量的类型。如果 pshared的值是0,就表示它是当前里程的局部信号量;否则,其它进程就能够共享这个信号量。我们现在只对不让进程共享的信号量感兴趣。 (这个参数受版本影响), pshared传递一个非零将会使函数调用失败。

  这两个函数控制着信号量的值,它们的定义如下所示:
  
  #include
 int sem_wait(sem_t * sem);
 int sem_post(sem_t * sem);

 这两个函数都要用一个由sem_init调用初始化的信号量对象的指针做参数。
 sem_post函数的作用是给信号量的值加上一个“1”,它是一个“原子操作”---即同时对同一个信号量做加“1”操作的两个线程是不会冲突的;而同时对同一个文件进行读、加和写操作的两个程序就有可能会引起冲突。信号量的值永远会正确地加一个“2”--因为有两个线程试图改变它。
 sem_wait函数也是一个原子操作,它的作用是从信号量的值减去一个“1”,但它永远会先等待该信号量为一个非零值才开始做减法。也就是说,如果你对一个值为2的信号量调用sem_wait(),线程将会继续执行,介信号量的值将减到1。如果对一个值为0的信号量调用sem_wait(),这个函数就会地等待直到有其它线程增加了这个值使它不再是0为止。如果有两个线程都在sem_wait()中等待同一个信号量变成非零值,那么当它被第三个线程增加一个“1”时,等待线程中只有一个能够对信号量做减法并继续执行,另一个还将处于等待状态。
 信号量这种“只用一个函数就能原子化地测试和设置”的能力下正是它的价值所在。还有另外一个信号量函数sem_trywait,它是sem_wait的非阻塞搭档。

 最后一个信号量函数是sem_destroy。这个函数的作用是在我们用完信号量对它进行清理。下面的定义:
 #include
 int sem_destroy (sem_t *sem);
 这个函数也使用一个信号量指针做参数,归还自己战胜的一切资源。在清理信号量的时候如果还有线程在等待它,用户就会收到一个错误。
 与其它的函数一样,这些函数在成功时都返回“0”。

  1. #include <stdio.h>
  2. #include <unistd.h>
  3. #include <stdlib.h>
  4. #include <string.h>
  5. #include <pthread.h>
  6. #include <semaphore.h>

  7. sem_t bin_sem;
  8. void *thread_function1(void *arg)
  9. {
  10. printf("thread_function1--------------sem_wait\n");
  11. sem_wait(&bin_sem);
  12. printf("sem_wait\n");
  13. while (1)
  14. {
  15. }
  16. }

  17. void *thread_function2(void *arg)
  18. {
  19. printf("thread_function2--------------sem_post\n");
  20. sem_post(&bin_sem);
  21. printf("sem_post\n");
  22. while (1)
  23. {
  24. }
  25. }



  26. int main()
  27. {
  28. int res;
  29. pthread_t a_thread;
  30. void *thread_result;

  31. res = sem_init(&bin_sem, 0, 0);
  32. if (res != 0)
  33. {
  34.  perror("Semaphore initialization failed");
  35. }
  36.  printf("sem_init\n");
  37. res = pthread_create(&a_thread, NULL, thread_function1, NULL);
  38. if (res != 0)
  39. {
  40.  perror("Thread creation failure");
  41. }
  42. printf("thread_function1\n");
  43. sleep (5);
  44. printf("sleep\n");
  45. res = pthread_create(&a_thread, NULL, thread_function2, NULL);
  46. if (res != 0)
  47. {
  48.  perror("Thread creation failure");
  49. }
  50. while (1)
  51. {
  52. }
  53. }

sem_init
thread_function1
thread_function1--------------sem_wait
sleep
thread_function2--------------sem_post
sem_wait
sem_post


讲解2.....................................................

   在.net中可以用事件很容易去做触发操作,但是在Linux中就得用信号量了.

      Linux下关于信号量结构体表示为:sem_t

      操作结构体的函数:

      初始化函数: sem_init(sem_t * __sem,int __pshared,unsigned int __value);

      触发信号量值:sem_post(sem_t * __sem);

      等待信号量触发:

      通常有:

      一直等待:sem_wait(sem_t * __sem);  

      测试__sem是否触发:sem_trywait(sem_t * __sem); 

      等待超时:sem_timedwait(sem_t * __restrict __sem, __ const struct timespec * __restrict __abstime);

      释放销毁信号量:

      sem _destroy(sem_t * __sem);

     

      下面是一个例子:

#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
 
void Thread1(void);
void Thread2(void);
void Thread3(void);
 
int Alex=0;
 
sem_t sem12;
 
sem_t sem13;
 
int main(void)
{
 
  pthread_t pid1,pid2,pid3;
  printf("this is Main Thread!\n");
 
 int ret= sem_init(&sem12,0,0);
 if(ret !=0)
 {
   printf("sem12 init Fail!\n");
   return ret;
 }
 ret = sem_init(&sem13,0,0);
 if(ret !=0)
 {
   printf("Sem13 init fail\n");
   return ret;
 }
 
 pthread_create(&pid1,NULL,(void *)Thread1,NULL);
 
 pthread_create(&pid2,NULL,(void *)Thread2,NULL);
 
 pthread_create(&pid3,NULL,(void *)Thread3,NULL);
 
 pthread_join(pid1,NULL);
 pthread_join(pid2,NULL);
 pthread_join(pid3,NULL);
 
 sem_destroy(&sem12);
 sem_destroy(&sem13);
}
 
void Thread1(void)
{
  printf("This is Thread1!\n");
  int input;
  printf ("put an number:\n");
  getchar();
  sem_post(&sem12);
  sem_post(&sem13);
  
  printf("Thread1 Completed!\n");
}
 
void Thread2(void)
{
  printf("This is Thread2!\n");
  sem_wait(&sem12);
  printf("Thread2 Completed!\n");
}
 
void Thread3(void)
{
  struct timespec ts;
  printf("This is Thread3!\n");
 
  ts.tv_sec = time(NULL)+10;  //等待10秒超时
  int s=sem_timedwait(&sem13,&ts);
  if(s == -1)
  {
    printf ("Thread3 wait timeout\n");
    return;
  }
  printf("Thread3 Completed!\n");
}
阅读(896) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~