ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libev/ev.c
(Generate patch)

Comparing libev/ev.c (file contents):
Revision 1.12 by root, Wed Oct 31 09:23:17 2007 UTC vs.
Revision 1.22 by root, Wed Oct 31 19:07:43 2007 UTC

1/*
2 * Copyright (c) 2007 Marc Alexander Lehmann <libev@schmorp.de>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met:
8 *
9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 *
12 * * Redistributions in binary form must reproduce the above
13 * copyright notice, this list of conditions and the following
14 * disclaimer in the documentation and/or other materials provided
15 * with the distribution.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
1#include <math.h> 30#include <math.h>
2#include <stdlib.h> 31#include <stdlib.h>
3#include <unistd.h> 32#include <unistd.h>
4#include <fcntl.h> 33#include <fcntl.h>
5#include <signal.h> 34#include <signal.h>
35#include <stddef.h>
6 36
7#include <stdio.h> 37#include <stdio.h>
8 38
9#include <assert.h> 39#include <assert.h>
10#include <errno.h> 40#include <errno.h>
41#include <sys/types.h>
42#include <sys/wait.h>
11#include <sys/time.h> 43#include <sys/time.h>
12#include <time.h> 44#include <time.h>
13
14#define HAVE_EPOLL 1
15 45
16#ifndef HAVE_MONOTONIC 46#ifndef HAVE_MONOTONIC
17# ifdef CLOCK_MONOTONIC 47# ifdef CLOCK_MONOTONIC
18# define HAVE_MONOTONIC 1 48# define HAVE_MONOTONIC 1
19# endif 49# endif
31# define HAVE_REALTIME 1 /* posix requirement, but might be slower */ 61# define HAVE_REALTIME 1 /* posix requirement, but might be slower */
32#endif 62#endif
33 63
34#define MIN_TIMEJUMP 1. /* minimum timejump that gets detected (if monotonic clock available) */ 64#define MIN_TIMEJUMP 1. /* minimum timejump that gets detected (if monotonic clock available) */
35#define MAX_BLOCKTIME 60. 65#define MAX_BLOCKTIME 60.
66#define PID_HASHSIZE 16 /* size of pid hahs table, must be power of two */
36 67
37#include "ev.h" 68#include "ev.h"
38
39struct ev_watcher {
40 EV_WATCHER (ev_watcher);
41};
42
43struct ev_watcher_list {
44 EV_WATCHER_LIST (ev_watcher_list);
45};
46
47struct ev_watcher_time {
48 EV_WATCHER_TIME (ev_watcher_time);
49};
50 69
51typedef struct ev_watcher *W; 70typedef struct ev_watcher *W;
52typedef struct ev_watcher_list *WL; 71typedef struct ev_watcher_list *WL;
53typedef struct ev_watcher_time *WT; 72typedef struct ev_watcher_time *WT;
54 73
95 114
96#define array_needsize(base,cur,cnt,init) \ 115#define array_needsize(base,cur,cnt,init) \
97 if ((cnt) > cur) \ 116 if ((cnt) > cur) \
98 { \ 117 { \
99 int newcnt = cur ? cur << 1 : 16; \ 118 int newcnt = cur ? cur << 1 : 16; \
100 fprintf (stderr, "resize(" # base ") from %d to %d\n", cur, newcnt);\
101 base = realloc (base, sizeof (*base) * (newcnt)); \ 119 base = realloc (base, sizeof (*base) * (newcnt)); \
102 init (base + cur, newcnt - cur); \ 120 init (base + cur, newcnt - cur); \
103 cur = newcnt; \ 121 cur = newcnt; \
104 } 122 }
105 123
138static int pendingmax, pendingcnt; 156static int pendingmax, pendingcnt;
139 157
140static void 158static void
141event (W w, int events) 159event (W w, int events)
142{ 160{
161 if (w->active)
162 {
143 w->pending = ++pendingcnt; 163 w->pending = ++pendingcnt;
144 array_needsize (pendings, pendingmax, pendingcnt, ); 164 array_needsize (pendings, pendingmax, pendingcnt, );
145 pendings [pendingcnt - 1].w = w; 165 pendings [pendingcnt - 1].w = w;
146 pendings [pendingcnt - 1].events = events; 166 pendings [pendingcnt - 1].events = events;
167 }
147} 168}
148 169
149static void 170static void
150fd_event (int fd, int events) 171fd_event (int fd, int events)
151{ 172{
166{ 187{
167 int i; 188 int i;
168 189
169 for (i = 0; i < eventcnt; ++i) 190 for (i = 0; i < eventcnt; ++i)
170 event (events [i], type); 191 event (events [i], type);
192}
193
194/* called on EBADF to verify fds */
195static void
196fd_recheck ()
197{
198 int fd;
199
200 for (fd = 0; fd < anfdmax; ++fd)
201 if (anfds [fd].wev)
202 if (fcntl (fd, F_GETFD) == -1 && errno == EBADF)
203 while (anfds [fd].head)
204 evio_stop (anfds [fd].head);
171} 205}
172 206
173/*****************************************************************************/ 207/*****************************************************************************/
174 208
175static struct ev_timer **timers; 209static struct ev_timer **timers;
293/*****************************************************************************/ 327/*****************************************************************************/
294 328
295static struct ev_idle **idles; 329static struct ev_idle **idles;
296static int idlemax, idlecnt; 330static int idlemax, idlecnt;
297 331
332static struct ev_prepare **prepares;
333static int preparemax, preparecnt;
334
298static struct ev_check **checks; 335static struct ev_check **checks;
299static int checkmax, checkcnt; 336static int checkmax, checkcnt;
337
338/*****************************************************************************/
339
340static struct ev_child *childs [PID_HASHSIZE];
341static struct ev_signal childev;
342
343#ifndef WCONTINUED
344# define WCONTINUED 0
345#endif
346
347static void
348childcb (struct ev_signal *sw, int revents)
349{
350 struct ev_child *w;
351 int pid, status;
352
353 while ((pid = waitpid (-1, &status, WNOHANG | WUNTRACED | WCONTINUED)) != -1)
354 for (w = childs [pid & (PID_HASHSIZE - 1)]; w; w = w->next)
355 if (w->pid == pid || w->pid == -1)
356 {
357 w->status = status;
358 event ((W)w, EV_CHILD);
359 }
360}
300 361
301/*****************************************************************************/ 362/*****************************************************************************/
302 363
303#if HAVE_EPOLL 364#if HAVE_EPOLL
304# include "ev_epoll.c" 365# include "ev_epoll.c"
334 395
335 if (ev_method) 396 if (ev_method)
336 { 397 {
337 evw_init (&sigev, sigcb); 398 evw_init (&sigev, sigcb);
338 siginit (); 399 siginit ();
400
401 evsignal_init (&childev, childcb, SIGCHLD);
402 evsignal_start (&childev);
339 } 403 }
340 404
341 return ev_method; 405 return ev_method;
342} 406}
343 407
396} 460}
397 461
398static void 462static void
399call_pending () 463call_pending ()
400{ 464{
401 int i; 465 while (pendingcnt)
402
403 for (i = 0; i < pendingcnt; ++i)
404 { 466 {
405 ANPENDING *p = pendings + i; 467 ANPENDING *p = pendings + --pendingcnt;
406 468
407 if (p->w) 469 if (p->w)
408 { 470 {
409 p->w->pending = 0; 471 p->w->pending = 0;
410 p->w->cb (p->w, p->events); 472 p->w->cb (p->w, p->events);
411 } 473 }
412 } 474 }
413
414 pendingcnt = 0;
415} 475}
416 476
417static void 477static void
418timers_reify () 478timers_reify ()
419{ 479{
420 while (timercnt && timers [0]->at <= now) 480 while (timercnt && timers [0]->at <= now)
421 { 481 {
422 struct ev_timer *w = timers [0]; 482 struct ev_timer *w = timers [0];
483
484 event ((W)w, EV_TIMEOUT);
423 485
424 /* first reschedule or stop timer */ 486 /* first reschedule or stop timer */
425 if (w->repeat) 487 if (w->repeat)
426 { 488 {
427 w->at = now + w->repeat; 489 w->at = now + w->repeat;
428 assert (("timer timeout in the past, negative repeat?", w->at > now)); 490 assert (("timer timeout in the past, negative repeat?", w->at > now));
429 downheap ((WT *)timers, timercnt, 0); 491 downheap ((WT *)timers, timercnt, 0);
430 } 492 }
431 else 493 else
432 evtimer_stop (w); /* nonrepeating: stop timer */ 494 evtimer_stop (w); /* nonrepeating: stop timer */
433
434 event ((W)w, EV_TIMEOUT);
435 } 495 }
436} 496}
437 497
438static void 498static void
439periodics_reify () 499periodics_reify ()
455 event ((W)w, EV_TIMEOUT); 515 event ((W)w, EV_TIMEOUT);
456 } 516 }
457} 517}
458 518
459static void 519static void
460time_jump (ev_tstamp diff) 520periodics_reschedule (ev_tstamp diff)
461{ 521{
462 int i; 522 int i;
463 523
464 /* adjust periodics */ 524 /* adjust periodics after time jump */
465 for (i = 0; i < periodiccnt; ++i) 525 for (i = 0; i < periodiccnt; ++i)
466 { 526 {
467 struct ev_periodic *w = periodics [i]; 527 struct ev_periodic *w = periodics [i];
468 528
469 if (w->interval) 529 if (w->interval)
477 537
478 i = 0; /* restart loop, inefficient, but time jumps should be rare */ 538 i = 0; /* restart loop, inefficient, but time jumps should be rare */
479 } 539 }
480 } 540 }
481 } 541 }
482
483 /* adjust timers. this is easy, as the offset is the same for all */
484 for (i = 0; i < timercnt; ++i)
485 timers [i]->at += diff;
486} 542}
487 543
488static void 544static void
489time_update () 545time_update ()
490{ 546{
505 return; /* all is well */ 561 return; /* all is well */
506 562
507 ev_now = ev_time (); 563 ev_now = ev_time ();
508 } 564 }
509 565
510 time_jump (diff - odiff); 566 periodics_reschedule (diff - odiff);
567 /* no timer adjustment, as the monotonic clock doesn't jump */
511 } 568 }
512 else 569 else
513 { 570 {
514 if (now > ev_now || now < ev_now - MAX_BLOCKTIME - MIN_TIMEJUMP) 571 if (now > ev_now || now < ev_now - MAX_BLOCKTIME - MIN_TIMEJUMP)
515 time_jump (ev_now - now); 572 {
573 periodics_reschedule (ev_now - now);
574
575 /* adjust timers. this is easy, as the offset is the same for all */
576 for (i = 0; i < timercnt; ++i)
577 timers [i]->at += diff;
578 }
516 579
517 now = ev_now; 580 now = ev_now;
518 } 581 }
519} 582}
520 583
521int ev_loop_done; 584int ev_loop_done;
522 585
523void ev_loop (int flags) 586void ev_loop (int flags)
524{ 587{
525 double block; 588 double block;
526 ev_loop_done = flags & EVLOOP_ONESHOT; 589 ev_loop_done = flags & EVLOOP_ONESHOT ? 1 : 0;
527
528 if (checkcnt)
529 {
530 queue_events ((W *)checks, checkcnt, EV_CHECK);
531 call_pending ();
532 }
533 590
534 do 591 do
535 { 592 {
593 /* queue check watchers (and execute them) */
594 if (preparecnt)
595 {
596 queue_events ((W *)prepares, preparecnt, EV_PREPARE);
597 call_pending ();
598 }
599
536 /* update fd-related kernel structures */ 600 /* update fd-related kernel structures */
537 fd_reify (); 601 fd_reify ();
538 602
539 /* calculate blocking time */ 603 /* calculate blocking time */
540 604
541 /* we only need this for !monotonic clock, but as we always have timers, we just calculate it every time */ 605 /* we only need this for !monotonic clockor timers, but as we basically
606 always have timers, we just calculate it always */
542 ev_now = ev_time (); 607 ev_now = ev_time ();
543 608
544 if (flags & EVLOOP_NONBLOCK || idlecnt) 609 if (flags & EVLOOP_NONBLOCK || idlecnt)
545 block = 0.; 610 block = 0.;
546 else 611 else
547 { 612 {
548 block = MAX_BLOCKTIME; 613 block = MAX_BLOCKTIME;
549 614
550 if (timercnt) 615 if (timercnt)
551 { 616 {
552 ev_tstamp to = timers [0]->at - get_clock () + method_fudge; 617 ev_tstamp to = timers [0]->at - (have_monotonic ? get_clock () : ev_now) + method_fudge;
553 if (block > to) block = to; 618 if (block > to) block = to;
554 } 619 }
555 620
556 if (periodiccnt) 621 if (periodiccnt)
557 { 622 {
566 631
567 /* update ev_now, do magic */ 632 /* update ev_now, do magic */
568 time_update (); 633 time_update ();
569 634
570 /* queue pending timers and reschedule them */ 635 /* queue pending timers and reschedule them */
636 timers_reify (); /* relative timers called last */
571 periodics_reify (); /* absolute timers first */ 637 periodics_reify (); /* absolute timers called first */
572 timers_reify (); /* relative timers second */
573 638
574 /* queue idle watchers unless io or timers are pending */ 639 /* queue idle watchers unless io or timers are pending */
575 if (!pendingcnt) 640 if (!pendingcnt)
576 queue_events ((W *)idles, idlecnt, EV_IDLE); 641 queue_events ((W *)idles, idlecnt, EV_IDLE);
577 642
578 /* queue check and possibly idle watchers */ 643 /* queue check watchers, to be executed first */
644 if (checkcnt)
579 queue_events ((W *)checks, checkcnt, EV_CHECK); 645 queue_events ((W *)checks, checkcnt, EV_CHECK);
580 646
581 call_pending (); 647 call_pending ();
582 } 648 }
583 while (!ev_loop_done); 649 while (!ev_loop_done);
650
651 if (ev_loop_done != 2)
652 ev_loop_done = 0;
584} 653}
585 654
586/*****************************************************************************/ 655/*****************************************************************************/
587 656
588static void 657static void
606 head = &(*head)->next; 675 head = &(*head)->next;
607 } 676 }
608} 677}
609 678
610static void 679static void
680ev_clear (W w)
681{
682 if (w->pending)
683 {
684 pendings [w->pending - 1].w = 0;
685 w->pending = 0;
686 }
687}
688
689static void
611ev_start (W w, int active) 690ev_start (W w, int active)
612{ 691{
613 w->pending = 0;
614 w->active = active; 692 w->active = active;
615} 693}
616 694
617static void 695static void
618ev_stop (W w) 696ev_stop (W w)
619{ 697{
620 if (w->pending)
621 pendings [w->pending - 1].w = 0;
622
623 w->active = 0; 698 w->active = 0;
624} 699}
625 700
626/*****************************************************************************/ 701/*****************************************************************************/
627 702
643} 718}
644 719
645void 720void
646evio_stop (struct ev_io *w) 721evio_stop (struct ev_io *w)
647{ 722{
723 ev_clear ((W)w);
648 if (!ev_is_active (w)) 724 if (!ev_is_active (w))
649 return; 725 return;
650 726
651 wlist_del ((WL *)&anfds[w->fd].head, (WL)w); 727 wlist_del ((WL *)&anfds[w->fd].head, (WL)w);
652 ev_stop ((W)w); 728 ev_stop ((W)w);
654 ++fdchangecnt; 730 ++fdchangecnt;
655 array_needsize (fdchanges, fdchangemax, fdchangecnt, ); 731 array_needsize (fdchanges, fdchangemax, fdchangecnt, );
656 fdchanges [fdchangecnt - 1] = w->fd; 732 fdchanges [fdchangecnt - 1] = w->fd;
657} 733}
658 734
659
660void 735void
661evtimer_start (struct ev_timer *w) 736evtimer_start (struct ev_timer *w)
662{ 737{
663 if (ev_is_active (w)) 738 if (ev_is_active (w))
664 return; 739 return;
665 740
666 w->at += now; 741 w->at += now;
742
743 assert (("timer repeat value less than zero not allowed", w->repeat >= 0.));
667 744
668 ev_start ((W)w, ++timercnt); 745 ev_start ((W)w, ++timercnt);
669 array_needsize (timers, timermax, timercnt, ); 746 array_needsize (timers, timermax, timercnt, );
670 timers [timercnt - 1] = w; 747 timers [timercnt - 1] = w;
671 upheap ((WT *)timers, timercnt - 1); 748 upheap ((WT *)timers, timercnt - 1);
672} 749}
673 750
674void 751void
675evtimer_stop (struct ev_timer *w) 752evtimer_stop (struct ev_timer *w)
676{ 753{
754 ev_clear ((W)w);
677 if (!ev_is_active (w)) 755 if (!ev_is_active (w))
678 return; 756 return;
679 757
680 if (w->active < timercnt--) 758 if (w->active < timercnt--)
681 { 759 {
682 timers [w->active - 1] = timers [timercnt]; 760 timers [w->active - 1] = timers [timercnt];
683 downheap ((WT *)timers, timercnt, w->active - 1); 761 downheap ((WT *)timers, timercnt, w->active - 1);
684 } 762 }
685 763
764 w->at = w->repeat;
765
686 ev_stop ((W)w); 766 ev_stop ((W)w);
767}
768
769void
770evtimer_again (struct ev_timer *w)
771{
772 if (ev_is_active (w))
773 {
774 if (w->repeat)
775 {
776 w->at = now + w->repeat;
777 downheap ((WT *)timers, timercnt, w->active - 1);
778 }
779 else
780 evtimer_stop (w);
781 }
782 else if (w->repeat)
783 evtimer_start (w);
687} 784}
688 785
689void 786void
690evperiodic_start (struct ev_periodic *w) 787evperiodic_start (struct ev_periodic *w)
691{ 788{
692 if (ev_is_active (w)) 789 if (ev_is_active (w))
693 return; 790 return;
791
792 assert (("periodic interval value less than zero not allowed", w->interval >= 0.));
694 793
695 /* this formula differs from the one in periodic_reify because we do not always round up */ 794 /* this formula differs from the one in periodic_reify because we do not always round up */
696 if (w->interval) 795 if (w->interval)
697 w->at += ceil ((ev_now - w->at) / w->interval) * w->interval; 796 w->at += ceil ((ev_now - w->at) / w->interval) * w->interval;
698 797
703} 802}
704 803
705void 804void
706evperiodic_stop (struct ev_periodic *w) 805evperiodic_stop (struct ev_periodic *w)
707{ 806{
807 ev_clear ((W)w);
708 if (!ev_is_active (w)) 808 if (!ev_is_active (w))
709 return; 809 return;
710 810
711 if (w->active < periodiccnt--) 811 if (w->active < periodiccnt--)
712 { 812 {
738} 838}
739 839
740void 840void
741evsignal_stop (struct ev_signal *w) 841evsignal_stop (struct ev_signal *w)
742{ 842{
843 ev_clear ((W)w);
743 if (!ev_is_active (w)) 844 if (!ev_is_active (w))
744 return; 845 return;
745 846
746 wlist_del ((WL *)&signals [w->signum - 1].head, (WL)w); 847 wlist_del ((WL *)&signals [w->signum - 1].head, (WL)w);
747 ev_stop ((W)w); 848 ev_stop ((W)w);
760 idles [idlecnt - 1] = w; 861 idles [idlecnt - 1] = w;
761} 862}
762 863
763void evidle_stop (struct ev_idle *w) 864void evidle_stop (struct ev_idle *w)
764{ 865{
866 ev_clear ((W)w);
867 if (ev_is_active (w))
868 return;
869
765 idles [w->active - 1] = idles [--idlecnt]; 870 idles [w->active - 1] = idles [--idlecnt];
871 ev_stop ((W)w);
872}
873
874void evprepare_start (struct ev_prepare *w)
875{
876 if (ev_is_active (w))
877 return;
878
879 ev_start ((W)w, ++preparecnt);
880 array_needsize (prepares, preparemax, preparecnt, );
881 prepares [preparecnt - 1] = w;
882}
883
884void evprepare_stop (struct ev_prepare *w)
885{
886 ev_clear ((W)w);
887 if (ev_is_active (w))
888 return;
889
890 prepares [w->active - 1] = prepares [--preparecnt];
766 ev_stop ((W)w); 891 ev_stop ((W)w);
767} 892}
768 893
769void evcheck_start (struct ev_check *w) 894void evcheck_start (struct ev_check *w)
770{ 895{
776 checks [checkcnt - 1] = w; 901 checks [checkcnt - 1] = w;
777} 902}
778 903
779void evcheck_stop (struct ev_check *w) 904void evcheck_stop (struct ev_check *w)
780{ 905{
906 ev_clear ((W)w);
907 if (ev_is_active (w))
908 return;
909
781 checks [w->active - 1] = checks [--checkcnt]; 910 checks [w->active - 1] = checks [--checkcnt];
782 ev_stop ((W)w); 911 ev_stop ((W)w);
783} 912}
784 913
785/*****************************************************************************/ 914void evchild_start (struct ev_child *w)
915{
916 if (ev_is_active (w))
917 return;
786 918
919 ev_start ((W)w, 1);
920 wlist_add ((WL *)&childs [w->pid & (PID_HASHSIZE - 1)], (WL)w);
921}
922
923void evchild_stop (struct ev_child *w)
924{
925 ev_clear ((W)w);
926 if (ev_is_active (w))
927 return;
928
929 wlist_del ((WL *)&childs [w->pid & (PID_HASHSIZE - 1)], (WL)w);
930 ev_stop ((W)w);
931}
932
933/*****************************************************************************/
934
935struct ev_once
936{
937 struct ev_io io;
938 struct ev_timer to;
939 void (*cb)(int revents, void *arg);
940 void *arg;
941};
942
943static void
944once_cb (struct ev_once *once, int revents)
945{
946 void (*cb)(int revents, void *arg) = once->cb;
947 void *arg = once->arg;
948
949 evio_stop (&once->io);
950 evtimer_stop (&once->to);
951 free (once);
952
953 cb (revents, arg);
954}
955
956static void
957once_cb_io (struct ev_io *w, int revents)
958{
959 once_cb ((struct ev_once *)(((char *)w) - offsetof (struct ev_once, io)), revents);
960}
961
962static void
963once_cb_to (struct ev_timer *w, int revents)
964{
965 once_cb ((struct ev_once *)(((char *)w) - offsetof (struct ev_once, to)), revents);
966}
967
968void
969ev_once (int fd, int events, ev_tstamp timeout, void (*cb)(int revents, void *arg), void *arg)
970{
971 struct ev_once *once = malloc (sizeof (struct ev_once));
972
973 if (!once)
974 cb (EV_ERROR, arg);
975 else
976 {
977 once->cb = cb;
978 once->arg = arg;
979
980 evw_init (&once->io, once_cb_io);
981
982 if (fd >= 0)
983 {
984 evio_set (&once->io, fd, events);
985 evio_start (&once->io);
986 }
987
988 evw_init (&once->to, once_cb_to);
989
990 if (timeout >= 0.)
991 {
992 evtimer_set (&once->to, timeout, 0.);
993 evtimer_start (&once->to);
994 }
995 }
996}
997
998/*****************************************************************************/
999
787#if 1 1000#if 0
788 1001
789struct ev_io wio; 1002struct ev_io wio;
790 1003
791static void 1004static void
792sin_cb (struct ev_io *w, int revents) 1005sin_cb (struct ev_io *w, int revents)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines