Query: ftok
OS: osx
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/ipc.h> key_t ftok(const char *path, int id);DESCRIPTIONThe ftok() function attempts to create a unique key suitable for use with the semget(2), and shmget(2) functions, given the path of an exist- ing 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 VALUESThe 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 ALSOsemget(2), shmget(2), compat(5)HISTORYThe ftok() function originates 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 minor number and inode of the specified path, in combination with the lower 8 bits of the given id. Thus, it is quite possible for the routine to return duplicate keys.BSDJuly 9, 2009 BSD
Related Man Pages |
---|
ftok(3p) - centos |
ftok(3) - debian |
ftok(3) - suse |
ftok(3) - netbsd |
ftok(3p) - suse |
Similar Topics in the Unix Linux Community |
---|
ftok system call |
Include CFTOKEN and CFID in apache access_log |
howto dump CFTOKEN and CFID in apache logs |