K 10 svn:author V 5 andre K 8 svn:date V 27 2004-08-27T21:23:50.000000Z K 7 svn:log V 409 Poll() uses the array smallbits that is big enough to hold 32 struct pollfd's to avoid calling malloc() on small numbers of fd's. Because smalltype's members have type char, its address might be misaligned for a struct pollfd. Change the array of char to an array of struct pollfd. PR: kern/58214 Submitted by: Stefan Farfeleder Reviewed by: bde (a long time ago) MFC after: 3 days END