~mathiaz/+junk/ceph-new-pkg-review

« back to all changes in this revision

Viewing changes to src/client/fuse.h

  • Committer: Mathias Gug
  • Date: 2010-07-29 03:10:42 UTC
  • Revision ID: mathias.gug@canonical.com-20100729031042-n9n8kky962qb4onb
Import ceph_0.21-0ubuntu1 from https://launchpad.net/~clint-fewbar/+archive/ceph/+packages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- 
 
2
// vim: ts=8 sw=2 smarttab
 
3
/*
 
4
 * Ceph - scalable distributed file system
 
5
 *
 
6
 * Copyright (C) 2004-2006 Sage Weil <sage@newdream.net>
 
7
 *
 
8
 * This is free software; you can redistribute it and/or
 
9
 * modify it under the terms of the GNU Lesser General Public
 
10
 * License version 2.1, as published by the Free Software 
 
11
 * Foundation.  See file COPYING.
 
12
 * 
 
13
 */
 
14
 
 
15
 
 
16
 
 
17
/* ceph_fuse_main
 
18
 * - start up fuse glue, attached to Client* cl.
 
19
 * - argc, argv should include a mount point, and 
 
20
 *   any weird fuse options you want.  by default,
 
21
 *   we will put fuse in the foreground so that it
 
22
 *   won't fork and we can see stdout.
 
23
 */
 
24
int ceph_fuse_main(Client *cl, int argc, const char *argv[]);