青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

posts - 297,  comments - 15,  trackbacks - 0

1.NAME
       epoll - I/O event notification facility

SYNOPSIS
       #include <sys/epoll.h>

DESCRIPTION
       epoll  is  a  variant  of  poll(2) that can be used either as Edge or Level Triggered interface and scales well to
       large numbers of watched fds. Three system calls are provided to set up and control an epoll set: epoll_create(2),
       epoll_ctl(2), epoll_wait(2).

       An  epoll set is connected to a file descriptor created by epoll_create(2).  Interest for certain file descriptors
       is then registered via epoll_ctl(2).  Finally, the actual wait is started by epoll_wait(2).


NOTES
       The epoll event distribution interface is able to behave both as Edge Triggered ( ET ) and Level Triggered ( LT ).
       The  difference between ET and LT event distribution mechanism can be described as follows. Suppose that this sce-
       nario happens :

       1      The file descriptor that represents the read side of a pipe ( RFD ) is added inside the epoll device.

       2      Pipe writer writes 2Kb of data on the write side of the pipe.

       3      A call to epoll_wait(2) is done that will return RFD as ready file descriptor.

       4      The pipe reader reads 1Kb of data from RFD.

       5      A call to epoll_wait(2) is done.


       If the RFD file descriptor has been added to the epoll interface using the EPOLLET flag, the call to epoll_wait(2)
       done  in  step  5 will probably hang because of the available data still present in the file input buffers and the
       remote peer might be expecting a response based on the data it already sent. The reason  for  this  is  that  Edge
       Triggered  event  distribution  delivers events only when events happens on the monitored file.  So, in step 5 the
       caller might end up waiting for some data that is already present inside the input buffer. In the  above  example,
       an  event  on RFD will be generated because of the write done in 2 and the event is consumed in 3.  Since the read
       operation done in 4 does not consume the whole buffer data, the call to epoll_wait(2) done in step  5  might  lock
       indefinitely. The epoll interface, when used with the EPOLLET flag ( Edge Triggered ) should use non-blocking file
       descriptors to avoid having a blocking read or write starve the task that is handling multiple  file  descriptors.
       The  suggested  way to use epoll as an Edge Triggered (EPOLLET) interface is below, and possible pitfalls to avoid
       follow.
              i      with non-blocking file descriptors

              ii     by going to wait for an event only after read(2) or write(2) return EAGAIN

       On the contrary, when used as a Level Triggered interface, epoll is by all means a faster poll(2), and can be used
       wherever  the latter is used since it shares the same semantics. Since even with the Edge Triggered epoll multiple
       events can be generated up on receival of multiple chunks of data, the caller has the option to specify the  EPOL-
       LONESHOT  flag,  to  tell  epoll  to  disable  the  associated file descriptor after the receival of an event with
       epoll_wait(2).  When the EPOLLONESHOT flag is specified, it is caller responsibility to rearm the file  descriptor
       using epoll_ctl(2) with EPOLL_CTL_MOD.


EXAMPLE FOR SUGGESTED USAGE
       While  the  usage of epoll when employed like a Level Triggered interface does have the same semantics of poll(2),
       an Edge Triggered usage requires more clarification to avoid stalls in the application event loop. In  this  exam-
       ple,  listener  is a non-blocking socket on which listen(2) has been called. The function do_use_fd() uses the new
       ready file descriptor until EAGAIN is returned by either read(2) or  write(2).   An  event  driven  state  machine
       application should, after having received EAGAIN, record its current state so that at the next call to do_use_fd()
       it will continue to read(2) or write(2) from where it stopped before.

       struct epoll_event ev, *events;

       for(;;) {
           nfds = epoll_wait(kdpfd, events, maxevents, -1);

           for(n = 0; n < nfds; ++n) {
               if(events[n].data.fd == listener) {
                   client = accept(listener, (struct sockaddr *) &local,
                                   &addrlen);
                   if(client < 0){
                       perror("accept");
                       continue;
                   }
                   setnonblocking(client);
                   ev.events = EPOLLIN | EPOLLET;
                   ev.data.fd = client;
                   if (epoll_ctl(kdpfd, EPOLL_CTL_ADD, client, &ev) < 0) {
                       fprintf(stderr, "epoll set insertion error: fd=%d\n",
                               client);
                       return -1;
                   }
               }
               else
               else
                   do_use_fd(events[n].data.fd);
           }
       }

       When used as an Edge triggered interface, for performance reasons, it is  possible  to  add  the  file  descriptor
       inside  the  epoll  interface  ( EPOLL_CTL_ADD ) once by specifying ( EPOLLIN|EPOLLOUT ). This allows you to avoid
       continuously switching between EPOLLIN and EPOLLOUT calling epoll_ctl(2) with EPOLL_CTL_MOD.

