Query: ftok
OS: netbsd
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
FTOK(3) BSD Library Functions Manual FTOK(3)NAMEftok -- create IPC identifier from path nameLIBRARYStandard C Library (libc, -lc)SYNOPSIS#include <sys/types.h> #include <sys/ipc.h> key_t ftok(const char *path, int id);DESCRIPTIONThe ftok() function attempts to create a unique key suitable for use with the msgget(2), 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. Only the 8 least significant bits of id are used in the key generation; the rest of the bits are ignored.RETURN VALUESThe ftok() function will return ((key_t)-1) if path does not exist or if it cannot be accessed by the calling process.SEE ALSOmsgget(2), semget(2), shmget(2)STANDARDSThe ftok() function conforms to IEEE Std 1003.1 (``POSIX.1'').HISTORYThe ftok() function originated with System V and is typically used by programs that use the System V IPC routines.AUTHORSThorsten Lockert <tholo@sigmasoft.com>BUGSThe returned key is computed based on the device and inode of the specified path in combination with the given id. Thus it is quite possible for the routine to return duplicate keys given that those fields are not 8- and 16-bit quantities like they were on System V based systems where this library routine's ancestor were originally created.BSDApril 27, 2010 BSD
Related Man Pages |
---|
ftok(3p) - centos |
ftok(3) - osx |
ftok(3) - centos |
ftok(3) - suse |
ftok(3) - x11r4 |
Similar Topics in the Unix Linux Community |
---|
ftok system call |
key_t type |