| 68 | } |
| 69 | |
| 70 | bool UnixUtils::inBackground() |
| 71 | { |
| 72 | int terminalGroupId = tcgetpgrp(fileno(stdin)); |
| 73 | int myPid = getpid(); |
| 74 | if (terminalGroupId != myPid) |
| 75 | return true; |
| 76 | else |
| 77 | return false; |
| 78 | } |
| 79 | |
| 80 | //----------------------------------------------------------------------------- |
| 81 | // UnixCommandExecutor |