Mercurial > hg > octave-lojdl > gnulib-hg
annotate lib/pty-private.h @ 17298:d536543d59a6
statat: new module, split out from fstatat
GNU Emacs needs the POSIX-specified fstatat, but not the
gnulib-specified statat and lstat. Split the latter two into a
new module 'statat'.
* lib/openat.h: Depend on GNULIB_STATAT, not GNULIB_FSTATAT.
* lib/openat.h, lib/statat.c (STATAT_INLINE):
Rename from FSTATAT_INLINE. All uses changed.
* modules/fstatat (Files): Remove lib/statat.c.
(gl_MODULE_INDICATOR([fstatat])): Remove.
(lib_SOURCES): Remove.
(Maintainer): Add self.
* modules/statat, modules/statat-tests, tests/test-statat.c: New files.
* tests/test-fstatat.c (BASE): Don't define if already defined.
(do_stat, do_lstat) [!TEST_STATAT]: Test fstatat instead.
author | Paul Eggert <eggert@cs.ucla.edu> |
---|---|
date | Wed, 23 Jan 2013 18:20:09 -0800 |
parents | e542fd46ad6f |
children |
rev | line source |
---|---|
13027 | 1 /* Interface to the pt_chown program. |
17249
e542fd46ad6f
maint: update all copyright year number ranges
Eric Blake <eblake@redhat.com>
parents:
16366
diff
changeset
|
2 Copyright (C) 1998-1999, 2009-2013 Free Software Foundation, Inc. |
13027 | 3 This file is part of the GNU C Library. |
4 Contributed by Zack Weinberg <zack@rabi.phys.columbia.edu>, 1998. | |
5 | |
6 The GNU C Library is free software; you can redistribute it and/or | |
7 modify it under the terms of the GNU Lesser General Public | |
8 License as published by the Free Software Foundation; either | |
9 version 2.1 of the License, or (at your option) any later version. | |
10 | |
11 The GNU C Library is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
14 Lesser General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU Lesser General Public | |
16366
bb182ee4a09d
maint: replace FSF snail-mail addresses with URLs
Paul Eggert <eggert@cs.ucla.edu>
parents:
16235
diff
changeset
|
17 License along with the GNU C Library; if not, see |
bb182ee4a09d
maint: replace FSF snail-mail addresses with URLs
Paul Eggert <eggert@cs.ucla.edu>
parents:
16235
diff
changeset
|
18 <http://www.gnu.org/licenses/>. */ |
13027 | 19 |
20 #ifndef _PTY_PRIVATE_H | |
21 #define _PTY_PRIVATE_H 1 | |
22 | |
23 /* The group slave pseudo terminals belong to. */ | |
24 #define TTY_GROUP "tty" | |
25 | |
26 /* The file descriptor connected to the master pseudo terminal. */ | |
27 #define PTY_FILENO 3 | |
28 | |
16235
18a38c9615f0
In commentary, do not use ` to quote.
Paul Eggert <eggert@cs.ucla.edu>
parents:
16201
diff
changeset
|
29 /* Path to the helper program that implements 'grantpt' in user space. */ |
13027 | 30 #define _PATH_PT_CHOWN PKGLIBEXECDIR "/pt_chown" |
31 | |
32 /* Test whether given TTY is really a Unix98 pseudo terminal. */ | |
33 /* #define unix98_pseudo_p(Dev) ... */ | |
34 | |
35 /* Exit codes for the helper program. */ | |
36 enum /* failure modes */ | |
37 { | |
38 FAIL_EBADF = 1, | |
39 FAIL_EINVAL, | |
40 FAIL_EACCES, | |
41 FAIL_EXEC, | |
42 FAIL_ENOMEM | |
43 }; | |
44 | |
45 #endif /* pty-private.h */ |