Removed G_GNUC_UNUSED.
This commit is contained in:
@@ -25,5 +25,5 @@
|
||||
/* Closes pipe to gtop server. */
|
||||
|
||||
void
|
||||
glibtop_close_p (glibtop G_GNUC_UNUSED *server)
|
||||
glibtop_close_p (glibtop *server)
|
||||
{ }
|
||||
|
@@ -24,12 +24,12 @@
|
||||
#include <glibtop/close.h>
|
||||
|
||||
void
|
||||
glibtop_open_s (glibtop G_GNUC_UNUSED *server,
|
||||
const char G_GNUC_UNUSED *program_name,
|
||||
const unsigned long G_GNUC_UNUSED features,
|
||||
const unsigned G_GNUC_UNUSED flags)
|
||||
glibtop_open_s (glibtop *server,
|
||||
const char *program_name,
|
||||
const unsigned long features,
|
||||
const unsigned flags)
|
||||
{ }
|
||||
|
||||
void
|
||||
glibtop_close_s (glibtop G_GNUC_UNUSED *server)
|
||||
glibtop_close_s (glibtop *server)
|
||||
{ }
|
||||
|
@@ -48,8 +48,8 @@ glibtop_init_p (glibtop *server, const unsigned long features,
|
||||
|
||||
void
|
||||
glibtop_open_p (glibtop *server, const char *program_name,
|
||||
const unsigned long G_GNUC_UNUSED features,
|
||||
const unsigned G_GNUC_UNUSED flags)
|
||||
const unsigned long features,
|
||||
const unsigned flags)
|
||||
{
|
||||
#ifdef DEBUG
|
||||
fprintf (stderr, "DEBUG (%d): glibtop_open_p ()\n", getpid ());
|
||||
|
@@ -44,7 +44,7 @@ glibtop_init_proc_segment_p (glibtop *server)
|
||||
void
|
||||
glibtop_get_proc_segment_p (glibtop *server,
|
||||
glibtop_proc_segment *buf,
|
||||
pid_t G_GNUC_UNUSED pid)
|
||||
pid_t pid)
|
||||
{
|
||||
glibtop_init_p (server, (1 << GLIBTOP_SYSDEPS_PROC_SEGMENT), 0);
|
||||
|
||||
|
Reference in New Issue
Block a user