xref: /illumos-gate/usr/src/man/man9f/csx_Event2Text.9f (revision b6805bf78d2bbbeeaea8909a05623587b42d58b3)
te
Copyright (c) 1996, 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]
CSX_EVENT2TEXT 9F "Jul 19, 1996"
NAME
csx_Event2Text - convert events to text strings
SYNOPSIS

#include <sys/pccard.h>



int32_t csx_Event2Text(event2text_t *ev);
INTERFACE LEVEL

Solaris DDI Specific (Solaris DDI)

PARAMETERS
ev

Pointer to an event2text_t structure.

DESCRIPTION

This function is a Solaris-specific extension that provides a method for clients to convert Card Services events to text strings.

STRUCTURE MEMBERS

The structure members of event2text_t are:

event_t event; /*the event code*/
char text[CS_EVENT_MAX_BUFSIZE] /*the event code*/

The fields are defined as follows: event

The text for the event code in the event field is returned in the text field.

text

The text string describing the name of the event.

RETURN VALUES
CS_SUCCESS

Successful operation.

CS_UNSUPPORTED_FUNCTION

No PCMCIA hardware installed.

CONTEXT

This function may be called from user or kernel context.

EXAMPLES

Example 1 : Using csx_Event2Text()

xx_event(event_t event, int priority, event_callback_args_t *eca)
{ 
 event2text_t event2text; 

 event2text.event = event;
 csx_Event2Text(&event2text);
 cmn_err(CE_CONT, "event %s (0x%x)", event2text.text, (int)event);
}
SEE ALSO

csx_event_handler(9E), csx_Error2Text(9F)

PC Card 95 Standard, PCMCIA/JEIDA