This manual page is for Mac OS X version 10.6.3

If you are running a different version of Mac OS X, view the documentation locally:

  • In Terminal, using the man(1) command

Reading manual pages

Manual pages are intended as a quick reference for people who already understand a technology.

  • For more information about the manual page format, see the manual page for manpages(5).

  • For more information about this technology, look for other documentation in the Apple Reference Library.

  • For general information about writing shell scripts, read Shell Scripting Primer.



FTOK(3)                                 BSD Library Functions Manual                                 FTOK(3)

NAME
     ftok -- create IPC identifier from path name

LIBRARY
     Standard C Library (libc, -lc)

SYNOPSIS
     #include <sys/ipc.h>

     key_t
     ftok(const char *path, int id);

DESCRIPTION
     The ftok() function attempts to create a unique key suitable for use with the msgget(3), semget(2), and
     shmget(2) functions, given the path of an existing file and a user-selectable id.

     The specified path must specify an existing file that is accessible to the calling process or the call
     will fail.  Also, note that links to files will return the same key, given the same id.

RETURN VALUES
     The ftok() function will return -1 if path does not exist or if it cannot be accessed by the calling
     process.

LEGACY SYNOPSIS
     #include <sys/types.h>
     #include <sys/ipc.h>

     The include file <sys/types.h> is necessary.

SEE ALSO
     semget(2), shmget(2), msgget(3), compat(5)

HISTORY
     The ftok() function originates with System V and is typically used by programs that use the System V
     IPC routines.

AUTHORS
     Thorsten Lockert <tholo@sigmasoft.com>

BUGS
     The returned key is computed based on the device minor number and inode of the specified path, in com-bination combination
     bination with the lower 8 bits of the given id.  Thus, it is quite possible for the routine to return
     duplicate keys.

BSD                                             June 24, 1994                                            BSD

Reporting Problems

The way to report a problem with this manual page depends on the type of problem:

Content errors
Report errors in the content of this documentation with the feedback links below.
Bug reports
Report bugs in the functionality of the described tool or API through Bug Reporter.
Formatting problems
Report formatting mistakes in the online version of these pages with the feedback links below.

Did this document help you? Yes It's good, but... Not helpful...