....">

当前位置:  技术问答>linux和unix

请问关于信号量的问题

    来源: 互联网  发布时间:2015-11-06

    本文导语:  //createsem.c #include  #include  #include "common.h" int main() { int semid;        /* Create the semaphore with the id MY_SEM_ID */ semid = semget( MY_SEM_ID, 1, 0666 | IPC_CREAT );       if (semid >= 0) {   printf( "semcreate: Created a...

//createsem.c

#include 
#include 
#include "common.h"

int main()
{
int semid;
      
/* Create the semaphore with the id MY_SEM_ID */
semid = semget( MY_SEM_ID, 1, 0666 | IPC_CREAT );
     
if (semid >= 0) {

  printf( "semcreate: Created a semaphore %dn", semid );

    }
      
        return 0;
}





//semacq.c
#include 
#include 
#include 
#include "common.h"
      
 int main()
 {
      int s e m i d;
      struct  s e m b u f             s b;
    
     /* Get the semaphore with the id MY_SEM_ID */
      s e m i d = semget( MY_SEM_ID, 1, 0 );
     
     if (sem_id >= 0) 
     {
     
        s b.s e m n u m = 0;
        s b.s e m o p = -1;
        s b.s e m f l g = 0;
     
        printf( "semacq: Attempting to acquire semaphore %dn", semid );
   
        /* Acquire the semaphore */
        if ( s e m o p( s e m i d, &s b, 1 ) == -1 ) {
       
             printf( "semacq: semop failed.n" );
              exit(-1);
   
           }
       
        printf( "semacq: Semaphore acquired %dn", sem_id );
     
       }
     
       return 0;
}






//semrel.c
#include 
#include 
#include 
#include "common.h"
    
int main()
   {
      int s e m i d;
      struct s e m b u f     sb;
 
      /* Get the semaphore with the id MY_SEM_ID */
       semid = semget( MY_SEM_ID, 1, 0 );

      if (semid >= 0) 
      {
 
       printf( "semrel: Releasing semaphore %dn", semid );

       s b.s e m n u m = 0;
       s b.s e m o p  = 1;
        s b.s e m f l g = 0;
 
       /* Release the semaphore */
       if (s e m o p( s e m i d, &s b, 1 ) == -1) 
       {

            printf("semrel: semop failed.n");
            exit(-1);
       }

       printf( "semrel: Semaphore released %dn", semid );

       }
      
      return 0;
}




In shell command prompt,I excuted them like this:
Listing 16.4: Execution of the Sample Semaphore Applications 
 

     1:       # ./semcreate
     2:       semcreate: Created a semaphore 1376259
     3:       # ./semacq &
     4:       [1] 12189
     5:       semacq: Attempting to acquire semaphore 1376259
     6:       # ./semrel
     7:       semrel: Releasing semaphore 1376259
     8:       semrel: Semaphore released 1376259
     9:       # semacq: Semaphore acquired 1376259
     10:       
     11:       [1]+  Done                    ./semacq
     12:       #

|
进程1只是创建了信号量,还没初始化呢。
进程3的Release过程在第一次执行就相当于是初始化。

|
先问楼主,明白了什么叫信号量了吗?
两个进程都拥有了,怎么来区分谁获得了啊?怎么做进程的互斥啊?

    
 
 

您可能感兴趣的文章:

  • 请问unix下如何设置信号量超时?
  • 请问线程中的信号量,怎么设置成0,1信号量?
  • 请问下,在嵌入式linux驱动里面可不可以用信号量?
  • 请问:p,v对共享区进行操作时, 需要几个信号量啊,一个行不行啊?
  • 请问互斥和二值信号量的区别
  • 请问在单进程,多线程程序里,线程间使用IPC的信号量来同步,能行吗?
  • 请问什么时候发出SIGKILL信号、什么时候发出SIGTERM信号?
  • 请问那些linux信号是不能捕捉的?
  • 请问:我想让配置文件变更后,发一个信号,从而让守护进程重新加载配置,程序思路大约是怎样的啊?
  • 请问怎样发送键盘信号?
  • 请问linux下套接字读就绪产生什么信号
  • 请问:signal(), sigaction()函数会不会使自已所有的进程挂起啊,(这样就等接收各种信号,进行一些处理工作啊)
  • BM xSeries 336 开机,但是键盘鼠标显示器均无信号,请问如何解决
  • 请问大家做铁路信号的开发的前景怎么样
  • 请问下 在信号时经常看到for( ;;)那是什么意思啊?
  • 请问:向进程中的pause()发送一个SIGALRM信号,线程就直接退出了,为什么啊?
  • 请问如何知道一个数字对应的是什么信号
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 请问玩过SOLARIS的高手门,在不正常关机后,就不能启动到windows公用桌面了,只能在命令提示模式下了,请问怎么解决这个问题啊?急~!~!
  • 请问:在GCC里的C程序里的变量的声明是不是只能在前面,而且相同类型的变量的声明只能放在一起?如果不是,请问怎么样可以解决这个问题.
  • 请问linux下GUI开发的问题!
  • 请问一个奇怪的问题!
  • 非常急! 请问daemontools 在red hat 9下的安装问题? 在线等待
  • 请问安装zhcon,cxterm问题
  • 请问如何在一台单机上装VMware的网络访问问题?
  • 请问adduser的一个问题!
  • 请问在Jbuilder 7中, 做swing界面, 用JDK1.4,怎么解决中文显示问题?
  • 请问一个很菜的问题
  • 请问关于为redhat7.2设置多IP问题?急!
  • 请问一个简单问题!
  • 请问一个基本的问题?
  • 请问各位大侠一个关于jar命令问题
  • 请问高手___redhat7.3安装问题
  • 正想学linux 请问red hat版本之间的问题
  • 请问这里可以讨论MINIX的问题吗?
  • 请问FreeBSD拨号问题
  • 请问这个问题怎么解决啊?
  • 今天搞来一台Solaris,真高兴啊,请问一些问题,怎么退出TELNET?
  • 请问:我知道路由器的telnet密码,但忘记了enable 密码,请问如何是好?
  • 请问那里有SYBASE的jbdb 2.0下载;jspsmartupload可以直接将文件上传到数据库,请问如何使用
  • 请问最新的reahat9.0是基于什么核心的?2.4?2.6?请问那里能下载?
  • 请问:请问哪里有关于linux基本操作命令讲解的资料下载,最好是幻灯片格式的.
  • 请问,我试图用#admintool&图形工具命令来安装sun workshop5.0,为什么进入的却是用户管理界面?请问具体该如何在solaris下安装应用软件
  • 请问在Redhat 9里,我从登录就是图形介面,请问如何在图形介面内进入命令行方式呢,谢谢
  • 请问:我在redhat下装了bochs-2.2.1-1.rpm,.装了后,想设置一下,但找不到bochsrc.fda.bxrc,请问这个文件在哪个曰录下啊。
  • 请问:在配置Qt时,很多文档都说在.profile,.login里加东西,但是我好像没有发现有这两个文件上,请问这些文件在哪个目录下啊
  • 请问各位大虾,小弟今天开始学jsp了,这学期我们有java课,所以已经下载了jdk(好象是1.2),请问我的98环境怎么配置jsp环境呀?我的jdk可以运行.java程序,别的我就不知道了....谢谢!
  • 主机是WIN2000,我用的是LUNIX,请问是否可以共享上网? 如果可以请问如何设置? 500分答谢,龟儿食言!
  • 请问出现fstab文件丢失该怎么修复呀?


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3