Ignore:
Timestamp:
Nov 24, 2016, 1:14:11 PM (9 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: update vendor to version 4.4.3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/source3/include/event.h

    r740 r988  
    33   event handling
    44   Copyright (C) Andrew Tridgell 1992-1998
    5    Copyright (C) Volker Lendecke 2005
     5   Copyright (C) Volker Lendecke 2005-2007
    66
    77   This program is free software; you can redistribute it and/or modify
     
    1919*/
    2020
    21 #define TEVENT_COMPAT_DEFINES
    2221#include <tevent.h>
    23 
    24 #undef event_context_init
    25 #define event_context_init(mem_ctx) s3_tevent_context_init(mem_ctx)
    2622
    2723/* The following definitions come from lib/events.c  */
    2824struct pollfd;
    29 struct timeval *get_timed_events_timeout(struct event_context *event_ctx,
     25struct timeval *get_timed_events_timeout(struct tevent_context *event_ctx,
    3026                                         struct timeval *to_ret);
    31 void dump_event_list(struct event_context *event_ctx);
     27void dump_event_list(struct tevent_context *event_ctx);
    3228struct tevent_context *s3_tevent_context_init(TALLOC_CTX *mem_ctx);
    3329
     
    3733bool run_events_poll(struct tevent_context *ev, int pollrtn,
    3834                     struct pollfd *pfds, int num_pfds);
     35
     36struct idle_event *event_add_idle(struct tevent_context *event_ctx,
     37                                  TALLOC_CTX *mem_ctx,
     38                                  struct timeval interval,
     39                                  const char *name,
     40                                  bool (*handler)(const struct timeval *now,
     41                                                  void *private_data),
     42                                  void *private_data);
Note: See TracChangeset for help on using the changeset viewer.