Removed duplicate B_SELECT_* & co definitions.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9167 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Philippe Houdoin 2004-10-03 15:11:46 +00:00
parent 8a3c512516
commit 66c1fb8eb3
2 changed files with 1 additions and 6 deletions

View File

@ -66,11 +66,6 @@ enum {
typedef uint32 ipv4_addr;
/* These should be in KernelExport.h */
#define B_SELECT_READ 1
#define B_SELECT_WRITE 2
#define B_SELECT_EXCEPTION 3
/* XXX - add some macro's for inserting various types of address
*/

View File

@ -121,7 +121,7 @@ struct notify_socket_event_args { // used by NET_STACK_NOTIFY_SOCKET_EVENT
#define NET_STACK_SOCKET_EVENT_NOTIFICATION 'sevn'
struct socket_event_data {
uint32 event; // B_SELECT_READ, B_SELECT_WRITE or B_SELECT_EXCEPTION
uint32 event; // B_SELECT_READ, B_SELECT_WRITE or B_SELECT_ERROR
void * cookie; // The cookie as set in notify_socket_event_args for this socket
};