Deleted Added
sdiff udiff text old ( 9112:6e854ea87bab ) new ( 9141:593fe25c86a6 )
full compact
1/*
2 * Copyright (c) 2003-2005 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;

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

92
93 //@{
94 /// For setsysinfo().
95 static const unsigned SSI_IEEE_FP_CONTROL = 14; //!< ieee_set_fp_control()
96 //@}
97
98 //@{
99 /// ioctl() command codes.
100 static const unsigned TIOCGETP_ = 0x40067408;
101 static const unsigned TIOCSETP_ = 0x80067409;
102 static const unsigned TIOCSETN_ = 0x8006740a;
103 static const unsigned TIOCSETC_ = 0x80067411;
104 static const unsigned TIOCGETC_ = 0x40067412;
105 static const unsigned FIONREAD_ = 0x4004667f;
106 static const unsigned TIOCISATTY_ = 0x2000745e;
107 static const unsigned TIOCGETS_ = 0x402c7413;
108 static const unsigned TIOCGETA_ = 0x40127417;
109 static const unsigned TCSETAW_ = 0x80147419; // 2.6.15 kernel
110 //@}
111
112 /// For table().
113 static const int TBL_SYSINFO = 12;
114
115 /// Resource enumeration for getrlimit().
116 enum rlimit_resources {
117 TGT_RLIMIT_CPU = 0,
118 TGT_RLIMIT_FSIZE = 1,
119 TGT_RLIMIT_DATA = 2,

--- 32 unchanged lines hidden ---