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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
13027
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
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
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3 This file is part of the GNU C Library.
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
4 Contributed by Zack Weinberg <zack@rabi.phys.columbia.edu>, 1998.
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
5
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6 The GNU C Library is free software; you can redistribute it and/or
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7 modify it under the terms of the GNU Lesser General Public
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
8 License as published by the Free Software Foundation; either
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
9 version 2.1 of the License, or (at your option) any later version.
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
10
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
11 The GNU C Library is distributed in the hope that it will be useful,
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
14 Lesser General Public License for more details.
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
15
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
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
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
19
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
20 #ifndef _PTY_PRIVATE_H
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
21 #define _PTY_PRIVATE_H 1
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
22
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
23 /* The group slave pseudo terminals belong to. */
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
24 #define TTY_GROUP "tty"
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
25
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
26 /* The file descriptor connected to the master pseudo terminal. */
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
27 #define PTY_FILENO 3
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
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
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
30 #define _PATH_PT_CHOWN PKGLIBEXECDIR "/pt_chown"
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
31
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
32 /* Test whether given TTY is really a Unix98 pseudo terminal. */
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
33 /* #define unix98_pseudo_p(Dev) ... */
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
34
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
35 /* Exit codes for the helper program. */
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
36 enum /* failure modes */
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
37 {
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
38 FAIL_EBADF = 1,
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
39 FAIL_EINVAL,
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
40 FAIL_EACCES,
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
41 FAIL_EXEC,
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
42 FAIL_ENOMEM
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
43 };
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
44
6c6cd9627a48 New module 'pt_chown'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
45 #endif /* pty-private.h */