From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,adb9b9207aecb4b3 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news2.google.com!proxad.net!newsfeed.stueberl.de!npeer.de.kpn-eurorings.net!news.uni-stuttgart.de!news.belwue.de!LF.net!news.enyo.de!not-for-mail From: Florian Weimer Newsgroups: comp.lang.ada Subject: Re: epoll Ada binding Date: Tue, 19 Oct 2004 23:35:59 +0200 Message-ID: <874qkqtmps.fsf@deneb.enyo.de> References: <311c6b78.0410181100.76f4e8ab@posting.google.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: albireo.enyo.de 1098221761 8138 212.9.189.171 (19 Oct 2004 21:36:01 GMT) X-Complaints-To: Cancel-Lock: sha1:SZ8gboysLhY8WHyJRI24e9EUlfY= Xref: g2news1.google.com comp.lang.ada:5475 Date: 2004-10-19T23:35:59+02:00 List-Id: * Mark Lorenzen: > I think you have to write your own. But do you really need epoll? It > is not POSIX compatable and only necessary when you have many (over > 10000) concurrent connections. epoll shows its effect far below the 10,000 concurrent connection level. It also allows for programming styles that are difficult to replicate with other I/O multiplexing system calls. For example, the leader/followers pattern is in this category (IIRC).