| Summary: | slight prototype inconsistency for poll(2) | ||||||
|---|---|---|---|---|---|---|---|
| Product: | Base System | Reporter: | Ralf S. Engelschall <rse> | ||||
| Component: | kern | Assignee: | Sheldon Hearn <sheldonh> | ||||
| Status: | Closed FIXED | ||||||
| Severity: | Affects Only Me | ||||||
| Priority: | Normal | ||||||
| Version: | 4.1-STABLE | ||||||
| Hardware: | Any | ||||||
| OS: | Any | ||||||
| Attachments: |
|
||||||
|
Description
Ralf S. Engelschall
2000-08-17 12:30:01 UTC
On Thu, 17 Aug 2000 13:24:18 +0200, "Ralf S. Engelschall" wrote: > >Number: 20677 > >Category: kern > >Synopsis: slight prototype inconsistency for poll(2) > -int poll __P((struct pollfd *_pfd, unsigned _nfds, int _timeout)); > +int poll __P((struct pollfd *_pfd, unsigned int _nfds, int _timeout)); Hi Bruce, You changed the type of the _nfds argument from u_int to unsigned in rev 1.4 of poll.h. Can we change it to unsigned int to match the manual page? Ciao, Sheldon. State Changed From-To: open->feedback Waiting for feedback from bde. > > -int poll __P((struct pollfd *_pfd, unsigned _nfds, int _timeout)); > > +int poll __P((struct pollfd *_pfd, unsigned int _nfds, int _timeout)); > You changed the type of the _nfds argument from u_int to unsigned in rev > 1.4 of poll.h. Can we change it to unsigned int to match the manual > page? OK (but I would have used "unsigned" in both). Bruce Responsible Changed From-To: freebsd-bugs->sheldonh I'll take this nit. State Changed From-To: feedback->closed Committed, thanks. |