~ubuntu-branches/ubuntu/vivid/cctools/vivid

« back to all changes in this revision

Viewing changes to chirp/src/chirp_audit.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Hanke
  • Date: 2011-05-07 09:05:00 UTC
  • Revision ID: james.westby@ubuntu.com-20110507090500-lqpmdtwndor6e7os
Tags: upstream-3.3.2
ImportĀ upstreamĀ versionĀ 3.3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
Copyright (C) 2003-2004 Douglas Thain and the University of Wisconsin
 
3
Copyright (C) 2005- The University of Notre Dame
 
4
This software is distributed under the GNU General Public License.
 
5
See the file COPYING for details.
 
6
*/
 
7
 
 
8
/*
 
9
chirp_audit scans a local path using the chirp_local module,
 
10
counting up the files, directories, and bytes consumed by each user.
 
11
It returns a hash_table keyed on the user name, with each entry
 
12
pointing to a chirp_audit structure.  When done, the caller should
 
13
send the hash table back to chirp_audit_delete.
 
14
*/
 
15
 
 
16
#ifndef CHIRP_AUDIT_H
 
17
#define CHIRP_AUDIT_H
 
18
 
 
19
#include "int_sizes.h"
 
20
#include "hash_table.h"
 
21
#include "chirp_client.h"
 
22
 
 
23
struct hash_table * chirp_audit( const char *path );
 
24
void chirp_audit_delete( struct hash_table *table );
 
25
 
 
26
#endif