]> granicus.if.org Git - libevent/commitdiff
Clean up formatting: remove trailing spaces
authorNick Mathewson <nickm@torproject.org>
Thu, 18 Feb 2010 22:46:56 +0000 (17:46 -0500)
committerNick Mathewson <nickm@torproject.org>
Thu, 18 Feb 2010 22:46:56 +0000 (17:46 -0500)
WIN32-Code/tree.h
bufferevent_async.c
compat/sys/queue.h
event.c
http.c
include/event2/util.h
iocp-internal.h
listener.c

index ba417d1ca5bb198d757791cb5288b526caa20807..585618dde0c0035e54f7a31f116d19204329b083 100644 (file)
@@ -83,7 +83,7 @@ struct {                                                              \
        SPLAY_RIGHT(tmp, field) = (head)->sph_root;                     \
        (head)->sph_root = tmp;                                         \
 } while (0)
-       
+
 #define SPLAY_ROTATE_LEFT(head, tmp, field) do {                       \
        SPLAY_RIGHT((head)->sph_root, field) = SPLAY_LEFT(tmp, field);  \
        SPLAY_LEFT(tmp, field) = (head)->sph_root;                      \
@@ -760,7 +760,7 @@ struct {                                                            \
        SPLAY_RIGHT(tmp, field) = (head)->sph_root;                     \
        (head)->sph_root = tmp;                                         \
 } while (0)
-       
+
 #define SPLAY_ROTATE_LEFT(head, tmp, field) do {                       \
        SPLAY_RIGHT((head)->sph_root, field) = SPLAY_LEFT(tmp, field);  \
        SPLAY_LEFT(tmp, field) = (head)->sph_root;                      \
index aa9ee513d41d67c1ede11d60c091add16a39ab4b..fc99696c670a4075304ad07189d665d489bfd9cc 100644 (file)
@@ -203,7 +203,7 @@ be_async_outbuf_callback(struct evbuffer *buf,
        struct bufferevent *bev = arg;
        struct bufferevent_async *bev_async = upcast(bev);
 
-       /* If we added data to the outbuf and were not writing before, 
+       /* If we added data to the outbuf and were not writing before,
         * we may want to write now. */
 
        _bufferevent_incref_and_lock(bev);
index c0956ddce43eaa2907531344234da61546b14c1b..7bb87c2940e25dbdbc36b00cf9b1172b1b711b2f 100644 (file)
@@ -36,7 +36,7 @@
 #define        _SYS_QUEUE_H_
 
 /*
- * This file defines five types of data structures: singly-linked lists, 
+ * This file defines five types of data structures: singly-linked lists,
  * lists, simple queues, tail queues, and circular queues.
  *
  *
@@ -89,7 +89,7 @@
 struct name {                                                          \
        struct type *slh_first; /* first element */                     \
 }
+
 #define        SLIST_HEAD_INITIALIZER(head)                                    \
        { NULL }
 
@@ -287,8 +287,8 @@ struct {                                                            \
        struct type **tqe_prev; /* address of previous next element */  \
 }
 
-/* 
- * tail queue access methods 
+/*
+ * tail queue access methods
  */
 #define        TAILQ_FIRST(head)               ((head)->tqh_first)
 #define        TAILQ_END(head)                 NULL
@@ -391,7 +391,7 @@ struct {                                                            \
 }
 
 /*
- * Circular queue access methods 
+ * Circular queue access methods
  */
 #define        CIRCLEQ_FIRST(head)             ((head)->cqh_first)
 #define        CIRCLEQ_LAST(head)              ((head)->cqh_last)
diff --git a/event.c b/event.c
index fda7b66c7a67d370ac84741077d4e0bd4952a5f0..88ec2cdd9451b06cdb0e7913f58f492e4a6e75f3 100644 (file)
--- a/event.c
+++ b/event.c
@@ -878,7 +878,7 @@ event_base_priority_init(struct event_base *base, int npriorities)
                return (-1);
        }
        base->nactivequeues = npriorities;
-                               
+
        for (i = 0; i < base->nactivequeues; ++i) {
                TAILQ_INIT(&base->activequeues[i]);
        }
diff --git a/http.c b/http.c
index 635b2c3857420801fd2a2a8d441347270adac66d..e5c9704ff118cf821efb12e2be006b528c6e0775 100644 (file)
--- a/http.c
+++ b/http.c
@@ -1434,7 +1434,7 @@ evhttp_add_header(struct evkeyvalq *headers,
                event_debug(("%s: dropping illegal header key\n", __func__));
                return (-1);
        }
-       
+
        if (!evhttp_header_is_valid_value(value)) {
                event_debug(("%s: dropping illegal header value\n", __func__));
                return (-1);
index 8de9b28b06d5c81709c99c1513bb549d7d4f3d6c..013a7de4f27551253771fed103ac438d88264972 100644 (file)
@@ -232,7 +232,7 @@ int evutil_make_listen_socket_reuseable(evutil_socket_t sock);
 
 /** Do platform-specific operations as needed to close a socket upon a
     successful execution of one of the exec*() functions.
+
     @param sock The socket to be closed
     @return 0 on success, -1 on failure
  */
index a25008c0c5d0dded239592b023ae0b9b9df5eb46..caad65087862d35745d32672f7cb20134c2fe36e 100644 (file)
@@ -124,7 +124,7 @@ void _evbuffer_overlapped_set_fd(struct evbuffer *buf, evutil_socket_t fd);
     An evbuffer can only have one read pending at a time.  While the read
     is in progress, no other data may be added to the end of the buffer.
     The buffer must be created with event_overlapped_init().
-    evbuffer_commit_read() must be called in the completion callback. 
+    evbuffer_commit_read() must be called in the completion callback.
 
     @param buf The buffer to read onto
     @param n The number of bytes to try to read.
@@ -138,7 +138,7 @@ int evbuffer_launch_read(struct evbuffer *buf, size_t n, struct event_overlapped
     An evbuffer can only have one write pending at a time.  While the write is
     in progress, no other data may be removed from the front of the buffer.
     The buffer must be created with event_overlapped_init().
-    evbuffer_commit_write() must be called in the completion callback. 
+    evbuffer_commit_write() must be called in the completion callback.
 
     @param buf The buffer to read onto
     @param n The number of bytes to try to read.
index 9a8e99dda3be2544b8c95033af3286955cec7a46..489f98990c8f41848fe5a4943a0d7cdd2759d155 100644 (file)
@@ -194,7 +194,7 @@ evconnlistener_new_bind(struct event_base *base, evconnlistener_cb cb,
        listener = evconnlistener_new(base, cb, ptr, flags, backlog, fd);
        if (!listener) {
                EVUTIL_CLOSESOCKET(fd);
-               return NULL;                            
+               return NULL;
        }
 
        return listener;