Reinitialize the event base after a fork

Some event mechanisms do not survive across fork. The event base needs to be reinitialized with the reinit method.

Returns true if some events could not be re-added.

Property definitions

libevent $ NativeEventBase :: reinit
	# Reinitialize the event base after a fork
	#
	# Some event mechanisms do not survive across fork.
	# The event base needs to be reinitialized with the `reinit` method.
	#
	# Returns `true` if some events could not be re-added.
	fun reinit: Bool `{ return event_reinit(self); `}
lib/libevent/libevent.nit:96,2--102,50