xref: /illumos-gate/usr/src/man/man3exacct/ea_error.3exacct (revision 3580e26c24814e4d892b1eae539b8761388f79f1)
te
Copyright (c) 2001, Sun Microsystems, Inc. All Rights Reserved
The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License.
You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License.
When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
EA_ERROR 3EXACCT "Nov 29, 2001"
NAME
ea_error - error interface to extended accounting library
SYNOPSIS

cc [ flag.\|.\|. ] file.\|.\|. -lexacct [ library .\|.\|. ]
#include <exacct.h>

int ea_error(void);
DESCRIPTION

The ea_error() function returns the error value of the last failure recorded by the invocation of one of the functions of the extended accounting library, libexacct.

RETURN VALUES
EXR_CORRUPT_FILE

A function failed because the file was not a valid exacct file.

EXR_EOF

A function detected the end of the file, either when reading forwards or backwards through the file.

EXR_INVALID_BUF

When unpacking an object, an invalid unpack buffer was specified.

EXR_INVALID_OBJ

The object type passed to the function is not valid for the requested operation, for example passing a group object to ea_set_item(3EXACCT).

EXR_NO_CREATOR

When creating a new file no creator was specified, or when opening a file for reading the creator value did not match the value in the file.

EXR_NOTSUPP

An unsupported type of access was attempted, for example attempting to write to a file that was opened read-only.

EXR_OK

The function completed successfully.

EXR_SYSCALL_FAIL

A system call invoked by the function failed. The errno variable contains the error value set by the underlying call.

EXR_UNKN_VERSION

The file referred to by name uses an exacct file version that cannot be processed by this library.

ATTRIBUTES

See attributes(7) for descriptions of the following attributes:

ATTRIBUTE TYPE ATTRIBUTE VALUE
Interface Stability Evolving
MT-Level MT-Safe
SEE ALSO

read (2), libexacct (3LIB), attributes (7)