source: branches/libc-0.6/src/emx/include/utmp.h

Last change on this file was 1558, checked in by bird, 21 years ago

initial libc adoption.

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 2.8 KB
Line 
1/** @file
2 * FreeBSD 5.2
3 * @changed bird: /@unixroot
4 */
5/*
6 * Copyright (c) 1988, 1993
7 * The Regents of the University of California. All rights reserved.
8 * (c) UNIX System Laboratories, Inc.
9 * All or some portions of this file are derived from material licensed
10 * to the University of California by American Telephone and Telegraph
11 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
12 * the permission of UNIX System Laboratories, Inc.
13 *
14 * Redistribution and use in source and binary forms, with or without
15 * modification, are permitted provided that the following conditions
16 * are met:
17 * 1. Redistributions of source code must retain the above copyright
18 * notice, this list of conditions and the following disclaimer.
19 * 2. Redistributions in binary form must reproduce the above copyright
20 * notice, this list of conditions and the following disclaimer in the
21 * documentation and/or other materials provided with the distribution.
22 * 3. All advertising materials mentioning features or use of this software
23 * must display the following acknowledgement:
24 * This product includes software developed by the University of
25 * California, Berkeley and its contributors.
26 * 4. Neither the name of the University nor the names of its contributors
27 * may be used to endorse or promote products derived from this software
28 * without specific prior written permission.
29 *
30 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
31 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
32 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
33 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
34 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
35 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
36 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
37 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
38 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
39 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
40 * SUCH DAMAGE.
41 *
42 * @(#)utmp.h 8.2 (Berkeley) 1/21/94
43 * $FreeBSD: src/include/utmp.h,v 1.10 2001/10/27 20:40:54 peter Exp $
44 */
45
46#ifndef _UTMP_H_
47#define _UTMP_H_
48
49#define _PATH_UTMP "/@unixroot/var/run/utmp"
50#define _PATH_WTMP "/@unixroot/var/log/wtmp"
51#define _PATH_LASTLOG "/@unixroot/var/log/lastlog"
52
53#define UT_NAMESIZE 16 /* see MAXLOGNAME in <sys/param.h> */
54#define UT_LINESIZE 8
55#define UT_HOSTSIZE 16
56
57struct lastlog {
58 int32_t ll_time;
59 char ll_line[UT_LINESIZE];
60 char ll_host[UT_HOSTSIZE];
61};
62
63struct utmp {
64 char ut_line[UT_LINESIZE];
65 char ut_name[UT_NAMESIZE];
66 char ut_host[UT_HOSTSIZE];
67 int32_t ut_time;
68};
69
70#endif /* !_UTMP_H_ */
Note: See TracBrowser for help on using the repository browser.