Changeset f7691e3 in rtems for cpukit/libcsupport/include/rtems/termiostypes.h
- Timestamp:
- 08/16/01 20:45:26 (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- b9ff276c
- Parents:
- 2f1b930
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/libcsupport/include/rtems/termiostypes.h
r2f1b930 rf7691e3 21 21 extern "C" { 22 22 #endif 23 24 /* 25 * Wakeup callback data structure 26 */ 27 struct ttywakeup { 28 void (*sw_pfn)__P((struct termios *tty, void *arg)); 29 void *sw_arg; 30 }; 23 31 24 32 /* … … 112 120 int t_line; /* id of line discipline */ 113 121 void *t_sc; /* hook for discipline-specific data structure */ 122 /* 123 * Wakeup callback variables 124 */ 125 struct ttywakeup tty_snd; 126 struct ttywakeup tty_rcv; 127 int tty_rcvwakeup; 114 128 }; 115 129
Note: See TracChangeset
for help on using the changeset viewer.