~ubuntu-branches/ubuntu/hoary/xfsprogs/hoary

« back to all changes in this revision

Viewing changes to logprint/logprint.h

  • Committer: Bazaar Package Importer
  • Author(s): Nathan Scott
  • Date: 2004-07-28 21:11:38 UTC
  • Revision ID: james.westby@ubuntu.com-20040728211138-0v4pdnunnp7na5lm
Tags: 2.6.20-1
* New upstream release.
* Fix xfs_io segfault on non-XFS files.  (closes: #260470)
* Fix packaging botch, deleted files included.  (closes: #260491)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * Copyright (c) 2000 Silicon Graphics, Inc.  All Rights Reserved.
 
2
 * Copyright (c) 2000-2001,2004 Silicon Graphics, Inc.  All Rights Reserved.
3
3
 *
4
4
 * This program is free software; you can redistribute it and/or modify it
5
5
 * under the terms of version 2 of the GNU General Public License as
32
32
#ifndef LOGPRINT_H
33
33
#define LOGPRINT_H
34
34
 
35
 
#include <libxlog.h>
 
35
#include <xfs/libxlog.h>
36
36
 
37
37
/* command line flags */
38
38
extern int      print_data;
48
48
/* exports */
49
49
extern char *trans_type[];
50
50
 
 
51
extern void xlog_print_lseek(xlog_t *, int, xfs_daddr_t, int);
 
52
 
 
53
extern void xfs_log_copy(xlog_t *, int, char *);
 
54
extern void xfs_log_dump(xlog_t *, int, int);
 
55
extern void xfs_log_print(xlog_t *, int, int);
 
56
extern void xfs_log_print_trans(xlog_t *, int);
 
57
 
 
58
extern void print_xlog_record_line(void);
 
59
extern void print_xlog_op_line(void);
 
60
extern void print_stars(void);
 
61
 
51
62
#endif  /* LOGPRINT_H */