QUESTIONS AND ANSWERS (from linux-kernel)
       Q1     What happens if you add the same fd to an epoll_set twice?

       A1     You will probably get EEXIST. However, it is possible that two threads may add the same fd twice. This is a
              harmless condition.

       Q2     Can two epoll sets wait for the same fd? If so, are events reported to both epoll sets fds?

       A2     Yes. However, it is not recommended. Yes it would be reported to both.

       Q3     Is the epoll fd itself poll/epoll/selectable?

       A3     Yes.

       Q4     What happens if the epoll fd is put into its own fd set?

       A4     It will fail. However, you can add an epoll fd inside another epoll fd set.

       Q5     Can I send the epoll fd over a unix-socket to another process?

       A5     No.

       Q6     Will the close of an fd cause it to be removed from all epoll sets automatically?

       A6     Yes.

       Q7     If more than one event comes in between epoll_wait(2) calls, are they combined or reported separately?

       A7     They will be combined.

       Q8     Does an operation on an fd affect the already collected but not yet reported events?

       A8     You can do two operations on an existing fd. Remove would be meaningless for this case. Modify will re-read
              available I/O.

       Q9     Do I need to continuously read/write an fd until EAGAIN when  using  the  EPOLLET  flag  (  Edge  Triggered
              behaviour ) ?
       Q9     Do I need to continuously read/write an fd until EAGAIN when  using  the  EPOLLET  flag  (  Edge  Triggered
              behaviour ) ?

       A9     No  you  don't.  Receiving  an  event from epoll_wait(2) should suggest to you that such file descriptor is
              ready for the requested I/O operation. You have simply to consider it ready until you will receive the next
              EAGAIN.  When and how you will use such file descriptor is entirely up to you. Also, the condition that the
              read/write I/O space is exhausted can be detected by checking the amount of  data  read/write  from/to  the
              target  file  descriptor.  For  example, if you call read(2) by asking to read a certain amount of data and
              read(2) returns a lower number of bytes, you can be sure to have exhausted the read I/O space for such file
              descriptor. Same is valid when writing using the write(2) function.


