Deleted Added
sdiff udiff text old ( 8600:b0d7c64ada19 ) new ( 9141:593fe25c86a6 )
full compact
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 78 unchanged lines hidden (view full) ---

87
88 //@{
89 /// For setsysinfo().
90 static const unsigned SSI_IEEE_FP_CONTROL = 14; //!< ieee_set_fp_control()
91 //@}
92
93 //@{
94 /// ioctl() command codes.
95 static const unsigned TIOCGETP_ = 0x7408;
96 static const unsigned TIOCSETP_ = 0x7409;
97 static const unsigned TIOCSETN_ = 0x740a;
98 static const unsigned TIOCSETC_ = 0x7411;
99 static const unsigned TIOCGETC_ = 0x7412;
100 static const unsigned FIONREAD_ = 0x467f;
101 static const unsigned TIOCISATTY_ = 0x5480;
102 static const unsigned TIOCGETS_ = 0x540d;
103 static const unsigned TIOCGETA_ = 0x7417;
104 static const unsigned TCSETAW_ = 0x5403; // 2.6.15 kernel
105 //@}
106
107 /// For table().
108 static const int TBL_SYSINFO = 12;
109
110 /// Resource enumeration for getrlimit()/setrlimit().
111 enum rlimit_resources {
112 TGT_RLIMIT_CPU = 0,
113 TGT_RLIMIT_FSIZE = 1,
114 TGT_RLIMIT_DATA = 2,

--- 35 unchanged lines hidden ---