correct iovent macro define

pull/2/head
yuqing 2014-10-31 09:28:04 +08:00
parent 865cb7032a
commit 81a45e7253
3 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
Version 1.10 2014-11-01
* correct iovent macro define
Version 1.09 2014-10-26
* Version struct add variable: patch
* get local ipaddr support interface based 1

View File

@ -1,5 +1,5 @@
Name: libfastcommon
Version: 1.0.9
Version: 1.0.10
Release: 1%{?dist}
Summary: c common functions library extracted from my open source projects FastDFS
License: GPL

View File

@ -26,7 +26,7 @@
#define KPOLLHUP 0x020
#define IOEVENT_READ KPOLLIN
#define IOEVENT_WRITE KPOLLOUT
#define IOEVENT_ERROR (KPOLLHUP | KPOLLPRI | KPOLLHUP)
#define IOEVENT_ERROR (KPOLLERR | KPOLLPRI | KPOLLHUP)
#ifdef __cplusplus
extern "C" {