mirror of
https://git.openafs.org/openafs.git
synced 2025-01-18 23:10:58 +00:00
vol-fssync-socket-20090320
LICENSE IPL10 the argument to the function parameter is a socket. fix the type to be osi_socket.
This commit is contained in:
parent
64c451cec0
commit
0cd43484be
@ -130,7 +130,7 @@ static void FSYNC_Drop(osi_socket fd);
|
||||
static void AcceptOn(void);
|
||||
static void AcceptOff(void);
|
||||
static void InitHandler(void);
|
||||
static int AddHandler(osi_socket fd, void (*aproc)(int));
|
||||
static int AddHandler(osi_socket fd, void (*aproc)(osi_socket));
|
||||
static int FindHandler(osi_socket afd);
|
||||
static int FindHandler_r(osi_socket afd);
|
||||
static int RemoveHandler(osi_socket afd);
|
||||
@ -1576,7 +1576,7 @@ CallHandler(fd_set * fdsetp)
|
||||
#endif
|
||||
|
||||
static int
|
||||
AddHandler(osi_socket afd, void (*aproc) (int))
|
||||
AddHandler(osi_socket afd, void (*aproc) (osi_socket))
|
||||
{
|
||||
register int i;
|
||||
ObtainWriteLock(&FSYNC_handler_lock);
|
||||
|
Loading…
Reference in New Issue
Block a user