Query: explain_shmat_or_die
OS: debian
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
explain_shmat_or_die(3) Library Functions Manual explain_shmat_or_die(3)NAMEexplain_shmat_or_die - shared memory attach and report errorsSYNOPSIS#include <libexplain/shmat.h> void *explain_shmat_or_die(int shmid, const void *shmaddr, int shmflg); void *explain_shmat_on_error(int shmid, const void *shmaddr, int shmflg);DESCRIPTIONThe explain_shmat_or_die function is used to call the shmat(2) system call. On failure an explanation will be printed to stderr, obtained from the explain_shmat(3) function, and then the process terminates by calling exit(EXIT_FAILURE). The explain_shmat_on_error function is used to call the shmat(2) system call. On failure an explanation will be printed to stderr, obtained from the explain_shmat(3) function, but still returns to the caller. shmid The shmid, exactly as to be passed to the shmat(2) system call. shmaddr The shmaddr, exactly as to be passed to the shmat(2) system call. shmflg The shmflg, exactly as to be passed to the shmat(2) system call.RETURN VALUEThe explain_shmat_or_die function only returns on success, see shmat(2) for more information. On failure, prints an explanation and exits, it does not return. The explain_shmat_on_error function always returns the value return by the wrapped shmat(2) system call.EXAMPLEThe explain_shmat_or_die function is intended to be used in a fashion similar to the following example: void *result = explain_shmat_or_die(shmid, shmaddr, shmflg);SEE ALSOshmat(2) shared memory attach explain_shmat(3) explain shmat(2) errors exit(2) terminate the calling processCOPYRIGHTlibexplain version 0.52 Copyright (C) 2011 Peter Miller explain_shmat_or_die(3)
Related Man Pages |
---|
shmat(2) - ultrix |
shmdt(2) - ultrix |
shmop(2) - ultrix |
shmdt(2) - opendarwin |
shmdt(2) - sunos |
Similar Topics in the Unix Linux Community |
---|
shmat() permission denied, what's this? |
shmat problem |
sharemem-f-shmat |
Problem shmat in HP-UX Titanium ia64. EINVAL Error |
shmat failed due to Cannot allocate memory |