instr.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. /* $NetBSD: instr.c,v 1.11 2005/02/15 12:56:20 jsm Exp $ */
  2. /*-
  3. * Copyright (c) 1990, 1993
  4. * The Regents of the University of California. All rights reserved.
  5. *
  6. * Redistribution and use in source and binary forms, with or without
  7. * modification, are permitted provided that the following conditions
  8. * are met:
  9. * 1. Redistributions of source code must retain the above copyright
  10. * notice, this list of conditions and the following disclaimer.
  11. * 2. Redistributions in binary form must reproduce the above copyright
  12. * notice, this list of conditions and the following disclaimer in the
  13. * documentation and/or other materials provided with the distribution.
  14. * 3. Neither the name of the University nor the names of its contributors
  15. * may be used to endorse or promote products derived from this software
  16. * without specific prior written permission.
  17. *
  18. * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  19. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  20. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  21. * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  22. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  23. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  24. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  25. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  26. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  27. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  28. * SUCH DAMAGE.
  29. */
  30. #include <sys/cdefs.h>
  31. #ifndef lint
  32. #if 0
  33. static char sccsid[] = "@(#)instr.c 8.1 (Berkeley) 5/31/93";
  34. #else
  35. __RCSID("$NetBSD: instr.c,v 1.11 2005/02/15 12:56:20 jsm Exp $");
  36. #endif
  37. #endif /* not lint */
  38. #include <sys/types.h>
  39. #include <sys/wait.h>
  40. #include <sys/stat.h>
  41. #include <curses.h>
  42. #include <err.h>
  43. #include <fcntl.h>
  44. #include <stdio.h>
  45. #include <stdlib.h>
  46. #include <string.h>
  47. #include <unistd.h>
  48. #include <errno.h>
  49. #include "deck.h"
  50. #include "cribbage.h"
  51. #include "pathnames.h"
  52. void
  53. instructions()
  54. {
  55. int pstat;
  56. int fd;
  57. pid_t pid;
  58. const char *path;
  59. switch (pid = vfork()) {
  60. case -1:
  61. err(1, "vfork");
  62. case 0:
  63. /* Follow the same behaviour for pagers as defined in POSIX.2
  64. * for mailx and man. We only use a pager if stdout is
  65. * a terminal, and we pass the file on stdin to sh -c pager.
  66. */
  67. if (!isatty(1))
  68. path = "cat";
  69. else {
  70. if (!(path = getenv("PAGER")) || (*path == 0))
  71. path = _PATH_MORE;
  72. }
  73. if ((fd = open(_PATH_INSTR, O_RDONLY)) == -1) {
  74. warn("open %s", _PATH_INSTR);
  75. _exit(1);
  76. }
  77. if (dup2(fd, 0) == -1) {
  78. warn("dup2");
  79. _exit(1);
  80. }
  81. execl("/bin/sh", "sh", "-c", path, (char *) NULL);
  82. warn(NULL);
  83. _exit(1);
  84. default:
  85. do {
  86. pid = waitpid(pid, &pstat, 0);
  87. } while (pid == -1 && errno == EINTR);
  88. if (pid == -1 || WEXITSTATUS(pstat))
  89. exit(1);
  90. }
  91. }