diff options
author | Michael Vogt <mvo@debian.org> | 2013-10-31 22:55:38 +0100 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2013-10-31 22:55:38 +0100 |
commit | e45c4617e496b49f8d7225546a751022f246a2f3 (patch) | |
tree | 19fa436f3760c896d997baedb89fd128594279ce /apt-pkg/install-progress.h | |
parent | 177296dffd8bf7d9ce5870b135c412958aab3756 (diff) |
add new pid_t ExecFork(std::set<int> KeepFDs) to get rid of the super ugly APT::Keep-Fds hack and also add a new PackageManagerProgressFd::StartDpkg() progress state
Diffstat (limited to 'apt-pkg/install-progress.h')
-rw-r--r-- | apt-pkg/install-progress.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/apt-pkg/install-progress.h b/apt-pkg/install-progress.h index 050954bb5..5291039d8 100644 --- a/apt-pkg/install-progress.h +++ b/apt-pkg/install-progress.h @@ -27,9 +27,15 @@ namespace Progress { : percentage(0.0), last_reported_progress(-1) {}; virtual ~PackageManager() {}; + /* Global Start/Stop */ virtual void Start() {}; virtual void Stop() {}; + /* When dpkg is invoked (may happen multiple times for each + * install/remove block + */ + virtual void StartDpkg() {}; + virtual pid_t fork() {return fork(); }; virtual void Pulse() {}; @@ -62,7 +68,7 @@ namespace Progress { public: PackageManagerProgressFd(int progress_fd); - virtual void Start(); + virtual void StartDpkg(); virtual void Stop(); virtual bool StatusChanged(std::string PackageName, |