mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-27 06:26:15 +01:00
Remove a few more G_GNUC_INTERNAL users
This commit is contained in:
parent
346aa683de
commit
52a81a7d86
@ -39,7 +39,7 @@
|
|||||||
#define FK_W(...) GAM_DEBUG(DEBUG_INFO, __VA_ARGS__)
|
#define FK_W(...) GAM_DEBUG(DEBUG_INFO, __VA_ARGS__)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
G_GNUC_INTERNAL G_LOCK_DEFINE (fen_lock);
|
G_LOCK_DEFINE (fen_lock);
|
||||||
|
|
||||||
static ulong max_port_events = 512;
|
static ulong max_port_events = 512;
|
||||||
static GList *pn_visible_list; /* the queue of ports which don't have the max objs */
|
static GList *pn_visible_list; /* the queue of ports which don't have the max objs */
|
||||||
|
@ -55,7 +55,7 @@ static void ih_not_missing_callback (inotify_sub *sub);
|
|||||||
*
|
*
|
||||||
* We take the lock in all public functions
|
* We take the lock in all public functions
|
||||||
*/
|
*/
|
||||||
G_GNUC_INTERNAL G_LOCK_DEFINE (inotify_lock);
|
G_LOCK_DEFINE (inotify_lock);
|
||||||
|
|
||||||
static GFileMonitorEvent ih_mask_to_EventFlags (guint32 mask);
|
static GFileMonitorEvent ih_mask_to_EventFlags (guint32 mask);
|
||||||
|
|
||||||
|
@ -229,7 +229,7 @@ try_to_aliases (const char **to_aliases,
|
|||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
extern const char **
|
extern const char **
|
||||||
_g_charset_get_aliases (const char *canonical_name);
|
_g_charset_get_aliases (const char *canonical_name);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -2422,7 +2422,7 @@ g_get_tmp_dir (void)
|
|||||||
* equivalent __libc_enable_secure is available). See:
|
* equivalent __libc_enable_secure is available). See:
|
||||||
* http://osdir.com/ml/linux.lfs.hardened/2007-04/msg00032.html
|
* http://osdir.com/ml/linux.lfs.hardened/2007-04/msg00032.html
|
||||||
*/
|
*/
|
||||||
G_GNUC_INTERNAL gboolean
|
gboolean
|
||||||
g_check_setuid (void)
|
g_check_setuid (void)
|
||||||
{
|
{
|
||||||
/* TODO: get __libc_enable_secure exported from glibc.
|
/* TODO: get __libc_enable_secure exported from glibc.
|
||||||
|
@ -26,12 +26,12 @@
|
|||||||
|
|
||||||
typedef struct _GWakeup GWakeup;
|
typedef struct _GWakeup GWakeup;
|
||||||
|
|
||||||
G_GNUC_INTERNAL GWakeup * g_wakeup_new (void);
|
GWakeup * g_wakeup_new (void);
|
||||||
G_GNUC_INTERNAL void g_wakeup_free (GWakeup *wakeup);
|
void g_wakeup_free (GWakeup *wakeup);
|
||||||
|
|
||||||
G_GNUC_INTERNAL void g_wakeup_get_pollfd (GWakeup *wakeup,
|
void g_wakeup_get_pollfd (GWakeup *wakeup,
|
||||||
GPollFD *poll_fd);
|
GPollFD *poll_fd);
|
||||||
G_GNUC_INTERNAL void g_wakeup_signal (GWakeup *wakeup);
|
void g_wakeup_signal (GWakeup *wakeup);
|
||||||
G_GNUC_INTERNAL void g_wakeup_acknowledge (GWakeup *wakeup);
|
void g_wakeup_acknowledge (GWakeup *wakeup);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user