Giampaolo Rodola

Results 377 comments of Giampaolo Rodola

Thanks for the info. OK, if you want to go for it you have my blessing. Do you have any idea about where you might start already? Can I help...

@embray that sounds cool; I would be very interested in seeing cygwin support for psutil. Are there some functionalities you weren't able to implement? How "beta" is this? Let me...

...so what file will contain the implementation? _pswindows.py or _pslinux.py? Are you working in a public accessible branch I can look at? As for appveyor: I don't think it's necessary...

Cool, thanks for clarifying.

So does this just need refactoring? Is it complete in terms of features?

```python @wrap_exceptions def create_time(self): ctime = float(self._parse_stat_file()['create_time']) # According to documentation, starttime is in field 21 and the # unit is jiffies (clock ticks). # We first divide it for...

Mmm. Interesting. I didn't know about `hidepid=1`. The code comment is indeed incorrect then, but I don't think we can do anything to avoid this error. It basically means that...

Interesting and complicated subject. Some considerations: * Linux is the only platform allowing to instantiate a thread via `Process` class as in `thread = Process(tid)`, and query the thread as...

The diff below is a patch for Linux which distinguishes between a PID and a TID. When we're dealing with a TID, we read files in `/proc/{master-pid}/task/{tid}/*` instead of `/proc/{master-pid}/*`....