Deleted Added
full compact
dir.h (1817) dir.h (2177)
1/*
2 * Copyright (c) 1982, 1986, 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.

--- 22 unchanged lines hidden (view full) ---

31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * @(#)dir.h 8.2 (Berkeley) 1/21/94
1/*
2 * Copyright (c) 1982, 1986, 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.

--- 22 unchanged lines hidden (view full) ---

31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * @(#)dir.h 8.2 (Berkeley) 1/21/94
39 * $Id$
39 * $Id: dir.h,v 1.2 1994/08/02 07:54:48 davidg Exp $
40 */
41
40 */
41
42#ifndef _DIR_H_
43#define _DIR_H_
42#ifndef _UFS_UFS_DIR_H_
43#define _UFS_UFS_DIR_H_
44
45/*
46 * A directory consists of some number of blocks of DIRBLKSIZ
47 * bytes, where DIRBLKSIZ is chosen such that it can be transferred
48 * to disk in a single atomic operation (e.g. 512 bytes on most machines).
49 *
50 * Each DIRBLKSIZ byte block contains some number of directory entry
51 * structures, which are of variable length. Each directory entry has

--- 97 unchanged lines hidden ---
44
45/*
46 * A directory consists of some number of blocks of DIRBLKSIZ
47 * bytes, where DIRBLKSIZ is chosen such that it can be transferred
48 * to disk in a single atomic operation (e.g. 512 bytes on most machines).
49 *
50 * Each DIRBLKSIZ byte block contains some number of directory entry
51 * structures, which are of variable length. Each directory entry has

--- 97 unchanged lines hidden ---