On Tue, 26 Apr 2011 08:17:27 +0200 (CEST) Vincent Torri <vto...@univ-evry.fr>
said:

not my actual manual pages on a linux machine:

SHM_OPEN(3)                Linux Programmer's Manual               SHM_OPEN(3)

NAME
       shm_open,  shm_unlink  -  Create/open  or  unlink  POSIX  shared memory
       objects

SYNOPSIS
       #include <sys/mman.h>
       #include <sys/stat.h>        /* For mode constants */
       #include <fcntl.h>           /* For O_* constants */

       int shm_open(const char *name, int oflag, mode_t mode);

       int shm_unlink(const char *name);

       Link with -lrt.

DESCRIPTION
       shm_open() creates and opens a new, or opens an existing, POSIX  shared
       memory  object.   A  POSIX  shared  memory object is in effect a handle
       which can be used by unrelated processes to mmap(2) the same region  of
       shared  memory.  The shm_unlink() function performs the converse opera‐
       tion, removing an object previously created by shm_open().


> 
> 
> On Mon, 25 Apr 2011, Enlightenment SVN wrote:
> 
> > Log:
> > use correct hdr in shm open check.
> >
> >
> >
> > Author:       raster
> > Date:         2011-04-25 22:12:25 -0700 (Mon, 25 Apr 2011)
> > New Revision: 58917
> > Trac:         http://trac.enlightenment.org/e/changeset/58917
> >
> > Modified:
> >  trunk/evas/configure.ac
> >
> > Modified: trunk/evas/configure.ac
> > ===================================================================
> > --- trunk/evas/configure.ac 2011-04-26 04:35:27 UTC (rev 58916)
> > +++ trunk/evas/configure.ac 2011-04-26 05:12:25 UTC (rev 58917)
> > @@ -484,7 +484,7 @@
> > AC_LINK_IFELSE(
> >    [AC_LANG_PROGRAM(
> >       [[
> > -#include <sys/types.h>
> > +#include <sys/stat.h>
> > #include <sys/mman.h>
> > #include <fcntl.h>
> >       ]],
> 
> http://linux.die.net/man/3/shm_open
> 
> Vincent
> 
> ------------------------------------------------------------------------------
> WhatsUp Gold - Download Free Network Management Software
> The most intuitive, comprehensive, and cost-effective network 
> management toolset available today.  Delivers lowest initial 
> acquisition cost and overall TCO of any competing solution.
> http://p.sf.net/sfu/whatsupgold-sd
> _______________________________________________
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> 


-- 
------------- Codito, ergo sum - "I code, therefore I am" --------------
The Rasterman (Carsten Haitzler)    ras...@rasterman.com


------------------------------------------------------------------------------
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to