Changeset 1491


Ignore:
Timestamp:
Sep 11, 2004, 1:13:27 PM (21 years ago)
Author:
bird
Message:

modified for LIBC.

Location:
trunk/src/emx/include/sys
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/include/sys/mount.h

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r1490 r1491  
    3535 */
    3636
     37/** @file
     38 * FreeBSD 5.1
     39 *
     40 * @changed bird: Disabled stuff we don't have or don't wanna support (yet).
     41 */
     42
    3743#ifndef _SYS_MOUNT_H_
    3844#define _SYS_MOUNT_H_
    3945
     46#if 0   /* bird: we don't have/need this.  */
    4047#include <sys/ucred.h>
     48#endif  /* bird */
    4149#include <sys/queue.h>
    4250#ifdef _KERNEL
     
    277285#define MNT_LAZY        3       /* push data not written by filesystem syncer */
    278286
     287#if 0 /* bird: we don't implement this. */
    279288/*
    280289 * Generic file handle
     
    343352        int     vfc_flags;
    344353};
     354#endif /* bird */
    345355
    346356/*
     
    521531
    522532__BEGIN_DECLS
     533#if 0 /* bird: we don't do these. */
    523534int     fhopen(const struct fhandle *, int);
    524535int     fhstat(const struct fhandle *, struct stat *);
     
    526537int     fstatfs(int, struct statfs *);
    527538int     getfh(const char *, fhandle_t *);
     539#endif  /* bird */
    528540int     getfsstat(struct statfs *, long, int);
    529541int     getmntinfo(struct statfs **, int);
     542#if 0   /* bird: we don't do these. */
    530543int     mount(const char *, const char *, int, void *);
    531544int     nmount(struct iovec *, u_int, int);
     545#endif  /* bird */
    532546int     statfs(const char *, struct statfs *);
     547#if 0   /* bird: we don't do these. */
    533548int     unmount(const char *, int);
    534549
     
    540555void    setvfsent(int);
    541556int     vfsisloadable(const char *);
    542 int     vfsload(const char *);
     557int     vfsload(const char *);
     558#endif  /* bird */
    543559__END_DECLS
    544560
  • trunk/src/emx/include/sys/statvfs.h

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r1490 r1491  
    1313 * purpose.  It is provided "as is" without express or implied
    1414 * warranty.
    15  * 
     15 *
    1616 * THIS SOFTWARE IS PROVIDED BY M.I.T. ``AS IS''.  M.I.T. DISCLAIMS
    1717 * ALL EXPRESS OR IMPLIED WARRANTIES WITH REGARD TO THIS SOFTWARE,
     
    2828 *
    2929 * $FreeBSD: src/sys/sys/statvfs.h,v 1.3 2002/08/21 16:20:01 mike Exp $
     30 */
     31
     32/** @file
     33 * FreeBSD 5.1
    3034 */
    3135
Note: See TracChangeset for help on using the changeset viewer.