posix_trace_timedgetnext_event (3p) - Linux Manuals
posix_trace_timedgetnext_event: retrieve a trace event
PROLOG
This manual page is part of the POSIX Programmer's Manual. The Linux implementation of this interface may differ (consult the corresponding Linux manual page for details of Linux behavior), or the interface may not be implemented on Linux.NAME
posix_trace_getnext_event, posix_trace_timedgetnext_event, posix_trace_trygetnext_event - retrieve a trace event (TRACING)
SYNOPSIS
#include <sys/types.h>
#include <trace.h>
int posix_trace_getnext_event(trace_id_t trid,
int posix_trace_timedgetnext_event(trace_id_t trid,
int posix_trace_trygetnext_event(trace_id_t trid,
DESCRIPTION
The posix_trace_getnext_event() function shall report a recorded
trace event either from an active trace stream without
log
The trace event information associated with the recorded trace event
shall be copied by the function into the structure pointed
to by the argument event and the data associated with the trace
event shall be copied into the buffer pointed to by the
data argument.
The posix_trace_getnext_event() function shall block if the
trid argument identifies an active trace stream and
there is currently no trace event ready to be retrieved. When returning,
if a recorded trace event was reported, the variable
pointed to by the unavailable argument shall be set to zero.
Otherwise, the variable pointed to by the unavailable
argument shall be set to a value different from zero.
The timeout shall expire when the absolute time specified by abs_timeout
passes, as measured by the clock upon which
timeouts are based (that is, when the value of that clock equals or
exceeds abs_timeout), or if the absolute time specified
by abs_timeout has already passed at the time of the call.
Under no circumstance shall the function fail with a timeout if a
trace event is immediately available from the trace stream. The
validity of the abs_timeout argument need not be checked if
a trace event is immediately available from the trace
stream.
The behavior of this function for a pre-recorded trace stream is unspecified.
The posix_trace_trygetnext_event() function shall not block.
The argument num_bytes shall be the size of the buffer pointed
to by the data argument. The argument
data_len reports to the application the length in bytes of the
data record just transferred. If num_bytes is greater
than or equal to the size of the data associated with the trace event
pointed to by the event argument, all the recorded
data shall be transferred. In this case, the truncation-status
member of the trace event structure shall be either
POSIX_TRACE_NOT_TRUNCATED, if the trace event data was recorded without
truncation while tracing, or POSIX_TRACE_TRUNCATED_RECORD,
if the trace event data was truncated when it was recorded. If the
num_bytes argument is less than the length of recorded
trace event data, the data transferred shall be truncated to a length
of num_bytes, the value stored in the variable pointed
to by data_len shall be equal to num_bytes, and the truncation-status
member of the event structure
argument shall be set to POSIX_TRACE_TRUNCATED_READ (see the posix_trace_event_info
structure defined in <trace.h>).
The report of a trace event shall be sequential starting from the
oldest recorded trace event. Trace events shall be reported in
the order in which they were generated, up to an implementation-defined
time resolution that causes the ordering of trace events
occurring very close to each other to be unknown. Once reported, a
trace event cannot be reported again from an active trace
stream. Once a trace event is reported from an active trace stream
without log, the trace stream shall make the resources
associated with that trace event available to record future generated
trace events.
Upon successful completion, these functions shall return a value of
zero. Otherwise, they shall return the corresponding error
number.
If successful, these functions store:
These functions shall fail if:
The posix_trace_getnext_event() and posix_trace_timedgetnext_event()
functions shall fail if:
The posix_trace_trygetnext_event() function shall fail if:
The posix_trace_timedgetnext_event() function shall fail if:
The following sections are informative.
posix_trace_create(), posix_trace_open(), the Base Definitions
volume of IEEE Std 1003.1-2001, <sys/types.h>, <trace.h>
RETURN VALUE
ERRORS
EXAMPLES
APPLICATION USAGE
RATIONALE
FUTURE DIRECTIONS
COPYRIGHT
Portions of this text are reprinted and reproduced in electronic form
from IEEE Std 1003.1, 2003 Edition, Standard for Information Technology
-- Portable Operating System Interface (POSIX), The Open Group Base
Specifications Issue 6, Copyright (C) 2001-2003 by the Institute of
Electrical and Electronics Engineers, Inc and The Open Group. In the
event of any discrepancy between this version and the original IEEE and
The Open Group Standard, the original IEEE and The Open Group Standard
is the referee document. The original Standard can be obtained online at
http://www.opengroup.org/unix/online.html .
SEE ALSO