summaryrefslogtreecommitdiff
path: root/source3/smbd/notify.c
diff options
context:
space:
mode:
authorJames Peach <jpeach@samba.org>2006-02-13 04:07:15 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:10:05 -0500
commit8fbdd112b2c69a54d05807163bfc52b34f4d0424 (patch)
tree838fb54ed67656e49ac9f2780b5b2ae4d0eaa8b2 /source3/smbd/notify.c
parent71247a2f0507d13fa37d5b3c7136e299995af877 (diff)
downloadsamba-8fbdd112b2c69a54d05807163bfc52b34f4d0424.tar.gz
samba-8fbdd112b2c69a54d05807163bfc52b34f4d0424.tar.bz2
samba-8fbdd112b2c69a54d05807163bfc52b34f4d0424.zip
r13482: Push the FAM notification file descriptor into the select
set to avoid unnecessary polling. (This used to be commit 1dce945ccbba25092cf54890301c8f78f8aede33)
Diffstat (limited to 'source3/smbd/notify.c')
-rw-r--r--source3/smbd/notify.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/source3/smbd/notify.c b/source3/smbd/notify.c
index df3d45d20b..b2d0fc3326 100644
--- a/source3/smbd/notify.c
+++ b/source3/smbd/notify.c
@@ -206,6 +206,15 @@ BOOL change_notify_set(char *inbuf, files_struct *fsp, connection_struct *conn,
return True;
}
+int change_notify_fd(void)
+{
+ if (cnotify) {
+ return cnotify->notification_fd;
+ }
+
+ return -1;
+}
+
/****************************************************************************
Initialise the change notify subsystem.
****************************************************************************/