diff options
| author | Joseph Henry <joseph.henry@gmail.com> | 2015-11-02 12:30:18 -0800 |
|---|---|---|
| committer | Joseph Henry <joseph.henry@gmail.com> | 2015-11-02 12:30:18 -0800 |
| commit | 6338a4933bbb5f4e44fd304adc1bbb11c096394a (patch) | |
| tree | 6121decc0caeeba4430c69a5b90ef3a399785631 /osdep | |
| parent | 4dbb84cea1965a3b1b8fda96db03c1f0dc1f0b97 (diff) | |
| download | infinitytier-6338a4933bbb5f4e44fd304adc1bbb11c096394a.tar.gz infinitytier-6338a4933bbb5f4e44fd304adc1bbb11c096394a.zip | |
Fixed another closure bug. Updated debug levels
Diffstat (limited to 'osdep')
| -rw-r--r-- | osdep/Phy.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/osdep/Phy.hpp b/osdep/Phy.hpp index c7b2a340..85342259 100644 --- a/osdep/Phy.hpp +++ b/osdep/Phy.hpp @@ -814,6 +814,7 @@ public: tv.tv_sec = (long)(timeout / 1000); tv.tv_usec = (long)((timeout % 1000) * 1000); + //fprintf(stderr, "Phy.poll()\n"); if (::select((int)_nfds + 1,&rfds,&wfds,&efds,(timeout > 0) ? &tv : (struct timeval *)0) <= 0) return; |
