From 635a973be56e484312f336298bc17372075b307f Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 29 Dec 2008 17:33:51 +0100 Subject: s4:sys_lease_linux: use tevent metze --- source4/ntvfs/sysdep/config.mk | 2 +- source4/ntvfs/sysdep/sys_lease_linux.c | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) (limited to 'source4/ntvfs/sysdep') diff --git a/source4/ntvfs/sysdep/config.mk b/source4/ntvfs/sysdep/config.mk index 49ad70b95e..5feca6143a 100644 --- a/source4/ntvfs/sysdep/config.mk +++ b/source4/ntvfs/sysdep/config.mk @@ -18,7 +18,7 @@ sys_notify_inotify_OBJ_FILES = $(ntvfssrcdir)/sysdep/inotify.o sys_notify_OBJ_FILES = $(ntvfssrcdir)/sysdep/sys_notify.o [SUBSYSTEM::sys_lease_linux] -PRIVATE_DEPENDENCIES = LIBEVENTS +PRIVATE_DEPENDENCIES = LIBTEVENT sys_lease_linux_OBJ_FILES = $(ntvfssrcdir)/sysdep/sys_lease_linux.o diff --git a/source4/ntvfs/sysdep/sys_lease_linux.c b/source4/ntvfs/sysdep/sys_lease_linux.c index 41f1cbd710..d1473627a7 100644 --- a/source4/ntvfs/sysdep/sys_lease_linux.c +++ b/source4/ntvfs/sysdep/sys_lease_linux.c @@ -22,8 +22,8 @@ */ #include "includes.h" +#include #include "system/filesys.h" -#include "lib/events/events.h" #include "ntvfs/sysdep/sys_lease.h" #include "ntvfs/ntvfs.h" #include "librpc/gen_ndr/ndr_opendb.h" @@ -41,8 +41,8 @@ struct linux_lease_pending { /* the global linked list of pending leases */ static struct linux_lease_pending *leases; -static void linux_lease_signal_handler(struct event_context *ev_ctx, - struct signal_event *se, +static void linux_lease_signal_handler(struct tevent_context *ev_ctx, + struct tevent_signal *se, int signum, int count, void *_info, void *private_data) { @@ -89,11 +89,11 @@ static int linux_lease_pending_destructor(struct linux_lease_pending *p) static NTSTATUS linux_lease_init(struct sys_lease_context *ctx) { - struct signal_event *se; + struct tevent_signal *se; - se = event_add_signal(ctx->event_ctx, ctx, - LINUX_LEASE_RT_SIGNAL, SA_SIGINFO, - linux_lease_signal_handler, ctx); + se = tevent_add_signal(ctx->event_ctx, ctx, + LINUX_LEASE_RT_SIGNAL, SA_SIGINFO, + linux_lease_signal_handler, ctx); NT_STATUS_HAVE_NO_MEMORY(se); return NT_STATUS_OK; -- cgit