History log of /netbsd-src/lib/libc/rpc/svc_fdset.c (Results 1 – 16 of 16)
Revision Date Author Comments
# 0e5a550a 18-Apr-2017 maya <maya@NetBSD.org>

avoid calloc(1,0).
from clang static analyzer

ok christos


# f5dda104 10-Nov-2015 christos <christos@NetBSD.org>

fix compilation/lint


# 9a91ff6f 10-Nov-2015 christos <christos@NetBSD.org>

CID 1338520: Check NULL
CID 1338521: Fix error (realloc returns different pointer)


# aa158b27 10-Nov-2015 christos <christos@NetBSD.org>

CID 1338517: Check negative returns


# 2a964e61 08-Nov-2015 christos <christos@NetBSD.org>

Add debugging for pollfd


# 6821cf5f 08-Nov-2015 christos <christos@NetBSD.org>

Only do the compat cruft if we are compiling libc.


# 245e5bc6 07-Nov-2015 christos <christos@NetBSD.org>

initialize revents too.


# df8f5914 07-Nov-2015 christos <christos@NetBSD.org>

PR/50408: Pedro Giffuni: Provide a way for rpc to use poll(2) instead of
select(2), and the linux svc_pollfd and svc_maxpollfd members. Our select(2)
implementation does not suffer from the FD_SETSIZ

PR/50408: Pedro Giffuni: Provide a way for rpc to use poll(2) instead of
select(2), and the linux svc_pollfd and svc_maxpollfd members. Our select(2)
implementation does not suffer from the FD_SETSIZE limitation so this is
not turned on by default.

show more ...


# 7c3ee3b3 07-Nov-2015 christos <christos@NetBSD.org>

spell reserved.


# 670a38d8 07-Nov-2015 christos <christos@NetBSD.org>

Put back NULL tests for allocation failures.


# 68e3906c 07-Nov-2015 christos <christos@NetBSD.org>

simplify more.


# 841c77b9 07-Nov-2015 christos <christos@NetBSD.org>

Introduce a binary compatible __fd_set_256 that is what the original fdset
size was for libc. Now we can bump it.


# 01b6ad43 06-Nov-2015 christos <christos@NetBSD.org>

Cleanup and simplify.
undef svc_fdset and svc_maxfd to get to the real data for the compat code.


# 76218c77 06-Nov-2015 joerg <joerg@NetBSD.org>

Don't use macros as types or variable names.


# 2f904d5a 06-Nov-2015 christos <christos@NetBSD.org>

- Provide multi-threaded fdset's for everyone not just rump if requested.
- Abstract fd_set access, and don't limit the fd_set size.
- Maintain binary compatibility by keeping the old global variable

- Provide multi-threaded fdset's for everyone not just rump if requested.
- Abstract fd_set access, and don't limit the fd_set size.
- Maintain binary compatibility by keeping the old global variables around.

show more ...


# 2dec884d 05-Mar-2013 christos <christos@NetBSD.org>

make this usable from RUMP