From c12135282c4d153167bc7ae9529e7d68cf063b9a Mon Sep 17 00:00:00 2001 From: "Samuel J. Greear" Date: Mon, 30 Aug 2010 08:10:24 +0000 Subject: [PATCH] kernel - poll(2) no longer supports non-standard FreeBSD extensions --- sys/sys/poll.h | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/sys/sys/poll.h b/sys/sys/poll.h index be7fce311c..3040fff20d 100644 --- a/sys/sys/poll.h +++ b/sys/sys/poll.h @@ -65,20 +65,6 @@ struct pollfd { #define POLLRDBAND 0x0080 /* OOB/Urgent readable data */ #define POLLWRBAND 0x0100 /* OOB/Urgent data can be written */ -/* - * FreeBSD extension. - */ -#define POLLINIGNEOF 0x2000 /* POLLIN, except ignore EOF */ - -/* - * FreeBSD extensions: polling on a regular file might return one - * of these events (currently only supported on UFS). - */ -#define POLLEXTEND 0x0200 /* file may have been extended */ -#define POLLATTRIB 0x0400 /* file attributes may have changed */ -#define POLLNLINK 0x0800 /* (un)link/rename may have happened */ -#define POLLWRITE 0x1000 /* file's contents may have changed */ - /* * These events are set if they occur regardless of whether they were * requested. -- 2.41.0