Browse Source

Rename poll.h to aispoll.h

(Logical change 1.28)


git-svn-id: http://svn.fedorahosted.org/svn/corosync/trunk@84 fd59a12c-fef9-0310-b244-a6a79926bd2f
Steven Dake 21 năm trước cách đây
mục cha
commit
295d70a3c8
9 tập tin đã thay đổi với 12 bổ sung16 xóa
  1. 3 3
      README.devmap
  2. 1 1
      exec/Makefile
  3. 1 2
      exec/amf.c
  4. 1 1
      exec/amf.h
  5. 1 2
      exec/ckpt.c
  6. 1 2
      exec/clm.c
  7. 2 2
      exec/gmi.c
  8. 1 1
      exec/gmi.h
  9. 1 2
      exec/parse.h

+ 3 - 3
README.devmap

@@ -129,7 +129,7 @@ exec/gmi.{h|c}
 	using ring topology.  Supports extended virtual synchrony delivery semantics
 	with strong membership guarantees.
 
-	depends on cglpoll.
+	depends on aispoll.
 	depends on queue.
 	depends on sq.
 	depends on list.
@@ -154,8 +154,8 @@ exec/parse.{h|c}
 	Parsing functions for parsing /etc/ais/groups.conf and
 	/etc/ais/network.conf into internally used data structures.
 
-exec/poll.{h|c}
----------------
+exec/aispoll.{h|c}
+------------------
 	poll abstraction with support for nearly unlimited large poll handlers
 	and timer handlers.
 

+ 1 - 1
exec/Makefile

@@ -43,7 +43,7 @@ LDFLAGS = -g
 
 EXEC_OBJS = main.o clm.o amf.o ckpt.o parse.o print.o mempool.o libgmi.a
 
-GMI_OBJS = poll.o gmi.o tlist.o
+GMI_OBJS = aispoll.o gmi.o tlist.o
 
 all:libgmi.a libgmi.so.1.0 aisexec
 

+ 1 - 2
exec/amf.c

@@ -31,7 +31,6 @@
  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  * THE POSSIBILITY OF SUCH DAMAGE.
  */
-#include <sys/poll.h>
 #include <sys/types.h>
 #include <sys/socket.h>
 #include <sys/un.h>
@@ -51,7 +50,7 @@
 #include "../include/list.h"
 #include "../include/queue.h"
 #include "gmi.h"
-#include "poll.h"
+#include "aispoll.h"
 #include "mempool.h"
 #include "parse.h"
 #include "main.h"

+ 1 - 1
exec/amf.h

@@ -32,7 +32,7 @@
  * THE POSSIBILITY OF SUCH DAMAGE.
  */
 #include "../include/ais_msg.h"
-#include "poll.h"
+#include "aispoll.h"
 #include "parse.h"
 #include "handlers.h"
 

+ 1 - 2
exec/ckpt.c

@@ -31,7 +31,6 @@
  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  * THE POSSIBILITY OF SUCH DAMAGE.
  */
-#include <sys/poll.h>
 #include <sys/types.h>
 #include <sys/socket.h>
 #include <sys/un.h>
@@ -50,7 +49,7 @@
 #include "../include/ais_msg.h"
 #include "../include/list.h"
 #include "../include/queue.h"
-#include "poll.h"
+#include "aispoll.h"
 #include "mempool.h"
 #include "parse.h"
 #include "main.h"

+ 1 - 2
exec/clm.c

@@ -31,7 +31,6 @@
  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  * THE POSSIBILITY OF SUCH DAMAGE.
  */
-#include <sys/poll.h>
 #include <sys/types.h>
 #include <sys/socket.h>
 #include <sys/un.h>
@@ -56,7 +55,7 @@
 #include "../include/ais_msg.h"
 #include "../include/list.h"
 #include "../include/queue.h"
-#include "poll.h"
+#include "aispoll.h"
 #include "gmi.h"
 #include "parse.h"
 #include "main.h"

+ 2 - 2
exec/gmi.c

@@ -41,7 +41,6 @@
  */
 
 #include <assert.h>
-#include <sys/poll.h>
 #include <sys/mman.h>
 #include <sys/types.h>
 #include <sys/socket.h>
@@ -62,8 +61,9 @@
 #include <sched.h>
 #include <time.h>
 #include <sys/time.h>
+#include <sys/poll.h>
 
-#include "poll.h"
+#include "aispoll.h"
 #include "gmi.h"
 #include "../include/queue.h"
 #include "../include/sq.h"

+ 1 - 1
exec/gmi.h

@@ -34,7 +34,7 @@
 #ifndef GMI_H_DEFINED
 #define GMI_H_DEFINED
 
-#include "poll.h"
+#include "aispoll.h"
 
 #define MESSAGE_SIZE_MAX	256000
 

+ 1 - 2
exec/parse.h

@@ -31,11 +31,10 @@
  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  * THE POSSIBILITY OF SUCH DAMAGE.
  */
-#include <sys/select.h>
 #include <netinet/in.h>
 #include "../include/ais_types.h"
 #include "../include/list.h"
-#include "poll.h"
+#include "aispoll.h"
 
 #ifndef PARSE_H_DEFINED
 #define PARSE_H_DEFINED