mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-08 21:10:25 +01:00
settings: add note about killing inotify helper (bgo #532815)
We can kill this code when we depend on a new enough glib that includes the patches from the referenced bug report.
This commit is contained in:
parent
d069e4894e
commit
240cc2f233
2 changed files with 8 additions and 0 deletions
|
|
@ -27,6 +27,10 @@
|
|||
#include "nm-inotify-helper.h"
|
||||
#include "nm-logging.h"
|
||||
|
||||
/* NOTE: this code should be killed once we depend on a new enough glib to
|
||||
* include the patches from https://bugzilla.gnome.org/show_bug.cgi?id=532815
|
||||
*/
|
||||
|
||||
G_DEFINE_TYPE (NMInotifyHelper, nm_inotify_helper, G_TYPE_OBJECT)
|
||||
|
||||
#define NM_INOTIFY_HELPER_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), NM_TYPE_INOTIFY_HELPER, NMInotifyHelperPrivate))
|
||||
|
|
|
|||
|
|
@ -25,6 +25,10 @@
|
|||
#include <glib-object.h>
|
||||
#include <sys/inotify.h>
|
||||
|
||||
/* NOTE: this code should be killed once we depend on a new enough glib to
|
||||
* include the patches from https://bugzilla.gnome.org/show_bug.cgi?id=532815
|
||||
*/
|
||||
|
||||
#define NM_TYPE_INOTIFY_HELPER (nm_inotify_helper_get_type ())
|
||||
#define NM_INOTIFY_HELPER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), NM_TYPE_INOTIFY_HELPER, NMInotifyHelper))
|
||||
#define NM_INOTIFY_HELPER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), NM_TYPE_INOTIFY_HELPER, NMInotifyHelperClass))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue