From cc390b62c4517e32447e2b2276ba77b0420c8e50 Mon Sep 17 00:00:00 2001 From: Alex Ivanov Date: Tue, 11 Dec 2012 17:35:30 -0500 Subject: libcsupport: Doxygen enhancement GCI task #6 http://www.google-melange.com/gci/task/view/google/gci2012/7992212 --- cpukit/libcsupport/src/unmount.c | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) (limited to 'cpukit/libcsupport/src/unmount.c') diff --git a/cpukit/libcsupport/src/unmount.c b/cpukit/libcsupport/src/unmount.c index a6e0f40442..06141b599a 100644 --- a/cpukit/libcsupport/src/unmount.c +++ b/cpukit/libcsupport/src/unmount.c @@ -1,11 +1,11 @@ -/* - * unmount() - Unmount a File System - * - * This routine is not defined in the POSIX 1003.1b standard but - * in some form is supported on most UNIX and POSIX systems. This - * routine is necessary to mount instantiations of a file system - * into the file system name space. +/** + * @file * + * @brief Unmount a File System + * @ingroup libcsupport + */ + +/* * COPYRIGHT (c) 1989-2010. * On-Line Applications Research Corporation (OAR). * @@ -34,6 +34,12 @@ static bool contains_root_or_current_directory( return mt_entry == root->mt_entry || mt_entry == current->mt_entry; } +/** + * This routine is not defined in the POSIX 1003.1b standard but + * in some form is supported on most UNIX and POSIX systems. This + * routine is necessary to mount instantiations of a file system + * into the file system name space. + */ int unmount( const char *path ) { int rv = 0; -- cgit v1.2.3