1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-03 13:47:25 +03:00

tevent: Remove erroneous comments about TEVENT_FD_AUTOCLOSE

There is no such flag.
This commit is contained in:
Stephen Gallagher 2010-01-15 10:33:14 -05:00 committed by Andreas Schneider
parent 49c89b60e6
commit 098221e886
2 changed files with 0 additions and 6 deletions

View File

@ -262,9 +262,6 @@ struct tevent_context *tevent_context_init(TALLOC_CTX *mem_ctx)
/*
add a fd based event
return NULL on failure (memory allocation error)
if flags contains TEVENT_FD_AUTOCLOSE then the fd will be closed when
the returned fd_event context is freed
*/
struct tevent_fd *_tevent_add_fd(struct tevent_context *ev,
TALLOC_CTX *mem_ctx,

View File

@ -124,9 +124,6 @@ void tevent_set_default_backend(const char *backend);
/**
* @brief Add a file descriptor based event.
*
* If flags contains TEVENT_FD_AUTOCLOSE then the fd will be closed when
* the returned fd_event context is freed.
*
* @param[in] ev The event context to work on.
*
* @param[in] mem_ctx The talloc memory context to use.