Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/ufs/lfs prefix the lfs syscalls with sys_



details:   https://anonhg.NetBSD.org/src/rev/cb2c7df32ff2
branches:  trunk
changeset: 473607:cb2c7df32ff2
user:      christos <christos%NetBSD.org@localhost>
date:      Wed Jun 09 04:52:11 1999 +0000

description:
prefix the lfs syscalls with sys_

diffstat:

 sys/ufs/lfs/lfs_syscalls.c |  18 +++++++++---------
 1 files changed, 9 insertions(+), 9 deletions(-)

diffs (81 lines):

diff -r ac9f27b33052 -r cb2c7df32ff2 sys/ufs/lfs/lfs_syscalls.c
--- a/sys/ufs/lfs/lfs_syscalls.c        Wed Jun 09 04:50:32 1999 +0000
+++ b/sys/ufs/lfs/lfs_syscalls.c        Wed Jun 09 04:52:11 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: lfs_syscalls.c,v 1.30 1999/04/14 19:37:28 perseant Exp $       */
+/*     $NetBSD: lfs_syscalls.c,v 1.31 1999/06/09 04:52:11 christos Exp $       */
 
 /*-
  * Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -121,7 +121,7 @@
 #define LFS_VREF_THRESHOLD 128
 
 /*
- * lfs_markv:
+ * sys_lfs_markv:
  *
  * This will mark inodes and blocks dirty, so they are written into the log.
  * It will block until all the blocks have been written.  The segment create
@@ -134,7 +134,7 @@
  * -1/errno is return on error.
  */
 int
-lfs_markv(p, v, retval)
+sys_lfs_markv(p, v, retval)
     struct proc *p;
     void *v;
     register_t *retval;
@@ -502,7 +502,7 @@
 }
 
 /*
- * lfs_bmapv:
+ * sys_lfs_bmapv:
  *
  * This will fill in the current disk address for arrays of blocks.
  *
@@ -511,7 +511,7 @@
  */
 
 int
-lfs_bmapv(p, v, retval)
+sys_lfs_bmapv(p, v, retval)
        struct proc *p;
        void *v;
        register_t *retval;
@@ -720,7 +720,7 @@
 }
 
 /*
- * lfs_segclean:
+ * sys_lfs_segclean:
  *
  * Mark the segment clean.
  *
@@ -728,7 +728,7 @@
  * -1/errno is return on error.
  */
 int
-lfs_segclean(p, v, retval)
+sys_lfs_segclean(p, v, retval)
        struct proc *p;
        void *v;
        register_t *retval;
@@ -808,7 +808,7 @@
 }
 
 /*
- * lfs_segwait:
+ * sys_lfs_segwait:
  *
  * This will block until a segment in file system fsid is written.  A timeout
  * in milliseconds may be specified which will awake the cleaner automatically.
@@ -819,7 +819,7 @@
  * -1/errno is return on error.
  */
 int
-lfs_segwait(p, v, retval)
+sys_lfs_segwait(p, v, retval)
        struct proc *p;
        void *v;
        register_t *retval;



Home | Main Index | Thread Index | Old Index