ZFCP HBA API Library 1
vlib_events.h
1/* SPDX-License-Identifier: EPL-1.0 */
2/*
3 * Copyright IBM Corp. 2003,2010
4 *
5 * Authors: Sven Schuetz <sven@de.ibm.com>
6 *
7 * File: vlib_events.h
8 *
9 * Description:
10 * Event handling functions
11 *
12 */
13
14
15#ifndef VLIB_EVENTS_H_
16#define VLIB_EVENTS_H_
17
18void free_event_queue(struct vlib_adapter *);
19void init_event_queue(struct vlib_adapter *);
20void start_event_thread();
21struct vlib_event *popEvent(struct vlib_adapter *);
22
23#endif /*VLIB_EVENTS_H_*/
Represenation of an adapter in the library.
Definition vlib.h:471
Event data structure used in the library.
Definition vlib.h:409