diff --git a/[refs] b/[refs] index 814d3e5d44c2..166bc8efb8c2 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: bc552f77157d1bae79d0d3a5541da9579c39cb70 +refs/heads/master: 1276b103c20603835d9b903cae099125e8c2c5a3 diff --git a/trunk/fs/select.c b/trunk/fs/select.c index 7dede89658f5..47f47925aea2 100644 --- a/trunk/fs/select.c +++ b/trunk/fs/select.c @@ -177,11 +177,6 @@ static int max_select_fd(unsigned long n, fd_set_bits *fds) return max; } -#define BIT(i) (1UL << ((i)&(__NFDBITS-1))) -#define MEM(i,m) ((m)+(unsigned)(i)/__NFDBITS) -#define ISSET(i,m) (((i)&*(m)) != 0) -#define SET(i,m) (*(m) |= (i)) - #define POLLIN_SET (POLLRDNORM | POLLRDBAND | POLLIN | POLLHUP | POLLERR) #define POLLOUT_SET (POLLWRBAND | POLLWRNORM | POLLOUT | POLLERR) #define POLLEX_SET (POLLPRI)