About: Source:NetHack 2.2a/ioctl.c   Sponge Permalink

An Entity of Type : owl:Thing, within Data Space : 134.155.108.49:8890 associated with source dataset(s)

Below is the full text to ioctl.c from the source code of NetHack 2.2a. To link to a particular line, write [[NetHack 2.2a/ioctl.c#line123]], for example. Warning! This is the source code from an old release. For the latest release, see Source code

AttributesValues
rdfs:label
  • Source:NetHack 2.2a/ioctl.c
rdfs:comment
  • Below is the full text to ioctl.c from the source code of NetHack 2.2a. To link to a particular line, write [[NetHack 2.2a/ioctl.c#line123]], for example. Warning! This is the source code from an old release. For the latest release, see Source code
dcterms:subject
dbkwik:nethack/pro...iPageUsesTemplate
abstract
  • Below is the full text to ioctl.c from the source code of NetHack 2.2a. To link to a particular line, write [[NetHack 2.2a/ioctl.c#line123]], for example. Warning! This is the source code from an old release. For the latest release, see Source code 1. /* SCCS Id: @(#)ioctl.c 2.0 87/09/18 2. /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ 3. 4. /* This cannot be part of hack.tty.c (as it was earlier) since on some 5. systems (e.g. MUNIX) the include files and 6. define the same constants, and the C preprocessor complains. */ 7. #include 8. #include "config.h" 9. #ifdef BSD 10. #include 11. struct ltchars ltchars, ltchars0; 12. #else 13. #include /* also includes part of */ 14. struct termio termio; 15. #endif 16. 17. getioctls() { 18. #ifdef BSD 19. (void) ioctl(fileno(stdin), (int) TIOCGLTC, (char *) &ltchars); 20. (void) ioctl(fileno(stdin), (int) TIOCSLTC, (char *) &ltchars0); 21. #else 22. (void) ioctl(fileno(stdin), (int) TCGETA, &termio); 23. #endif 24. } 25. 26. setioctls() { 27. #ifdef BSD 28. (void) ioctl(fileno(stdin), (int) TIOCSLTC, (char *) &ltchars); 29. #else 30. /* Now modified to run under Sys V R3. - may have to be #ifdef'ed */ 31. (void) ioctl(fileno(stdin), (int) TCSETAW, &termio); 32. #endif 33. } 34. 35. #ifdef SUSPEND /* implies BSD */ 36. dosuspend() { 37. #include 38. #ifdef SIGTSTP 39. if(signal(SIGTSTP, SIG_IGN) == SIG_DFL) { 40. settty((char *) 0); 41. (void) signal(SIGTSTP, SIG_DFL); 42. (void) kill(0, SIGTSTP); 43. gettty(); 44. setftty(); 45. docrt(); 46. } else { 47. pline("I don't think your shell has job control."); 48. } 49. #else SIGTSTP 50. pline("Sorry, it seems we have no SIGTSTP here. Try ! or S."); 51. #endif 52. return(0); 53. } 54. #endif /* SUSPEND /**/
Alternative Linked Data Views: ODE     Raw Data in: CXML | CSV | RDF ( N-Triples N3/Turtle JSON XML ) | OData ( Atom JSON ) | Microdata ( JSON HTML) | JSON-LD    About   
This material is Open Knowledge   W3C Semantic Web Technology [RDF Data] Valid XHTML + RDFa
OpenLink Virtuoso version 07.20.3217, on Linux (x86_64-pc-linux-gnu), Standard Edition
Data on this page belongs to its respective rights holders.
Virtuoso Faceted Browser Copyright © 2009-2012 OpenLink Software