pmem2 API version 1.0

The PMDK repository on GitHub is the ultimate source of information on PMDK from release 2.0! For all questions and to submit eventual issues please follow to that repository. The PMDK documentation collected here should be valid up to the 1.13.1 release but is maintained only on a best-effort basis and may not reflect the latest state of the art.

NAME
SYNOPSIS
DESCRIPTION
SEE ALSO

NAME

pmem2_perror() - prints a descriptive error message to stderr

SYNOPSIS

#include <libpmem2.h>

void pmem2_perror(const char *format, ...);

DESCRIPTION

The pmem2_perror() function produces a message on standard error stream describing the last error encountered during library call.

pmem2_perror() takes a variable number of arguments. First, the argument string format is printed - similarly to the printf(3), followed by a colon and a blank. Then an error message retrieved from the pmem2_errormsg(), and a new-line. To see how the error message is generated, please see pmem2_errormsg(3).

SEE ALSO

libpmem2(7), perror(3), pmem2_errormsg(3), printf(3) and https://pmem.io

The contents of this web site and the associated GitHub repositories are BSD-licensed open source.