Home
last modified time | relevance | path

Searched refs:mngr (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/lib/librstp/common/
H A DREADME5 library: 'bridge' & 'mngr'. First simulates RSTP bridge behavior, second
7 Both 'bridge' & 'mngr' has its own simple CLI like language of commands;
17 1. In one shell run 'mngr'
18 ./mngr
19 You will get prompt of 'mngr'; type '?' and get full help of
20 'mngr' commands.
31 of the dialog in files mngr.txt, B5055.txt and B5056.txt.
33 Note: prompt both of 'mngr' and of 'bridge' instance contains time stamp,
H A DREADME.files4 There are two target binaries: mngr & bridge
8 and use the library libcli.a (see below). Beside it mngr
10 this purpose mngr uses the library libuid.a
11 The source code of the mngr: file mngr.c
H A DChangeLog38 - and the languages (both in 'mngr' and in 'bridge')
/illumos-gate/usr/src/test/libc-tests/tests/
H A Dptsname.c80 int mngr, alt_mngr, zero, stream, pts_ret; in main() local
82 if ((mngr = posix_openpt(O_RDWR | O_NOCTTY)) < 0) { in main()
155 if ((pts = ptsname(mngr)) == NULL) { in main()
167 if ((pts_ret = ptsname_r(mngr, buf, len)) != 0) { in main()
241 if (!ptsname_r_err("ptsname: length 0", mngr, buf, 0, ERANGE)) { in main()
245 if (!ptsname_r_err("ptsname: length 8 (/dev/pts)", mngr, buf, in main()
250 if (!ptsname_r_err("ptsname: length no-NUL", mngr, buf, strlen(buf), in main()
257 VERIFY0(close(mngr)); in main()