1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-01 04:58:35 +03:00

s3: Remove some unused code

This commit is contained in:
Volker Lendecke 2010-03-14 14:13:30 +01:00
parent e00327323d
commit 6c00a3db24
2 changed files with 0 additions and 24 deletions

View File

@ -26,10 +26,6 @@
/* The following definitions come from lib/events.c */ /* The following definitions come from lib/events.c */
void event_fd_set_writeable(struct fd_event *fde);
void event_fd_set_not_writeable(struct fd_event *fde);
void event_fd_set_readable(struct fd_event *fde);
void event_fd_set_not_readable(struct fd_event *fde);
bool event_add_to_select_args(struct event_context *event_ctx, bool event_add_to_select_args(struct event_context *event_ctx,
const struct timeval *now, const struct timeval *now,
fd_set *read_fds, fd_set *write_fds, fd_set *read_fds, fd_set *write_fds,

View File

@ -21,26 +21,6 @@
#include "includes.h" #include "includes.h"
#include <tevent_internal.h> #include <tevent_internal.h>
void event_fd_set_writeable(struct tevent_fd *fde)
{
TEVENT_FD_WRITEABLE(fde);
}
void event_fd_set_not_writeable(struct tevent_fd *fde)
{
TEVENT_FD_NOT_WRITEABLE(fde);
}
void event_fd_set_readable(struct tevent_fd *fde)
{
TEVENT_FD_READABLE(fde);
}
void event_fd_set_not_readable(struct tevent_fd *fde)
{
TEVENT_FD_NOT_READABLE(fde);
}
/* /*
* Return if there's something in the queue * Return if there's something in the queue
*/ */