source: rtems/cpukit/libfs/src/nfsclient/src/cexphelp.c @ 4e59276

4.115
Last change on this file since 4e59276 was 4e59276, checked in by Mathew Kallada <matkallada@…>, on 12/28/12 at 14:05:20

libfs: Doxygen Enhancement Task #5

  • Property mode set to 100644
File size: 651 bytes
Line 
1/**
2 * @file
3 *
4 * @brief CEXP Help Information
5 * @ingroup libfs
6 */
7
8#if HAVE_CONFIG_H
9#include "config.h"
10#endif
11
12#include <librtemsNfs.h>
13#include <cexpHelp.h>
14CEXP_HELP_TAB_BEGIN(rtemsNfs)
15        HELP(
16"Mount a remote filesystem (NFS). The mount point (must not be a NFS dir)\n"
17"is created on the fly if not existing already.\n"
18"uid/gid to use may be specified:\n"
19"   hostspec: [uid.gid@]hostname_or_ipaddr\n"
20        , int, nfsMount, (char *hostspec, char *exportdir, char *mntpoint)
21                ),
22        HELP(
23"Print all currently mounted NFS directories to open file handle.\n"
24"Pass f = 0 to print to stdout\n"
25        , int, nfsMountsShow, (FILE *f)
26                ),
27CEXP_HELP_TAB_END
Note: See TracBrowser for help on using the repository browser.