ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/libstatgrab/src/libstatgrab/statgrab.h
(Generate patch)

Comparing projects/libstatgrab/src/libstatgrab/statgrab.h (file contents):
Revision 1.44 by ats, Wed Apr 7 21:20:28 2004 UTC vs.
Revision 1.45 by pajs, Thu Apr 8 11:26:42 2004 UTC

# Line 241 | Line 241 | typedef struct {
241  
242   sg_process_count *sg_get_process_count();
243  
244 + typedef enum {
245 +        SG_PS_PID,
246 +        SG_PS_UID,
247 +        SG_PS_GID,
248 +        SG_PS_SIZE,
249 +        SG_PS_RES,
250 +        SG_PS_CPU,
251 +        SG_PS_TIME
252 + } sg_sort_method;
253 +
254 + void sg_sort(sg_process_stats *ps, int num_ps, sg_sort_method sm);
255 +
256 + int sg_compare_pid(const void *va, const void *vb);
257 + int sg_compare_uid(const void *va, const void *vb);
258 + int sg_compare_gid(const void *va, const void *vb);
259 + int sg_compare_size(const void *va, const void *vb);
260 + int sg_compare_res(const void *va, const void *vb);
261 + int sg_compare_cpu(const void *va, const void *vb);
262 + int sg_compare_time(const void *va, const void *vb);
263 +
264 +
265   #ifdef SG_ENABLE_DEPRECATED
266   #include <statgrab_deprecated.h>
267   #endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines