Compare commits

..

3 Commits

Author SHA1 Message Date
Benoît Dejean
eff32adaa4 Fixed C99 macros. Closes #161994. Patch by Vincent Berger
* include/glibtop/error.h:
	* sysdeps/common/error.c: Fixed C99 macros. Closes #161994.
	Patch by Vincent Berger <vincent.berger@ext.bull.net>.
2004-12-22 18:12:52 +00:00
Benoît Dejean
3aabc5fb13 Ignores unkown file system type.
* mountlist.c: (ignore_mount_entry): Ignores unkown file system type.
2004-12-09 16:00:15 +00:00
Benoît Dejean
12f4129f6d Updated.
* reference.texi: Updated.
2004-12-04 19:21:57 +00:00
7 changed files with 28 additions and 9 deletions

View File

@@ -1,3 +1,9 @@
2004-12-22 Benoît Dejean <tazforever@dlfp.org>
* include/glibtop/error.h:
* sysdeps/common/error.c: Fixed C99 macros. Closes #161994.
Patch by Vincent Berger <vincent.berger@ext.bull.net>.
2004-12-04 Benoît Dejean <tazforever@dlfp.org> 2004-12-04 Benoît Dejean <tazforever@dlfp.org>
* NEWS: * NEWS:

View File

@@ -1,3 +1,7 @@
2004-12-04 Benoît Dejean <tazforever@dlfp.org>
* reference.texi: Updated.
2004-08-03 Benoît Dejean <tazforever@dlfp.org> 2004-08-03 Benoît Dejean <tazforever@dlfp.org>
* reference.texi: Updated. * reference.texi: Updated.

View File

@@ -1533,6 +1533,8 @@ struct _glibtop_fsusage
files, files,
ffree; ffree;
guint32 block_size; guint32 block_size;
guint64 read,
write;
@}; @};
@end cartouche @end cartouche
@end example @end example
@@ -1550,10 +1552,12 @@ Total file nodes.
Free file nodes. Free file nodes.
@item block_size @item block_size
Block size in bytes. Block size in bytes.
@item read
Total blocks read.
@item write
Total blocks written.
@end table @end table
Blocks are usually 512 bytes.
@page @page
@node Library Functions, , Common Functions, Reference Manual @node Library Functions, , Common Functions, Reference Manual
@section Library Functions @section Library Functions

View File

@@ -50,11 +50,11 @@ void G_GNUC_UNUSED glibtop_warn_io_r (glibtop *server, char *format, ...);
#elif defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L #elif defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
#define glibtop_error(p1, ...) glibtop_error_r(glibtop_global_server , p1 , __VA_ARGS__) #define glibtop_error(...) glibtop_error_r(glibtop_global_server , __VA_ARGS__)
#define glibtop_warn(p1, ...) glibtop_warn_r(glibtop_global_server , p1 , __VA_ARGS__) #define glibtop_warn(...) glibtop_warn_r(glibtop_global_server , __VA_ARGS__)
#define glibtop_error_io(p1, ...) glibtop_error_io_r(glibtop_global_server , p1 , __VA_ARGS__) #define glibtop_error_io(...) glibtop_error_io_r(glibtop_global_server , __VA_ARGS__)
#define glibtop_warn_io(p1, ...) glibtop_warn_io_r(glibtop_global_server , p1 , __VA_ARGS__) #define glibtop_warn_io(...) glibtop_warn_io_r(glibtop_global_server , __VA_ARGS__)
#else /* no __GNUC__, no C99*/ #else /* no __GNUC__, no C99*/

View File

@@ -1,3 +1,7 @@
2004-12-09 Benoît Dejean <tazforever@dlfp.org>
* mountlist.c: (ignore_mount_entry): Ignores "unkown" file system type.
2004-09-24 Benoît Dejean <tazforever@dlfp.org> 2004-09-24 Benoît Dejean <tazforever@dlfp.org>
* fsusage.c: (glibtop_get_fsusage_s): Fixed .block_size on Solaris. * fsusage.c: (glibtop_get_fsusage_s): Fixed .block_size on Solaris.

View File

@@ -129,7 +129,7 @@ glibtop_warn_io_r (glibtop *server, char *format, ...)
va_end (args); va_end (args);
} }
#ifndef __GNUC__ #if !defined(__GNUC__) && (!defined(__STDC_VERSION__) || __STDC_VERSION__ < 199901L)
void void
glibtop_error (char *format, ...) glibtop_error (char *format, ...)
@@ -167,4 +167,4 @@ glibtop_warn_io (char *format, ...)
va_end (args); va_end (args);
} }
#endif /* __GNUC__ */ #endif /* !defined(__GNUC__) && (!defined(__STDC_VERSION__) || __STDC_VERSION__ < 199901L) */

View File

@@ -547,7 +547,8 @@ static gboolean ignore_mount_entry(const struct mount_entry *me)
"binfmt_misc", "binfmt_misc",
"supermount", "supermount",
"mntfs", "mntfs",
"openpromfs" "openpromfs",
"unknown"
}; };
const char (*i)[12] = &ignored[0]; const char (*i)[12] = &ignored[0];