]> git.saurik.com Git - apt.git/commitdiff
small documentation updates 0.9.13_exp1
authorMichael Vogt <mvo@debian.org>
Fri, 1 Nov 2013 09:42:49 +0000 (10:42 +0100)
committerMichael Vogt <mvo@debian.org>
Fri, 1 Nov 2013 09:42:49 +0000 (10:42 +0100)
apt-pkg/algorithms.h
apt-pkg/contrib/fileutl.cc
apt-pkg/install-progress.cc
debian/changelog

index 80f6578eb4c9a8d9e88b0f1a5bb121a2769c87b0..5a9a77415e2764b04a43e9e725d00c892ec05f5b 100644 (file)
 
 #ifndef APT_8_CLEANER_HEADERS
 #include <apt-pkg/acquire.h>
 
 #ifndef APT_8_CLEANER_HEADERS
 #include <apt-pkg/acquire.h>
-// include pkg{DistUpgrade,AllUpgrade,MiniizeUpgrade} here for compatiblity
 using std::ostream;
 #endif
 
 #ifndef APT_9_CLEANER_HEADERS
 using std::ostream;
 #endif
 
 #ifndef APT_9_CLEANER_HEADERS
+// include pkg{DistUpgrade,AllUpgrade,MiniizeUpgrade} here for compatiblity
 #include <apt-pkg/upgrade.h>
 #include <apt-pkg/update.h>
 #endif
 #include <apt-pkg/upgrade.h>
 #include <apt-pkg/update.h>
 #endif
index 2347ef14034b38417e81b3e8cab4b40b804c3c3c..d2be276c71a6eeaa9969b038e024fab573349fd7 100644 (file)
@@ -769,6 +769,7 @@ pid_t ExecFork()
 {
       set<int> KeepFDs;
 
 {
       set<int> KeepFDs;
 
+      // FIXME: remove looking at APT::Keep-Fds eventually, its a hack
       Configuration::Item const *Opts = _config->Tree("APT::Keep-Fds");
       if (Opts != 0 && Opts->Child != 0)
       {
       Configuration::Item const *Opts = _config->Tree("APT::Keep-Fds");
       if (Opts != 0 && Opts->Child != 0)
       {
@@ -806,7 +807,7 @@ pid_t ExecFork(std::set<int> KeepFDs)
       signal(SIGTSTP,SIG_DFL);
 
       // Close all of our FDs - just in case
       signal(SIGTSTP,SIG_DFL);
 
       // Close all of our FDs - just in case
-      for (int K = 3; K != 40; K++)
+      for (int K = 3; K != sysconf(_SC_OPEN_MAX); K++)
       {
         if(KeepFDs.find(K) == KeepFDs.end())
            fcntl(K,F_SETFD,FD_CLOEXEC);
       {
         if(KeepFDs.find(K) == KeepFDs.end())
            fcntl(K,F_SETFD,FD_CLOEXEC);
index b341fe6860302fc1a40fab341bf0c2d19c484952..09b1bef9e6687a0a1179659d2f59e12b90e9070e 100644 (file)
 namespace APT {
 namespace Progress {
 
 namespace APT {
 namespace Progress {
 
+
+/* Return a APT::Progress::PackageManager based on the global
+ * apt configuration (i.e. APT::Status-Fd and APT::Status-deb822-Fd)
+ */
 PackageManager* PackageManagerProgressFactory()
 {
    // select the right progress
 PackageManager* PackageManagerProgressFactory()
 {
    // select the right progress
index 5c31210aaf07fd5adbe8fe29602c8de9bd9ec401..e6bdcb1fa7fefc934aa89dfd48b1de17bd6878b8 100644 (file)
@@ -19,6 +19,7 @@ apt (0.9.13~exp1) experimental; urgency=low
   * prepare next ABI via #if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR >= 13)
   * add new pid_t ExecFork(std::set<int> KeepFDs)
   * Avoid flickering when "apt-get -o DpkgPM::Progress-Fancy=1" is use
   * prepare next ABI via #if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR >= 13)
   * add new pid_t ExecFork(std::set<int> KeepFDs)
   * Avoid flickering when "apt-get -o DpkgPM::Progress-Fancy=1" is use
+  * use sysconf(_SC_OPEN_MAX) in ExecFork()
 
  -- Michael Vogt <mvo@debian.org>  Fri, 01 Nov 2013 10:03:06 +0100
 
 
  -- Michael Vogt <mvo@debian.org>  Fri, 01 Nov 2013 10:03:06 +0100