Merge 4.4-Lite version.

This commit is contained in:
mycroft 1994-09-20 04:18:10 +00:00
parent 691f8c4267
commit 7df690ffe6
3 changed files with 42 additions and 15 deletions

View File

@ -1,5 +1,5 @@
# from: @(#)Makefile 5.2 (Berkeley) 5/11/90
# $Id: Makefile,v 1.4 1993/08/01 05:46:43 mycroft Exp $
# from: @(#)Makefile 8.1 (Berkeley) 5/31/93
# $Id: Makefile,v 1.5 1994/09/20 04:18:10 mycroft Exp $
PROG= sync
MAN8= sync.0

View File

@ -1,16 +1,43 @@
.\" -*- nroff -*-
.\" Copyright (c) 1980, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
.\"
.\" Copyright (c) 1980, 1991 Regents of the University of California.
.\" All rights reserved.
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\" notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\" notice, this list of conditions and the following disclaimer in the
.\" documentation and/or other materials provided with the distribution.
.\" 3. All advertising materials mentioning features or use of this software
.\" must display the following acknowledgement:
.\" This product includes software developed by the University of
.\" California, Berkeley and its contributors.
.\" 4. Neither the name of the University nor the names of its contributors
.\" may be used to endorse or promote products derived from this software
.\" without specific prior written permission.
.\"
.\" $Id: sync.8,v 1.4 1993/08/02 17:15:52 mycroft Exp $
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
.Dd %Q%
.\" from: @(#)sync.8 8.1 (Berkeley) 5/31/93
.\" $Id: sync.8,v 1.5 1994/09/20 04:18:11 mycroft Exp $
.\"
.Dd May 31, 1993
.Dt SYNC 8
.Os BSD 4
.Sh NAME
.Nm sync
.Nd synchronize internal filesystem information with that on the disk
.Nd force completion of pending disk writes (flush cache)
.Sh SYNOPSIS
.Nm sync
.Sh DESCRIPTION

View File

@ -1,6 +1,6 @@
/*
* Copyright (c) 1987 Regents of the University of California.
* All rights reserved.
* Copyright (c) 1987, 1993
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@ -32,14 +32,14 @@
*/
#ifndef lint
char copyright[] =
"@(#) Copyright (c) 1987 Regents of the University of California.\n\
All rights reserved.\n";
static char copyright[] =
"@(#) Copyright (c) 1987, 1993\n\
The Regents of the University of California. All rights reserved.\n";
#endif /* not lint */
#ifndef lint
/*static char sccsid[] = "from: @(#)sync.c 4.4 (Berkeley) 5/31/90";*/
static char rcsid[] = "$Id: sync.c,v 1.4 1993/08/01 18:57:30 mycroft Exp $";
/*static char sccsid[] = "from: @(#)sync.c 8.1 (Berkeley) 5/31/93";*/
static char *rcsid = "$Id: sync.c,v 1.5 1994/09/20 04:18:12 mycroft Exp $";
#endif /* not lint */
main()