Sponsored Content
Full Discussion: Ttyhog Over-run
Operating Systems AIX Ttyhog Over-run Post 302139314 by ravager on Friday 5th of October 2007 09:44:38 AM
Old 10-05-2007
Bug

The error TTY_TTYHOG indicates that the sending device is ignoring flow control. This error occurs after the hardware FIFO has been accessed and
has written to the software buffer the tty hog error is logged because the buffer where incoming characters are placed is overflowing. When the buffer is about
3/4's full, the device driver notifies the hardware , to send the XOFF char to the sender to stop send data (or drop the hardware control line)

If the sender continues to send data, and the buffer is not emptied, the device driver flushes the buffer and logs the error message in the
error log.

For example, say in a telnet session we enter more than 512 characters and hit enter. We could fill up our recv buffer on the adapter and the
device driver will send su the XOFF command. However, if we ignore this and continue to send the block data, we will log this error in errpt.

You cold try to update bos.rte.tty to a later version and also may want to run the command to set the baut rate to 9600 on the serial port
chdev -l tty1 -a speed=9600 -a flow_disp=rts -P
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

script to run different shells which run different processes

Hi, Would like to ask the experts if anyone knows how to run a script like this: dtterm -title shell1 run process1 on shell1 dtterm -title shell2 run process2 on shell2 cheers! p/s: sorry if i used the wrong forum, quite concussed after watching world cup for several nights; but I... (2 Replies)
Discussion started by: mochi
2 Replies

2. AIX

Ttyhog Over-run

Hi Guys, not that much of an expert, but how do you solve this one? LABEL: TTY_TTYHOG IDENTIFIER: 0873CF9F Date/Time: Thu Feb 28 04:59:01 2008 Sequence Number: 1103 Machine Id: 00CA02AA4C00 Node Id: gcebsap2deu Class: S Type: TEMP... (2 Replies)
Discussion started by: sky_lark02
2 Replies

3. AIX

errpt - TTYHOG error

I am getting this temporary error on my errpt: IDENTIFIER TIMESTAMP T C RESOURCE_NAME DESCRIPTION 0873CF9F 0623104510 T S pts/0 TTYHOG OVER-RUN LABEL: TTY_TTYHOG IDENTIFIER: 0873CF9F Date/Time: Tue Jun 22 02:00:53 GMT+08:00 2010 Sequence Number: 76... (3 Replies)
Discussion started by: famasutika
3 Replies

4. AIX

My script didn't run every run every minute at cronjob

In my cronjob, I would like to schedule my script.sh to run every minutes. I crontab -e and have in line below but it didn't seems to run at all. * * * * * script.sh When I run it manually, I can run it. Is that anything wrong with the above line? If I change it to something like below,... (4 Replies)
Discussion started by: ngaisteve1
4 Replies

5. Shell Programming and Scripting

how to run an already made script run against a list of ip addresses solaris 8 question

how to run an already developed script run against a list of ip addresses solaris 8 question. the script goes away and check traffic information, for example check_GE-VLANStats-P3 1.1.1.1 and returns the results ok. how do I run this against an ip list? i.e a list of 30 ip addresses (26 Replies)
Discussion started by: llcooljatt
26 Replies

6. Shell Programming and Scripting

Who -u gives different output if run from cron than if run from terminal?

If I run 'who -u' interactively or from a script invoked through bash in a tty on my Ubuntu 12LTS box I get an output like this: testuser pts/0 Dec 9 02:32 . 2163 (host.xx.yy) running the same through cron I get: testuser pts/0 2012-12-09 02:32 00:05 2163... (2 Replies)
Discussion started by: latimer
2 Replies

7. Shell Programming and Scripting

Script fails to run properly when run from CRONTAB

Hello all, I'm trying to write a script to gather and send data and it works just fine at the bash command line, but when executing from CRON, it does not run properly. My scripting skills are pretty limited and there's probably a better way, but as I said it works at the command line, but... (12 Replies)
Discussion started by: rusman
12 Replies

8. UNIX for Dummies Questions & Answers

Scripts can be run manually but couldn't run with cronjobs

I am from MQ/MB technology. My requirement is to display the queue manger and broker status on daily basis. If I manually run the script, it works fine and displays output. But when I have scheduled the same using cronjobs it shows only the queue manger status and not the broker status. Can... (3 Replies)
Discussion started by: Anusha M
3 Replies

9. Shell Programming and Scripting

Run a job between times else run later

Hi guys, I have written a script that waits for a trigger file. Then checks the time of the trigger. if the trigger finished between 8pm and midnight then runs a job. else it waits till 1am then runs a different job. I am still very new to scripting so any suggestions to improve my... (4 Replies)
Discussion started by: twinion
4 Replies

10. Shell Programming and Scripting

Shell script run in a case statement call to run a php file, also Perl

Linux System having all Perl, Python, PHP (and Ruby) installed From a Shell script, can call a Perl, Python, PHP (or Ruby ?) file eg eg a Shell script run in a case statement call to run a php file, also Perl or/and Python file??? Like #!/usr/bin/bash .... .... case $INPUT_STRING... (1 Reply)
Discussion started by: hoyanet
1 Replies
SETSBUF(3PVM)							  PVM Version 3.4						     SETSBUF(3PVM)

NAME
pvm_setsbuf - Switches the active send buffer. SYNOPSIS
C int oldbuf = pvm_setsbuf( int bufid ) Fortran call pvmfsetsbuf( bufid, oldbuf ) PARAMETERS
bufid Integer the message buffer identifier for the new active send buffer. A value of 0 indicates the default receive buffer. oldbuf Integer returning the message buffer identifier for the previous active send buffer. DESCRIPTION
The routine pvm_setsbuf switches the active send buffer to bufid and saves the previous active send buffer oldbuf. If bufid is set to 0 then the present active send buffer is saved and no active send buffer exists. The routine is required when managing multiple message buffers. For example switching back and forth between two buffers. One buffer could be used to send information to a graphical interface while a second buffer could be used send data to other tasks in the application. EXAMPLES
C: sbuf1 = pvm_setsbuf( sbuf2 ); Fortran: CALL PVMFSETSBUF( NEWBUF, OLDBUF ) ERRORS
These error conditions can be returned by pvm_setsbuf PvmBadParam giving an invalid bufid. PvmNoSuchBuf switching to a non-existent message buffer. SEE ALSO
pvm_setrbuf(3PVM) 30 August, 1993 SETSBUF(3PVM)
All times are GMT -4. The time now is 06:26 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy