ZFCP HBA API Library  1
vlib_events.h
1 /*
2  * Copyright IBM Corp. 2003,2010
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Common Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.ibm.com/developerworks/library/os-cpl.html
7  *
8  * Authors: Sven Schuetz <sven@de.ibm.com>
9  *
10  * File: vlib_events.h
11  *
12  * Description:
13  * Event handling functions
14  *
15  */
16 
17 
18 #ifndef VLIB_EVENTS_H_
19 #define VLIB_EVENTS_H_
20 
21 void free_event_queue(struct vlib_adapter *);
22 void init_event_queue(struct vlib_adapter *);
23 void start_event_thread();
24 struct vlib_event *popEvent(struct vlib_adapter *);
25 
26 #endif /*VLIB_EVENTS_H_*/