Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2434 → Rev 2435

/branches/fs/uspace/fs/glo.h
32,8 → 32,15
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/** @addtogroup FileSystemImpl
* @{
*/
 
/* Global variables */
/**
* @file glo.h
* @brief Global variables
*/
 
 
#ifndef _GLO_H
43,22 → 50,27
#include "../share/message.h"
 
/* File System global variables. */
extern fproc_t *fp; /* pointer to caller's fproc struct */
extern fproc_t *fp; /**< pointer to caller's fproc struct */
 
/* The parameters of the call are kept here. */
extern message_params_t message_params; /* parameters of the input message */
extern int rd_phone; /* call number of RAMDISK driver task */
extern int con_phone; /* call number of CONSOLE service */
extern char user_path[PATH_MAX]; /* storage for user path name */
extern message_params_t message_params; /**< parameters of the input message */
extern int rd_phone; /**< call number of RAMDISK driver task */
extern int con_phone; /**< call number of CONSOLE service */
extern char user_path[PATH_MAX]; /**< storage for user path name */
 
/* Data needed for communication with RAMDISK. */
extern void *buffer; /* buffer storing copied data */
extern void *buffer; /**< buffer storing copied data */
 
/* The following variables are used for returning results to the caller */
extern int err_code; /* temporary storage for error number */
extern int status; /* status of last disk i/o request */
extern int err_code; /**< temporary storage for error number */
extern int status; /**< status of last disk i/o request */
 
/* Data which need initialization. */
extern int (*call_vector[])(void); /* sys call table */
extern int (*call_vector[])(void); /**< sys call table */
 
#endif /* _GLO_H */
 
/**
* }
*/