POSSIBLE PITFALLS AND WAYS TO AVOID THEM
       o Starvation ( Edge Triggered )

       If  there  is  a large amount of I/O space, it is possible that by trying to drain it the other files will not get
       processed causing starvation. This is not specific to epoll.


       The solution is to maintain a ready list and mark the file descriptor as ready in its associated  data  structure,
       thereby  allowing  the  application to remember which files need to be processed but still round robin amongst all
       the ready files. This also supports ignoring subsequent events you receive for fd's that are already ready.

       o If using an event cache...

       If you use an event cache or store all the fd's returned from epoll_wait(2), then make sure to provide  a  way  to
       mark  its  closure  dynamically (ie- caused by a previous event's processing). Suppose you receive 100 events from
       epoll_wait(2), and in event #47 a condition causes event #13 to be  closed.   If  you  remove  the  structure  and
       close()  the  fd for event #13, then your event cache might still say there are events waiting for that fd causing
       confusion.

       One solution for this is to call, during the processing of event 47, epoll_ctl(EPOLL_CTL_DEL) to delete fd 13  and
       close(),  then  mark  its  associated data structure as removed and link it to a cleanup list. If you find another
       event for fd 13 in your batch processing, you will discover the fd had been previously removed and there  will  be
       no confusion.


CONFORMING TO
       epoll(7)  is  a  new  API  introduced  in  Linux kernel 2.5.44.  Its interface should be finalized in Linux kernel
       2.5.66.

2.NAME
       epoll_wait - wait for an I/O event on an epoll file descriptor

SYNOPSIS
       #include <sys/epoll.h>

       int epoll_wait(int epfd, struct epoll_event * events, int maxevents, int timeout)

DESCRIPTION
       Wait  for  events  on  the  epoll file descriptor epfd for a maximum time of timeout milliseconds. The memory area
       pointed to by events will contain the events that will be available for the caller.  Up to maxevents are  returned
       by  epoll_wait(2).   The  maxevents  parameter  must  be  greater  than  zero.  Specifying  a  timeout of -1 makes
       epoll_wait(2) wait indefinitely, while specifying a timeout equal to zero makes epoll_wait(2)  to  return  immedi-
       ately even if no events are available (return code equal to zero).  The struct epoll_event is defined as :


            typedef union epoll_data {
                 void *ptr;
                 int fd;
                 __uint32_t u32;
                 __uint64_t u64;
            } epoll_data_t;

            struct epoll_event {
                 __uint32_t events;  /* Epoll events */
                 epoll_data_t data;  /* User data variable */
            };


       The   data   of   each  returned  structure  will  contain  the  same  data  the  user  set  with  a  epoll_ctl(2)
       (EPOLL_CTL_ADD,EPOLL_CTL_MOD) while the events member will contain the returned event bit field.

RETURN VALUE
       When successful, epoll_wait(2) returns the number of file descriptors ready for the requested I/O, or zero  if  no
       file  descriptor  became  ready  during  the  requested timeout milliseconds.  When an error occurs, epoll_wait(2)
       returns -1 and errno is set appropriately.

ERRORS
       EBADF  epfd is not a valid file descriptor.
       EFAULT The memory area pointed to by events is not accessible with write permissions.

       EINTR  The call was interrupted by a signal handler before any of the requested events  occurred  or  the  timeout
              expired.

       EINVAL epfd is not an epoll file descriptor, or maxevents is less than or equal to zero.


3.NAME
       epoll_ctl - control interface for an epoll descriptor

SYNOPSIS
       #include <sys/epoll.h>

       int epoll_ctl(int epfd, int op, int fd, struct epoll_event *event)

DESCRIPTION
       Control an epoll descriptor, epfd, by requesting that the operation op be performed on the target file descriptor,
       fd.  The event describes the object linked to the file descriptor fd.  The struct epoll_event is defined as :

           typedef union epoll_data {
               void *ptr;
               int fd;
               __uint32_t u32;
               __uint64_t u64;
           } epoll_data_t;

           struct epoll_event {
               __uint32_t events;      /* Epoll events */
               epoll_data_t data;      /* User data variable */
           };

       The events member is a bit set composed using the following available event types :

       EPOLLIN
              The associated file is available for read(2) operations.

       EPOLLOUT
              The associated file is available for write(2) operations.

       EPOLLPRI
              There is urgent data available for read(2) operations.

       EPOLLERR
              Error condition happened on the associated file descriptor.  epoll_wait(2) will always wait for this event;
              it is not necessary to set it in events.

       EPOLLHUP
              Hang  up  happened on the associated file descriptor.  epoll_wait(2) will always wait for this event; it is
              not necessary to set it in events.
       EPOLLET
              Sets the Edge Triggered behaviour for the associated file descriptor.  The default behaviour for  epoll  is
              Level  Triggered. See epoll(7) for more detailed information about Edge and Level Triggered event distribu-
              tion architectures.

       EPOLLONESHOT (since kernel 2.6.2)
              Sets the one-shot behaviour for the associated file descriptor.  This means that after an event  is  pulled
              out  with  epoll_wait(2)  the associated file descriptor is internally disabled and no other events will be
              reported by the epoll interface. The user must call epoll_ctl(2) with EPOLL_CTL_MOD to re-enable  the  file
              descriptor with a new event mask.

       The epoll interface supports all file descriptors that support poll(2).  Valid values for the op parameter are :

              EPOLL_CTL_ADD
                     Add  the  target  file descriptor fd to the epoll descriptor epfd and associate the event event with
                     the internal file linked to fd.

              EPOLL_CTL_MOD
                     Change the event event associated with the target file descriptor fd.

              EPOLL_CTL_DEL
                     Remove the target file descriptor fd from the epoll file descriptor, epfd.  The event is ignored and
                     can be NULL (but see BUGS below).

RETURN VALUE
       When  successful, epoll_ctl(2) returns zero. When an error occurs, epoll_ctl(2) returns -1 and errno is set appro-
       priately.

ERRORS
       EBADF  epfd is not a valid file descriptor.

       EEXIST op was EPOLL_CTL_ADD, and the supplied file descriptor fd is already in epfd.

       EINVAL epfd is not an epoll file descriptor, or fd is the same as epfd, or the requested operation op is not  sup-
              ported by this interface.

       ENOENT op was EPOLL_CTL_MOD or EPOLL_CTL_DEL, and fd is not in epfd.

       ENOMEM There was insufficient memory to handle the requested op control operation.

       EPERM  The target file fd does not support epoll.

CONFORMING TO
       epoll_ctl(2)  is  a  new API introduced in Linux kernel 2.5.44.  The interface should be finalized by Linux kernel
       2.5.66.

BUGS
       In kernel versions before 2.6.9, the EPOLL_CTL_DEL operation required a non-NULL pointer  in  event,  even  though
       this argument is ignored.  Since kernel 2.6.9, event can be specified as NULL when using EPOLL_CTL_DEL.


4.NAME
       epoll_wait - wait for an I/O event on an epoll file descriptor

SYNOPSIS
       #include <sys/epoll.h>

       int epoll_wait(int epfd, struct epoll_event * events, int maxevents, int timeout)

DESCRIPTION
       Wait  for  events  on  the  epoll file descriptor epfd for a maximum time of timeout milliseconds. The memory area
       pointed to by events will contain the events that will be available for the caller.  Up to maxevents are  returned
       by  epoll_wait(2).   The  maxevents  parameter  must  be  greater  than  zero.  Specifying  a  timeout of -1 makes
       epoll_wait(2) wait indefinitely, while specifying a timeout equal to zero makes epoll_wait(2)  to  return  immedi-
       ately even if no events are available (return code equal to zero).  The struct epoll_event is defined as :


            typedef union epoll_data {
                 void *ptr;
                 int fd;
                 __uint32_t u32;
                 __uint64_t u64;
            } epoll_data_t;

            struct epoll_event {
                 __uint32_t events;  /* Epoll events */
                 epoll_data_t data;  /* User data variable */
            };


       The   data   of   each  returned  structure  will  contain  the  same  data  the  user  set  with  a  epoll_ctl(2)
       (EPOLL_CTL_ADD,EPOLL_CTL_MOD) while the events member will contain the returned event bit field.

RETURN VALUE
       When successful, epoll_wait(2) returns the number of file descriptors ready for the requested I/O, or zero  if  no
       file  descriptor  became  ready  during  the  requested timeout milliseconds.  When an error occurs, epoll_wait(2)
       returns -1 and errno is set appropriately.

ERRORS
       EBADF  epfd is not a valid file descriptor.
       EFAULT The memory area pointed to by events is not accessible with write permissions.

       EINTR  The call was interrupted by a signal handler before any of the requested events  occurred  or  the  timeout
              expired.

       EINVAL epfd is not an epoll file descriptor, or maxevents is less than or equal to zero.

CONFORMING TO
       epoll_wait(2)  is  a new API introduced in Linux kernel 2.5.44.  The interface should be finalized by Linux kernel
       2.5.66.






 

posted on 2009-11-08 13:13 chatler 閱讀(720) 評論(0)  編輯 收藏 引用 所屬分類: Socket
<2009年11月>
25262728293031
1234567
891011121314
15161718192021
22232425262728
293012345

常用鏈接

留言簿(10)

隨筆分類(307)

隨筆檔案(297)

algorithm

Books_Free_Online

C++

database

Linux

Linux shell

linux socket

misce

  • cloudward
  • 感覺這個博客還是不錯,雖然做的東西和我不大相關,覺得看看還是有好處的

network

OSS

  • Google Android
  • Android is a software stack for mobile devices that includes an operating system, middleware and key applications. This early look at the Android SDK provides the tools and APIs necessary to begin developing applications on the Android platform using the Java programming language.
  • os161 file list

overall

搜索

  •  

最新評論

閱讀排行榜

評論排行榜

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            99成人在线| 欧美a级一区| 开心色5月久久精品| 久久精品在线免费观看| 久久国产精品一区二区三区四区| 亚洲一区二区三区乱码aⅴ| 99精品热视频只有精品10| 一区二区激情小说| 亚洲一区999| 欧美专区亚洲专区| 久久中文字幕导航| 亚洲国产精品传媒在线观看| 亚洲福利视频三区| 亚洲视频综合| 久久成人这里只有精品| 久久夜色精品国产噜噜av| 欧美va亚洲va日韩∨a综合色| 欧美精品在线观看| 国产区精品视频| 亚洲国产裸拍裸体视频在线观看乱了| 日韩视频在线观看一区二区| 性久久久久久久久久久久| 欧美成人一区在线| 亚洲自啪免费| 欧美激情亚洲激情| 国产日韩欧美中文在线播放| 亚洲欧洲精品一区二区三区 | 国产精品久久久久一区二区三区| 国产日韩欧美一区二区| 亚洲激情成人网| 欧美一区二区在线免费观看| 亚洲韩国精品一区| 欧美专区18| 国产精品久久久久免费a∨大胸| 海角社区69精品视频| 一区二区欧美亚洲| 欧美电影资源| 欧美在线播放一区| 欧美日韩在线三级| 亚洲高清久久久| 久久精品国产成人| 99精品国产一区二区青青牛奶| 久热国产精品视频| 国产亚洲精品7777| 午夜国产精品影院在线观看 | 9久草视频在线视频精品| 欧美在线看片| 日韩写真视频在线观看| 黑人一区二区三区四区五区| 亚洲天堂av电影| 久久一区二区精品| 国产欧美日韩一区二区三区| 亚洲视频每日更新| 亚洲欧洲精品天堂一级| 麻豆精品在线观看| 激情亚洲网站| 另类人畜视频在线| 久久九九国产精品| 国内偷自视频区视频综合| 欧美一区二区大片| 亚洲欧美日韩国产中文 | 午夜天堂精品久久久久| 国产精品99免费看| 中国亚洲黄色| 亚洲免费高清| 欧美理论电影在线播放| 一本久道久久综合婷婷鲸鱼| 亚洲欧洲在线播放| 欧美激情乱人伦| 日韩亚洲视频在线| av成人激情| 国产精品免费福利| 欧美一区日本一区韩国一区| 亚洲影视在线| 国产区精品在线观看| 久久久精品欧美丰满| 久久免费视频网站| 亚洲人成毛片在线播放女女| 亚洲电影在线观看| 欧美深夜福利| 欧美在线黄色| 久久综合五月天婷婷伊人| 亚洲九九精品| 亚洲一区二区三区四区中文| 国产性做久久久久久| 玖玖在线精品| 欧美日韩国语| 久久久777| 欧美激情一区二区三区| 亚洲欧美日韩精品久久亚洲区| 午夜日韩福利| 99re热精品| 欧美在线免费观看| 亚洲乱码国产乱码精品精98午夜| 一本色道久久综合狠狠躁篇的优点| 国产乱码精品一区二区三区不卡| 免费亚洲一区二区| 国产精品久久久久免费a∨大胸| 久久影视三级福利片| 欧美日韩aaaaa| 久久亚裔精品欧美| 欧美午夜视频在线| 欧美激情国产日韩| 国产伦精品一区二区三区免费| 欧美成黄导航| 国产欧美日韩在线视频| 亚洲三级影院| 在线日韩av片| 新67194成人永久网站| 日韩视频三区| 亚洲欧洲在线一区| 一区二区欧美日韩视频| 国产精品视频专区| 欧美一区二区性| 久久精品首页| 亚洲专区一区二区三区| 免费不卡在线观看av| 欧美中文字幕精品| 国产精品啊啊啊| 亚洲黑丝在线| 在线欧美视频| 久久精品国产精品| 欧美在线视频播放| 国产精品网站在线| 日韩午夜在线播放| 99精品欧美一区二区三区| 免费观看亚洲视频大全| 久久久噜噜噜久久狠狠50岁| 国产精品人成在线观看免费| 日韩视频在线一区二区| 日韩一二在线观看| 欧美黄色大片网站| 亚洲激情黄色| 日韩亚洲欧美在线观看| 欧美激情精品久久久久久黑人| 欧美高清不卡在线| 1024国产精品| 美女国内精品自产拍在线播放| 玖玖玖国产精品| **性色生活片久久毛片| 狂野欧美一区| 亚洲欧洲精品成人久久奇米网| 亚洲国产日韩欧美在线动漫| 美女免费视频一区| 91久久午夜| 一区二区三区精品久久久| 欧美极品影院| 99天天综合性| 午夜一区不卡| 国产中文一区二区| 久久综合九色综合欧美就去吻| 欧美大片va欧美在线播放| 亚洲黄色精品| 欧美日韩精品系列| 亚洲一区二区在线播放| 欧美一区二区私人影院日本 | 免费成人激情视频| 亚洲黄色有码视频| 欧美日韩免费高清| 亚洲在线视频免费观看| 久久高清一区| 亚洲第一在线视频| 欧美另类视频| 午夜精品久久久久影视| 免费欧美日韩| 亚洲一级电影| 国外成人在线视频| 欧美精品三级在线观看| 亚洲一级二级在线| 免费成人激情视频| 亚洲一级免费视频| 韩国在线一区| 欧美视频日韩| 免费看亚洲片| 欧美在线观看视频| 久久亚洲春色中文字幕| 亚洲精品在线三区| 久久精品欧洲| 日韩午夜在线| 国产视频在线观看一区二区三区| 久久综合电影一区| 亚洲香蕉网站| 亚洲国产天堂久久国产91| 欧美在线观看网站| 日韩亚洲欧美一区| 在线观看一区| 国产精品一区二区女厕厕| 蜜臀av一级做a爰片久久| 亚洲欧美日韩视频一区| 亚洲精品国产视频| 免费观看成人鲁鲁鲁鲁鲁视频| 亚洲性线免费观看视频成熟| 亚洲国产综合在线| 国产亚洲一本大道中文在线| 欧美日韩成人在线| 久热精品视频在线免费观看 | 欧美 日韩 国产一区二区在线视频 | 欧美极品在线观看| 久久精品首页| 午夜日韩视频|