disastorm wrote:
Is this normal, does nohup make the cpu go crazy for some reason?
No, nohup doesn't make the CPU go crazy. But nohup does redirect standard input to /dev/null and standard output to 'nohup.out'.
disastorm wrote:
I also have a bufferedreader reading incoming line from System.in.
Now, I'm not a java programmer, but I'm betting that the redirection of standard input to /dev/null is causing your program to go into a tight polling loop around the bufferedreader (read 0 bytes from System.in, do nothing, select/poll all descriptors including System.in).