~ubuntu-branches/ubuntu/karmic/openafs/karmic-updates

« back to all changes in this revision

Viewing changes to src/butc/butc_prototypes.h

  • Committer: Bazaar Package Importer
  • Author(s): Russ Allbery
  • Date: 2008-09-22 19:07:02 UTC
  • mfrom: (12.1.14 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080922190702-59m13d7kn6gkw32d
Tags: 1.4.7.dfsg1-6
* Apply upstream patch to free /proc entries in the correct order.
  Thanks, Marc Dionne.  (Closes: #493914)
* Apply upstream deltas to support 2.6.27 kernels and to stop using
  COMMON_KERN_CFLAGS for all 2.6 kernels uniformly, which fixes
  problems on amd64 with newer kernels.  Thanks, Björn Torkelsson.
  (LP: #267504)
* Translation updates:
  - Swedish, thanks Martin Bagge.  (Closes: #493120)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright 2000, International Business Machines Corporation and others.
 
2
 * All Rights Reserved.
 
3
 * 
 
4
 * This software has been released under the terms of the IBM Public
 
5
 * License.  For details, see the LICENSE file in the top-level source
 
6
 * directory or online at http://www.openafs.org/dl/license10.html
 
7
 */
 
8
 
 
9
#ifndef _BUTC_PROTOTYPES_H
 
10
#define _BUTC_PROTOTYPES_H
 
11
 
 
12
/* dbentries.c */
 
13
 
 
14
extern void *dbWatcher(void *);
 
15
 
 
16
/* dump.c */
 
17
 
 
18
extern void *Dumper(void *);
 
19
extern void *DeleteDump(void *);
 
20
 
 
21
/* lwps.c */
 
22
extern void *Restorer(void *);
 
23
extern void *Labeller(void *);
 
24
 
 
25
/* recoverdDb.c */
 
26
 
 
27
extern void *ScanDumps(void *);
 
28
 
 
29
/* tcudbprocs.c */
 
30
 
 
31
extern void *saveDbToTape(void *);
 
32
extern void *restoreDbFromTape(void *);
 
33
extern void *KeepAlive(void *);
 
34
 
 
35
#endif
 
36