Changeset 1491
- Timestamp:
- Sep 11, 2004, 1:13:27 PM (21 years ago)
- 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
to1.2
r1490 r1491 35 35 */ 36 36 37 /** @file 38 * FreeBSD 5.1 39 * 40 * @changed bird: Disabled stuff we don't have or don't wanna support (yet). 41 */ 42 37 43 #ifndef _SYS_MOUNT_H_ 38 44 #define _SYS_MOUNT_H_ 39 45 46 #if 0 /* bird: we don't have/need this. */ 40 47 #include <sys/ucred.h> 48 #endif /* bird */ 41 49 #include <sys/queue.h> 42 50 #ifdef _KERNEL … … 277 285 #define MNT_LAZY 3 /* push data not written by filesystem syncer */ 278 286 287 #if 0 /* bird: we don't implement this. */ 279 288 /* 280 289 * Generic file handle … … 343 352 int vfc_flags; 344 353 }; 354 #endif /* bird */ 345 355 346 356 /* … … 521 531 522 532 __BEGIN_DECLS 533 #if 0 /* bird: we don't do these. */ 523 534 int fhopen(const struct fhandle *, int); 524 535 int fhstat(const struct fhandle *, struct stat *); … … 526 537 int fstatfs(int, struct statfs *); 527 538 int getfh(const char *, fhandle_t *); 539 #endif /* bird */ 528 540 int getfsstat(struct statfs *, long, int); 529 541 int getmntinfo(struct statfs **, int); 542 #if 0 /* bird: we don't do these. */ 530 543 int mount(const char *, const char *, int, void *); 531 544 int nmount(struct iovec *, u_int, int); 545 #endif /* bird */ 532 546 int statfs(const char *, struct statfs *); 547 #if 0 /* bird: we don't do these. */ 533 548 int unmount(const char *, int); 534 549 … … 540 555 void setvfsent(int); 541 556 int vfsisloadable(const char *); 542 int vfsload(const char *); 557 int vfsload(const char *); 558 #endif /* bird */ 543 559 __END_DECLS 544 560 -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/include/sys/statvfs.h
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r1490 r1491 13 13 * purpose. It is provided "as is" without express or implied 14 14 * warranty. 15 * 15 * 16 16 * THIS SOFTWARE IS PROVIDED BY M.I.T. ``AS IS''. M.I.T. DISCLAIMS 17 17 * ALL EXPRESS OR IMPLIED WARRANTIES WITH REGARD TO THIS SOFTWARE, … … 28 28 * 29 29 * $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 30 34 */ 31 35 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.