]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/lib/bpipe.h
Add the updated version of the the win32 pathname fix.
[bacula/bacula] / bacula / src / lib / bpipe.h
index d01f1823d521f9405ab2e6668263c04dc086e026..353dd553f0ae767f45ae8ad51edf574277e69731 100644 (file)
@@ -1,11 +1,11 @@
-/* 
+/*
  *   Bi-directional pipe structure
  *
  *   Version $Id$
  */
 
 /*
-   Copyright (C) 2000, 2001, 2002 Kern Sibbald and John Walker
+   Copyright (C) 2002-2004 Kern Sibbald and John Walker
 
    This program is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License as
  */
 
 typedef struct s_bpipe {
-   int worker_pid;
+   pid_t worker_pid;
    time_t worker_stime;
    int wait;
+   btimer_t *timer_id;
    FILE *rfd;
    FILE *wfd;
 } BPIPE;
-