system/EPollFD: update API documentation

This commit is contained in:
Max Kellermann
2018-01-29 21:49:27 +01:00
parent c2f23d92dc
commit 13ac74e0a2

@ -31,13 +31,14 @@ struct epoll_event;
/** /**
* A class that wraps Linux epoll. * A class that wraps Linux epoll.
*
* Errors in the constructor are fatal.
*/ */
class EPollFD { class EPollFD {
const int fd; const int fd;
public: public:
/**
* Throws on error.
*/
EPollFD(); EPollFD();
~EPollFD() noexcept { ~EPollFD() noexcept {