i'm running into a bit of an issue with this little chunk
of code.
open($fhname, "+<$devname") || die "cannot open serial device $dev
+name $!\n";
$device->{fd} = fileno($fhname);
select((select($fhname), $| = 1)[0]);
print STDOUT "it got selected\n";
$fd = fileno($fhname);
$tio = new POSIX::Termios;
$tio->setispeed(B38400);
$tio->setospeed(B38400);
$tio->setiflag(IGNBRK|IGNPAR);
$tio->setoflag(0);
$tio->setlflag(0);
$tio->setcflag(CS8|CLOCAL|CREAD|B38400);
for (0 .. 16) { $tio->setcc($_, 0); }
$tio->setcc(VMIN, 1);
$tio->setcc(VTIME, 1);
$tio->setattr($fd) || warn "Can't set attributes on $devname: $!\n
+";
the problem arrises when moving it to one specific machine.
it works flawlessly on all but one. the version of perl is
slightly different (rpm packs 5.6.0-12, *-17). works on 12
not 17.
strace keeps hanging on the open
open("/dev/modem", O_RDWR
(hangs til TERM)
any ideas?
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.