When I run PS one of the columns output is TTY. What does this mean? In particular, how does as value of "??" compare with "ttys000"?

I ask because I have a Java program execute sort via ProcessBuilder, and when this program is run via my IDE (IntilliJ) the process takes 5x shorter than when run as an executable jar outside the IDE.

In each case I run ps when the sort is running and the only difference is the IDE creats a process with a TTY of ?? whereas the jar creates a process with TTY of ttys000.

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

A TTY is a computer terminal. In the context of ps, it is the terminal that executed a particular command.

The abbreviation stands for "TeleTYpewriter", which were devices that allowed users to connect to early computers.

In relation to your situation, the jar creates a virtual terminal named 'ttys000' but the IDE does not attach to a virtual terminal to execute the command.

link|improve this answer
Interesting, so how can I have the jar execute unattached to a terminal so I don't get the performance hit? – Zugwalt Aug 18 '11 at 20:51
You detach a process from the terminal by appending ' &' to the command line. I would be surprised if the performance hit is a result of the command being attached to the terminal, however. I think it is more likely that the IDE is performing some sort of optimization. I will look forward to hearing about your results. – George Cummins Aug 18 '11 at 20:54
Even with & it still takes longer and shows up in ps with a TTY of ttys000. However when I execute the jar via a simple java program in the IDE it runs detached and shorter. I wonder what kind of optimization it could be, and/or if the OSX terminal itself is slowing things down. – Zugwalt Aug 18 '11 at 21:39
You've answered my TTY question (Thanks!) created a new one for the performance issue: stackoverflow.com/questions/7124489/… – Zugwalt Aug 19 '11 at 16:18
feedback

A process can (and usually is) bound to a "controlling terminal". This terminal may be hardware at the end of a serial line, or much more likely today, be a virtual software aequivalent. The TTY is inherited from the parent process. Most likely your IDE disassociates itself from its TTY, and when started outside your java program inherits your shell's TTY.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.