ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/branches/8.2.x/src/s_bsd_epoll.c
(Generate patch)

Comparing ircd-hybrid/branches/8.2.x/src/s_bsd_epoll.c (file contents):
Revision 7329 by michael, Thu Feb 18 21:07:50 2016 UTC vs.
Revision 7567 by michael, Tue May 24 16:23:51 2016 UTC

# Line 37 | Line 37 | static fde_t efd;
37  
38  
39   /*
40 < * init_netio
40 > * netio_init
41   *
42   * This is a needed exported function which will be called to initialise
43   * the network loop code.
44   */
45   void
46 < init_netio(void)
46 > netio_init(void)
47   {
48    int fd;
49  
50    if ((fd = epoll_create(hard_fdlimit)) < 0)
51    {
52 <    ilog(LOG_TYPE_IRCD, "init_netio: couldn't open epoll fd: %s",
52 >    ilog(LOG_TYPE_IRCD, "netio_init: couldn't open epoll fd: %s",
53           strerror(errno));
54      exit(EXIT_FAILURE); /* Whee! */
55    }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines