Re: [devel] [PATCH 01 of 15] amf: Replace select() with osaf_poll() to avoid 1024 fd limit [#452]

2013-11-26 Thread Hans Feldt
Ack /Hans On 10/31/2013 02:24 PM, Anders Widell wrote: osaf/libs/agents/saf/amfa/ava_init.c | 8 +++- 1 files changed, 3 insertions(+), 5 deletions(-) The select() function cannot handle file descriptors larger than 1023. To avoid this limitation, we replace all usages of select()

[devel] [PATCH 01 of 15] amf: Replace select() with osaf_poll() to avoid 1024 fd limit [#452]

2013-10-31 Thread Anders Widell
osaf/libs/agents/saf/amfa/ava_init.c | 8 +++- 1 files changed, 3 insertions(+), 5 deletions(-) The select() function cannot handle file descriptors larger than 1023. To avoid this limitation, we replace all usages of select() with poll(). diff --git a/osaf/libs/agents/saf/amfa/ava_init.c