diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2011-04-16 18:55:53 +0200 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2011-04-16 18:55:53 +0200 |
commit | b6ff69135e677c22080d2013e87b34319c1ed671 (patch) | |
tree | 1769120175b585e78bdb7fbec74381b50b9ceb6a /apt-pkg | |
parent | 0284eee4a02e9cad0932b1058eec9dde6cf8c682 (diff) |
* apt-pkg/deb/dpkgpm.cc:
- replace obsolete usleep with nanosleep
Diffstat (limited to 'apt-pkg')
-rw-r--r-- | apt-pkg/deb/dpkgpm.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/apt-pkg/deb/dpkgpm.cc b/apt-pkg/deb/dpkgpm.cc index 01808be24..b37980b7e 100644 --- a/apt-pkg/deb/dpkgpm.cc +++ b/apt-pkg/deb/dpkgpm.cc @@ -391,8 +391,9 @@ void pkgDPkgPM::DoTerminalPty(int master) { // this happens when the child is about to exit, we // give it time to actually exit, otherwise we run - // into a race - usleep(500000); + // into a race so we sleep for half a second. + struct timespec sleepfor = { 0, 500000000 }; + nanosleep(&sleepfor, NULL); return; } if(len <= 0) |