summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBenoît Dejean <bdejean@src.gnome.org>2007-05-31 20:04:32 +0000
committerBenoît Dejean <bdejean@src.gnome.org>2007-05-31 20:04:32 +0000
commit65fe248d6652cb990fbe407cbdddfbade52aec1a (patch)
tree174041a4c1cad35b0f5af34b227d6b1dd87c2f3a /src
parent5c479c9a4530a3b6a0b0dbe29ad02d87a3586df5 (diff)
downloadlibgtop-65fe248d6652cb990fbe407cbdddfbade52aec1a.tar.gz
Got rid of G_GNUC_INTERNAL.
svn path=/trunk/; revision=2600
Diffstat (limited to 'src')
-rw-r--r--src/daemon/daemon.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/daemon/daemon.h b/src/daemon/daemon.h
index cd9520be..0700b2a2 100644
--- a/src/daemon/daemon.h
+++ b/src/daemon/daemon.h
@@ -57,17 +57,17 @@ G_BEGIN_DECLS
#define MSG_BUFSZ sizeof (struct _glibtop_ipc_message)
#define MSG_MSGSZ (MSG_BUFSZ - sizeof (long))
-void handle_parent_connection (int s) G_GNUC_INTERNAL;
-void handle_slave_connection (int input, int output) G_GNUC_INTERNAL;
+void handle_parent_connection (int s);
+void handle_slave_connection (int input, int output);
void handle_slave_command (glibtop_command *cmnd, glibtop_response *resp,
- const void *parameter) G_GNUC_INTERNAL ;
+ const void *parameter);
void do_output (int s, glibtop_response *resp, off_t offset,
- size_t data_size, const void *data) G_GNUC_INTERNAL;
-int do_read (int s, void *ptr, size_t total_size) G_GNUC_INTERNAL;
+ size_t data_size, const void *data);
+int do_read (int s, void *ptr, size_t total_size);
-void syslog_message (int priority, const char *format, ...) G_GNUC_INTERNAL G_GNUC_PRINTF(2, 3);
-void syslog_io_message (int priority, const char *format, ...) G_GNUC_INTERNAL G_GNUC_PRINTF(2, 3);
+void syslog_message (int priority, const char *format, ...) G_GNUC_PRINTF(2, 3);
+void syslog_io_message (int priority, const char *format, ...) G_GNUC_PRINTF(2, 3);
extern gboolean enable_debug;
extern gboolean verbose_output;