Remove a few more G_GNUC_INTERNAL users

This commit is contained in:
Ryan Lortie 2013-01-18 13:27:16 -05:00
parent 346aa683de
commit 52a81a7d86
5 changed files with 10 additions and 10 deletions

View File

@ -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 */

View File

@ -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);

View File

@ -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);
/** /**

View File

@ -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.

View File

@ -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