2010-05-27 Ralf Corsépius <ralf.corsepius@rtems.org>

* libnetworking/sys/socket.h (struct sockwakeup):
	Use void* instead of caddr_t.
This commit is contained in:
Ralf Corsepius
2010-05-27 04:11:07 +00:00
parent e018fe01ec
commit e7583f67c6
2 changed files with 4 additions and 2 deletions
+2
View File
@@ -1,5 +1,7 @@
2010-05-27 Ralf Corsépius <ralf.corsepius@rtems.org>
* libnetworking/sys/socket.h (struct sockwakeup):
Use void* instead of caddr_t.
* librpc/include/rpc/xdr.h: Cosmetics from freebsd.
2010-05-26 Ralf Corsépius <ralf.corsepius@rtems.org>
+2 -2
View File
@@ -123,8 +123,8 @@ struct linger {
*/
struct socket;
struct sockwakeup {
void (*sw_pfn)(struct socket *, caddr_t);
caddr_t sw_arg;
void (*sw_pfn)(struct socket *, void *);
void *sw_arg;
};
/*