@rtype: str @return: The number of bits in which this thread believes to be running. For example, if running a 32 bit binary in a 64 bit machine, the number of bits returned by this method will be C{32}, but the value of L{System.arch} will be C{
(self)
| 877 | return self.get_process().get_arch() |
| 878 | |
| 879 | def get_bits(self): |
| 880 | """ |
| 881 | @rtype: str |
| 882 | @return: The number of bits in which this thread believes to be |
| 883 | running. For example, if running a 32 bit binary in a 64 bit |
| 884 | machine, the number of bits returned by this method will be C{32}, |
| 885 | but the value of L{System.arch} will be C{64}. |
| 886 | """ |
| 887 | if win32.bits == 32 and not win32.wow64: |
| 888 | return 32 |
| 889 | return self.get_process().get_bits() |
| 890 | |
| 891 | def is_hidden(self): |
| 892 | """ |
no test coverage detected