Selaa lähdekoodia

Forgot the status-pipe struct.

Adam Heath 25 vuotta sitten
vanhempi
commit
1bc6207692
2 muutettua tiedostoa jossa 10 lisäystä ja 0 poistoa
  1. 4 0
      ChangeLog
  2. 6 0
      include/dpkg-db.h

+ 4 - 0
ChangeLog

@@ -1,3 +1,7 @@
+Sun Jan  7 14:27:57 CST 2001 Adam Heath <doogie@debian.org>
+
+  * include/dpkg-db.h:  Forgot the status-pipe struct.
+
 Fri Jan  5 22:36:24 CST 2001 Adam Heath <doogie@debian.org>
 
   * main/main.c, lib/dbmodify.c, main/dpkg.8: Add a --status-pipe.

+ 6 - 0
include/dpkg-db.h

@@ -157,6 +157,12 @@ enum modstatdb_rw {
   msdbrw_noavail= 0100,
 };
 
+struct pipef {
+  int fd;
+  struct pipef *next;
+};
+extern struct pipef *status_pipes;
+
 enum modstatdb_rw modstatdb_init(const char *admindir, enum modstatdb_rw reqrwflags);
 void modstatdb_note(struct pkginfo *pkg);
 void modstatdb_shutdown(void);