Remove experimental note for finalizers API

(cherry picked from commit 55f9863b18fe21ddd220d98941b7ac777593dde5)
This commit is contained in:
Azat Khuzhin 2019-04-04 09:09:09 +03:00
parent c0adad8fe4
commit d83a517c4d
No known key found for this signature in database
GPG Key ID: B86086848EF8686D

View File

@ -693,9 +693,6 @@ void event_base_free(struct event_base *);
/** /**
As event_base_free, but do not run finalizers. As event_base_free, but do not run finalizers.
THIS IS AN EXPERIMENTAL API. IT MIGHT CHANGE BEFORE THE LIBEVENT 2.1 SERIES
BECOMES STABLE.
*/ */
EVENT2_EXPORT_SYMBOL EVENT2_EXPORT_SYMBOL
void event_base_free_nofinalize(struct event_base *); void event_base_free_nofinalize(struct event_base *);
@ -944,9 +941,6 @@ int event_base_got_break(struct event_base *);
* To use this option safely, you may need to use event_finalize() or * To use this option safely, you may need to use event_finalize() or
* event_free_finalize() in order to safely tear down an event in a * event_free_finalize() in order to safely tear down an event in a
* multithreaded application. See those functions for more information. * multithreaded application. See those functions for more information.
*
* THIS IS AN EXPERIMENTAL API. IT MIGHT CHANGE BEFORE THE LIBEVENT 2.1 SERIES
* BECOMES STABLE.
**/ **/
#define EV_FINALIZE 0x40 #define EV_FINALIZE 0x40
/** /**
@ -1148,10 +1142,6 @@ void event_free(struct event *);
/** /**
* Callback type for event_finalize and event_free_finalize(). * Callback type for event_finalize and event_free_finalize().
*
* THIS IS AN EXPERIMENTAL API. IT MIGHT CHANGE BEFORE THE LIBEVENT 2.1 SERIES
* BECOMES STABLE.
*
**/ **/
typedef void (*event_finalize_callback_fn)(struct event *, void *); typedef void (*event_finalize_callback_fn)(struct event *, void *);
/** /**
@ -1182,9 +1172,6 @@ typedef void (*event_finalize_callback_fn)(struct event *, void *);
add events, activate events, or attempt to "resuscitate" the event being add events, activate events, or attempt to "resuscitate" the event being
finalized in any way. finalized in any way.
THIS IS AN EXPERIMENTAL API. IT MIGHT CHANGE BEFORE THE LIBEVENT 2.1 SERIES
BECOMES STABLE.
@return 0 on success, -1 on failure. @return 0 on success, -1 on failure.
*/ */
/**@{*/ /**@{*/
@ -1275,9 +1262,6 @@ int event_del(struct event *);
As event_del(), but never blocks while the event's callback is running As event_del(), but never blocks while the event's callback is running
in another thread, even if the event was constructed without the in another thread, even if the event was constructed without the
EV_FINALIZE flag. EV_FINALIZE flag.
THIS IS AN EXPERIMENTAL API. IT MIGHT CHANGE BEFORE THE LIBEVENT 2.1 SERIES
BECOMES STABLE.
*/ */
EVENT2_EXPORT_SYMBOL EVENT2_EXPORT_SYMBOL
int event_del_noblock(struct event *ev); int event_del_noblock(struct event *ev);
@ -1285,9 +1269,6 @@ int event_del_noblock(struct event *ev);
As event_del(), but always blocks while the event's callback is running As event_del(), but always blocks while the event's callback is running
in another thread, even if the event was constructed with the in another thread, even if the event was constructed with the
EV_FINALIZE flag. EV_FINALIZE flag.
THIS IS AN EXPERIMENTAL API. IT MIGHT CHANGE BEFORE THE LIBEVENT 2.1 SERIES
BECOMES STABLE.
*/ */
EVENT2_EXPORT_SYMBOL EVENT2_EXPORT_SYMBOL
int event_del_block(struct event *ev); int event_del_block(struct event *ev);