summaryrefslogtreecommitdiffstats
path: root/source3/utils/debugparse.c
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2014-09-30 10:16:23 +0200
committerMichael Adam <obnox@samba.org>2014-09-30 19:01:30 +0200
commitba3342616c54fe9e7f67e46f84d3decd9fa898dd (patch)
tree046fe3f564f76f3bce7d5e0c096ccc5973552748 /source3/utils/debugparse.c
parentd4bf2be62fe1ce5f41a080fdf2301b2124d27eef (diff)
s3:torture: transfer 1M message with fds in LOCAL-MESSAGING-FDPASS2 test
Signed-off-by: Michael Adam <obnox@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Volker Lendecke <vl@samba.org> Autobuild-User(master): Michael Adam <obnox@samba.org> Autobuild-Date(master): Tue Sep 30 19:01:30 CEST 2014 on sn-devel-104
Diffstat (limited to 'source3/utils/debugparse.c')
0 files changed, 0 insertions, 0 deletions
License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ #ifndef LOADER_INIT_DEVICES_H #define LOADER_INIT_DEVICES_H struct devnode { char * devname; int type; int major; int minor; int perms; char * owner; char * group; }; #define CHARDEV 0 #define BLOCKDEV 1 #define DIRTYPE 2 struct devnode devnodes[] = { /* consoles */ {"console", CHARDEV, 5, 1, 0600, "root", "root"}, {"ttyS0", CHARDEV, 4, 64, 0600, "root", "root"}, {"ttyS1", CHARDEV, 4, 65, 0600, "root", "root"}, {"ttyS2", CHARDEV, 4, 66, 0600, "root", "root"}, {"ttyS3", CHARDEV, 4, 67, 0600, "root", "root"}, #ifdef __ia64__ {"ttySG0", CHARDEV, 204, 40, 0600, "root", "root"}, #endif #ifdef __powerpc__ {"hvsi0", CHARDEV, 229, 128, 0600, "root", "root"}, {"hvsi1", CHARDEV, 229, 129, 0600, "root", "root"}, {"hvsi2", CHARDEV, 229, 130, 0600, "root", "root"}, #endif {"hvc0", CHARDEV, 229, 0, 0600, "root", "root"}, #if defined(__i386__) || defined(__x86_64__) || defined(__ia64__) {"xvc0", CHARDEV, 204, 191, 0600, "root", "root"}, #endif /* base unix */