mirror of
https://github.com/samba-team/samba.git
synced 2025-11-13 08:23:49 +03:00
r5195: most events don't need the time of the event, so save a gettimeofday() call
and just use timeval_current() when its actually needed
This commit is contained in:
committed by
Gerald (Jerry) Carter
parent
26aa1aa693
commit
236403cc4d
@@ -122,7 +122,7 @@ static void messaging_dispatch(struct messaging_context *msg, struct messaging_r
|
||||
handle IO for a single message
|
||||
*/
|
||||
static void messaging_recv_handler(struct event_context *ev, struct fd_event *fde,
|
||||
struct timeval t, uint16_t flags, void *private)
|
||||
uint16_t flags, void *private)
|
||||
{
|
||||
struct messaging_rec *rec = talloc_get_type(private, struct messaging_rec);
|
||||
struct messaging_context *msg = rec->msg;
|
||||
@@ -192,7 +192,7 @@ static void messaging_recv_handler(struct event_context *ev, struct fd_event *fd
|
||||
handle a new incoming connection
|
||||
*/
|
||||
static void messaging_listen_handler(struct event_context *ev, struct fd_event *fde,
|
||||
struct timeval t, uint16_t flags, void *private)
|
||||
uint16_t flags, void *private)
|
||||
{
|
||||
struct messaging_context *msg = talloc_get_type(private,
|
||||
struct messaging_context);
|
||||
@@ -257,7 +257,7 @@ void messaging_deregister(struct messaging_context *msg, uint32_t msg_type, void
|
||||
handle IO for sending a message
|
||||
*/
|
||||
static void messaging_send_handler(struct event_context *ev, struct fd_event *fde,
|
||||
struct timeval t, uint16_t flags, void *private)
|
||||
uint16_t flags, void *private)
|
||||
{
|
||||
struct messaging_rec *rec = talloc_get_type(private, struct messaging_rec);
|
||||
NTSTATUS status;
|
||||
|
||||
Reference in New Issue
Block a user